https://1foreverhd.github.io/HDAdmin/projects/topbarplus/about/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"keys": [ | |
"1234", | |
"abc", | |
"abc123", | |
"123abc" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- google analytics api -- | |
local GA = {} | |
-- google analytic stracking id. Example : UA-000000000-0 - info on getting it: https://support.google.com/analytics/thread/5348459 | |
local id = "UA-000000000-0" | |
-- wether it will print to the console the reported event without sending them to google analytics | |
local debugMode = false | |
local googleUserTrackingId = game:GetService("HttpService"):GenerateGUID() | |
local lastTimeGeneratedGoogleUserId = os.time() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
math.randomseed(tick()) | |
local HttpService = game:GetService "HttpService" | |
local Players = game:GetService("Players") | |
-- bible bot window lib | |
panel = Window.new("Bible bot configuration panel") | |
-- Advertisment timer label | |
adLabel = panel.AddElement(panel,"Label") | |
adLabel.Text = "Adverisment configuration" | |
-- ad_timer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
input function was flagged as potentially incompatible. | |
please private message a developer for support. | |
]] | |
local v1 = {} | |
local function Fade_1(v4, v5, v6) | |
v5.Position = UDim2.new(0, 0, 0, 0) | |
v5.Size = UDim2.new(1, 0, 1, 0) | |
local v18 = 1 | |
local v27 = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local TweenService = game:GetService("TweenService") | |
local image_zoomer = {} | |
image_zoomer.__index = image_zoomer | |
-- @image image where you will zoom. must be a to_zoom | |
-- @what_type_used what type of unit u use for ur image | |
function image_zoomer.set_zoom(to_zoom) | |
assert(to_zoom.ClassName ~= "ImageLabel" or "ImageButton","Error in #1, you have to provide a image label or a image button") | |
local image = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Location: game.6jv39v9shV4hGZcQlzfEs53q2303E.StarterPlayerScripts.PlayerScriptsLoader | |
-- Calamari Luau Decompiler [BETA] | |
-- 161/189 operations decompiled | |
local v1 = function() | |
local v1 = function() | |
local v1 = getfenv(2) | |
local v2 = getfenv(2).script | |
local v3 = { | |
["Parent"] = getfenv(2).script.Parent | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- https://chatengine.xyz/chat | |
local Players = game:GetService("Players") | |
local http_service = game:GetService("HttpService") | |
math.randomseed(tick()) | |
local authorization_cookie = "b1060a52b07c933b192298aede18a4e079e2cb3be98c2bd6fcd30e77c4c80cb9822937927db1797ccc9fdc6804e85777" | |
if syn then | |
http_request = syn.request | |
end | |
function send_msg_ai(message) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- repr - Version 1.1 | |
-- Ozzypig - ozzypig.com - http://twitter.com/Ozzypig | |
-- Check out this thread for more info: | |
-- https://devforum.roblox.com/t/repr-function-for-printing-tables/276575 | |
--[[ | |
local repr = require(3148021300) | |
local myTable = { | |
hello = "world", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace cursed_csharp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
{}{}{}{}{}{}{}{}Console.Title = "Guess the number vee 1 - cursed_csharp"; | |
{}{}{}{}{}{}{}{}Console.WriteLine("Welcome to the game of guessing the number of one to one hundread!"); |
OlderNewer