Advertisement
robloxscript111

[🚀AA-TANK] EarthScape Tycoon

Feb 13th, 2023
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. -- You can toggle the script by pressing F
  2.  
  3. --Script made by Varin#6433
  4. --https://www.roblox.com/games/9655469250/AA-TANK-EarthScape-Tycoon
  5.  
  6. local Username = game.Players.LocalPlayer.Name
  7.  
  8. local Player = game:GetService("Workspace")[Username].Head -- You can customize this if you want to.
  9.  
  10. for g, o in pairs(game:GetService("Players")[Username]:GetDescendants()) do
  11. if o.Name == "Shop" then
  12. o:Destroy()
  13.  
  14. end
  15. end
  16.  
  17. _G.toggle = false
  18. local UIS = game:GetService("UserInputService")
  19. UIS.InputBegan:Connect(function(key)
  20. if key.KeyCode == Enum.KeyCode.F then
  21. _G.toggle = not _G.toggle
  22. print(_G.toggle)
  23. end
  24. end)
  25.  
  26. while true do
  27. if _G.toggle then
  28. local ohString1 = "Input"
  29. local ohString2 = "Run"
  30. local ohNumber3 = 5
  31. local ohString4 = "Run"
  32.  
  33. --Auto play
  34. for i, v in pairs(game:GetService("Workspace").Teams:GetDescendants()) do
  35. if v.Name == "Collect" then
  36. firetouchinterest(Player, v, 0)
  37. wait(0.1)
  38. firetouchinterest(Player, v, 1)
  39. end
  40.  
  41. if v.Name == "Buttons" then
  42. for k, l in pairs(v:GetChildren()) do
  43.  
  44.  
  45. firetouchinterest(Player, l, 0)
  46. wait(0.1)
  47. firetouchinterest(Player, l, 1)
  48. end
  49.  
  50. end
  51. end
  52.  
  53. task.wait(0.050)
  54. end
  55. task.wait()
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement