Advertisement
ScripterbyGamer

Saber Simulator Script

Mar 22nd, 2023
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. --Change the "true" to "false" if you want but, if you do it will not work like it will not click or etc.
  2. --Made by julianezpeleta#3936
  3. _G.Clicked = true
  4. _G.RemoteClick = true
  5. _G.UpdateData = true
  6. _G.Sell = true
  7. _G.HatchEggs = true
  8.  
  9. spawn(function()
  10. while _G.Clicked == true do
  11. game:GetService("ReplicatedStorage").Events.Clicked:FireServer()
  12. wait()
  13. end
  14. end)
  15.  
  16. spawn(function()
  17. while _G.RemoteClick == true do
  18. game:GetService("Players").LocalPlayer.Character.Starter.RemoteClick:FireServer()
  19. wait()
  20. end
  21. end)
  22.  
  23. spawn(function()
  24. while _G.UpdateData == true do
  25. game:GetService("ReplicatedStorage").Events.UpdateData:InvokeServer()
  26. wait()
  27. end
  28. end)
  29.  
  30. spawn(function()
  31. while _G.Sell == true do
  32. game:GetService("ReplicatedStorage").Events.Sell:FireServer()
  33. wait()
  34. end
  35. end)
  36.  
  37. spawn(function ()
  38. while _G.HatchEggs == true do
  39. local args = {
  40. [1] = game:GetService("ReplicatedStorage").Eggs.Ancient,
  41. [2] = 1
  42. }
  43.  
  44. game:GetService("ReplicatedStorage").Events.HatchEggs:InvokeServer(unpack(args))
  45. end
  46. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement