Skip to content

Instantly share code, notes, and snippets.

View master3395's full-sized avatar
🐧
https://newstargeted.com

Master3395 master3395

🐧
https://newstargeted.com
View GitHub Profile
@master3395
master3395 / cyberpanel.css
Created March 17, 2022 11:26 — forked from leonardop21/cyberpanel.css
Personalização de tema Cyberpanel
#sidebar-menu, #page-sidebar {
background: #000;
}
#sidebar-menu > li > a, #page-sidebar ul li.header {
color: #ffff;
}
.bg-gradient-9 {
// Discord all events!
// A quick and dirty fleshing out of the discord.js event listeners (not tested at all!)
// listed here -> https://discord.js.org/#/docs/main/stable/class/Client
// Learn from this, do not just copy it mofo!
//
// Saved to -> https://gist.github.com/koad/316b265a91d933fd1b62dddfcc3ff584
/*
koad-was-here
@master3395
master3395 / On Non-Cached Reactions
Created June 10, 2019 22:13 — forked from generalwrex/[.] ReadMe .md
On Non-Cached Reactions Hello, im General Wrex! If you found this/these scripts useful consider supporting me on Patreon:https://www.patreon.com/generalwrex Also PayPal with DonorBox at https://donorbox.org/generalwrex Any help is appreciated, I'm trying to make programming my full time job!
{
"name": "ActivateCachedOnReaction",
"temp": "",
"event-type": "1",
"_id": "RpJOG",
"actions": [
{
"behavior": "1",
"interpretation": "1",
"code": "// This script makes sure that it actually only runs once-------\n// put others after this Run Script!\nif(!globalVars(\"cached_reactions\")){\n this.callNextAction(cache)\n this.storeValue(\"started!!\", 3, \"cached_reactions\", cache)\n}",
@master3395
master3395 / tinymce-4-email-plugin.js
Created June 27, 2017 20:03 — forked from Melros/tinymce-4-email-plugin.js
This plugin will insert a mailto: link by providing an email address within tinymce 4.
/*
1. Create a folder named "email" within "tinymce/plugins".
2. Create a file called "plugin.min.js" within the folder.
2. Paste the below code inside "tinymce/plugins/email/plugin.min.js"
3. Extend your tiny.init like:
tinymce.init({
plugins: "email",
toolbar: "email"
@master3395
master3395 / MinimalTopbarLocalscript.lua
Created May 27, 2017 22:43 — forked from spotco/MinimalTopbarLocalscript.lua
Minimal topbar (Used in 2017 Egghunt and ROBEATS)
wait()
game.Players.LocalPlayer:WaitForChild("PlayerGui")
local screengui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
screengui.ResetOnSpawn = false
local frame = Instance.new("Frame",screengui)
frame.Name = "ChatTopbar"
frame.BackgroundColor3 = Color3.new(0,0,0)
frame.BackgroundTransparency = 0.6
frame.Size = UDim2.new(0,120,0,37)
frame.Position = UDim2.new(0,0,0,-36)
@master3395
master3395 / Snake-ROBLOX.lua
Created September 28, 2015 21:17
a ROBLOX implementation of the Snake game. MIT licensed.
-- Create a LocalScript, paste this code in it, and parent it to StarterGui.
wait(1/30)
local camera = workspace.CurrentCamera
local UserInputService = game:GetService("UserInputService")
local REDRAW_INTERVAL = 1/12 -- every x-th of a second
local LEFT = Enum.KeyCode.Left
local RIGHT = Enum.KeyCode.Right
local UP = Enum.KeyCode.Up
local noise = math.noise
local sizeX = 32
local sizeY = 32
local sizeZ = 32
local air = Enum.Material.Air
local grass = Enum.Material.Grass
local sand = Enum.Material.Sand