Advertisement
Guest User

Untitled

a guest
Jan 13th, 2022
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. _G.autotap = true;
  2. _G.autorebirth =true;
  3. _G.Buyegg = true;
  4. local remotepath = game:GetService("ReplicatedStorage").Remotes;
  5.  
  6. spawn(function()
  7. while _G.autotap == true do
  8.    local args = {
  9.        [1] = false,
  10.        [2] = "Clicker!"
  11.    }
  12.    remotepath.ClickRemote:FireServer(unpack(args))
  13.        Wait()
  14. end
  15. end)
  16.  
  17. spawn(function()
  18.    while _G.autorebirth == true do
  19. local args = {
  20.    [1] = 1 ----- "change rebirth here"
  21. }
  22. remotepath.RebirthRemote:FireServer(unpack(args))
  23.   wait()
  24. end
  25. end)
  26.  
  27. spawn(function()
  28.    while wait() do
  29.        if not _G.Buyegg then
  30.            break
  31.        end;
  32. local args = {
  33.    [1] = "Dragon Star", ---- "you can change egg here"
  34.    [2] = false,
  35.    [3] = false
  36. }
  37. remotepath.OpenEgg:InvokeServer(unpack(args))
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement