Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- [[ TOGGLES ]] --
- getgenv().sendText = false;
- local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
- local w = library:CreateWindow("ZackHub")
- local b = w:CreateFolder("Autofarm")
- local c = w:CreateFolder("Info")
- b:Toggle("AutoSend",function(bool)
- getgenv().sendText = bool
- if bool then
- send()
- end
- end)
- c:Label("Made by 5yed.A",{
- TextSize = 15;
- TextColor = Color3.fromRGB(255,255,255);
- BgColor = Color3.fromRGB(69,69,69);
- })
- -- [[ FUNCTIONS ]] --
- function send()
- spawn(function()
- while sendText == true do
- local args = {[1] = "Phone"}
- game:GetService("ReplicatedStorage").Events.SendTexts:FireServer(unpack(args))
- wait()
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement