The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Grow Old Simulator script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  2. local w = library:CreateWindow("Grow Old Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7.  
  8. b:Toggle("AutoCollectDrop",function(bool)
  9.     shared.toggle = bool
  10.     AutoCollectDrop = bool
  11. end)
  12.  
  13. b:Toggle("AutoSell",function(bool)
  14.     shared.toggle = bool
  15.     AutoSell = bool
  16. end)
  17.  
  18. f:Toggle("Ranges",function(bool)
  19.     shared.toggle = bool
  20.     Ranges = bool
  21. end)
  22.  
  23. f:Toggle("Ranks",function(bool)
  24.     shared.toggle = bool
  25.     Ranks = bool
  26. end)
  27.  
  28. f:Toggle("Upgrades",function(bool)
  29.     shared.toggle = bool
  30.     Upgrades = bool
  31. end)
  32.  
  33. f:Toggle("Rebirth",function(bool)
  34.     shared.toggle = bool
  35.     AutoRebirth = bool
  36. end)
  37.  
  38. f:Toggle("SuperRebirth",function(bool)
  39.     shared.toggle = bool
  40.     AutoSuperRebirth = bool
  41. end)
  42.  
  43. f:Toggle("Areas",function(bool)
  44.     shared.toggle = bool
  45.     Areas = bool
  46. end)
  47.  
  48. e:Toggle("AntiAfk",function(bool)
  49.     shared.toggle = bool
  50.     AntiAfk = bool
  51. end)
  52. --Credits
  53. u:Button("Moepi#1149",function()
  54.     setclipboard("Moepi#1149")
  55. end)
  56.  
  57. u:Button("maxgat5#8395",function()
  58.     setclipboard("maxgat5#8395")
  59. end)
  60.  
  61. u:Button("Discord Server",function()
  62.     setclipboard("https://discord.gg/K4txdRSVfq")
  63. end)
  64.  
  65.  
  66. while wait() do
  67.     spawn(function()
  68.         if AutoCollectDrop == true then
  69.             for i,v in pairs(game:GetService("Workspace").Debris.Pickups:GetDescendants()) do
  70.                 if v.ClassName == "Part" then
  71.                     v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,100)
  72.                 end
  73.             end
  74.             wait(.1)
  75.             for i,v in pairs(game:GetService("Workspace").Debris.Pickups:GetDescendants()) do
  76.                 if v.ClassName == "Part" then
  77.                     v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,0)
  78.                 end
  79.             end
  80.             wait(.1)
  81.         end
  82.     end)
  83.    
  84.     spawn(function()
  85.         if AutoSell == true then
  86.             game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("Sell","Home")
  87.         end
  88.     end)
  89.    
  90.     spawn(function()
  91.         if AutoRebirth == true then
  92.             game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("Rebirth")
  93.         end
  94.     end)
  95.    
  96.     spawn(function()
  97.         if AutoSuperRebirth == true then
  98.             game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("SuperRebirth")
  99.         end
  100.     end)
  101.    
  102.     spawn(function()
  103.         if Ranges == true then
  104.             for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Screen.ShopFrame.Body.Range:GetDescendants()) do
  105.                 if v.Name == "ItemName" then
  106.                     game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("BuyRange",v.Text)
  107.                 end
  108.             end
  109.         end
  110.     end)
  111.    
  112.     spawn(function()
  113.         if Ranks == true then
  114.             for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Screen.ShopFrame.Body.Ranks:GetDescendants()) do
  115.                 if v.Name == "ItemName" then
  116.                     game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("BuyRank",v.Text)
  117.                 end
  118.             end
  119.         end
  120.     end)
  121.    
  122.     spawn(function()
  123.         if Upgrades == true then
  124.             for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Screen.ShopFrame.Body.Upgrades:GetDescendants()) do
  125.                 if v.Name == "ItemName" then
  126.                     game:GetService("ReplicatedStorage").Events.RemoteEvent:FireServer("BuyUpgrade",v.Text)
  127.                 end
  128.             end
  129.         end
  130.     end)
  131.    
  132.     spawn(function()
  133.         if Areas == true then
  134.             for i,v in pairs(game:GetService("Workspace").Debris.Floors:GetChildren()) do
  135.                 game:GetService("ReplicatedStorage").Events.RemoteFunction:InvokeServer("BuyArea",v.Name)
  136.             end
  137.         end
  138.     end)
  139.    
  140.     spawn(function()
  141.         if AntiAfk == true then
  142.             local bb=game:service'VirtualUser'
  143.             bb:CaptureController()
  144.             bb:ClickButton2(Vector2.new())
  145.         end
  146.     end)
  147. end