Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Change the "true" to "false" if you want but, if you do it will not work like it will not click or etc.
- --Made by julianezpeleta#3936
- _G.Clicked = true
- _G.RemoteClick = true
- _G.UpdateData = true
- _G.Sell = true
- _G.HatchEggs = true
- spawn(function()
- while _G.Clicked == true do
- game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
- wait()
- end
- end)
- spawn(function()
- while _G.RemoteClick == true do
- game:GetService("Players").LocalPlayer.Character.Starter.RemoteClick:FireServer()
- wait()
- end
- end)
- spawn(function()
- while _G.UpdateData == true do
- game:GetService("ReplicatedStorage").Events.UpdateData:InvokeServer()
- wait()
- end
- end)
- spawn(function()
- while _G.Sell == true do
- game:GetService("ReplicatedStorage").Events.Sell:FireServer()
- wait()
- end
- end)
- spawn(function ()
- while _G.HatchEggs == true do
- local args = {
- [1] = game:GetService("ReplicatedStorage").Eggs.Ancient,
- [2] = 1
- }
- game:GetService("ReplicatedStorage").Events.HatchEggs:InvokeServer(unpack(args))
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement