Advertisement
2AreYouMental110

grow simulator script (WIP)

Oct 23rd, 2021 (edited)
3,052
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.15 KB | None | 0 0
  1. -----------------------UPDATE-LOGS-----------------------------------------------------
  2.  
  3. -- added punch
  4. -- added remove punch
  5. -- added infinite yield
  6.  
  7. --------------------------VERSIONS-----------------------------------------------------
  8. -- version 1 https://pastebin.com/nzeq7E5j
  9.  
  10.  
  11. ---------------------------------------------------------------------------------------
  12.  
  13. -- https://web.roblox.com/games/1276175881/Grow-Simulator
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22. getgenv().teleportcommon = false
  23. getgenv().teleportuncommon = false
  24. getgenv().teleportrare = false
  25. getgenv().teleportlegendary = false
  26. getgenv().teleportingredient = false
  27. getgenv().teleportcoin = false
  28. getgenv().autogrow = false
  29. getgenv().autogrowfaster = false
  30. getgenv().autorebirth = false
  31. getgenv().autoultrarebirth = false
  32.  
  33. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  34. local w = library:CreateWindow("grow simulator")
  35. local b = w:CreateFolder("boxes")
  36. local a = w:CreateFolder("growth")
  37. local c = w:CreateFolder("misc")
  38.  
  39.  
  40. b:Toggle("teleport common",function(bool)
  41.     getgenv().teleportcommon = bool
  42.     print(toggled)
  43.     if bool then
  44.         commontp()
  45.     end
  46. end)
  47.  
  48. b:Toggle("teleport uncommon",function(bool)
  49.     getgenv().teleportuncommon = bool
  50.     print(toggled)
  51.     if bool then
  52.         uncommontp()
  53.     end
  54. end)
  55.  
  56. b:Toggle("teleport rare",function(bool)
  57.     getgenv().teleportrare = bool
  58.     print(toggled)
  59.     if bool then
  60.         raretp()
  61.     end
  62. end)
  63.  
  64. b:Toggle("teleport legendary",function(bool)
  65.     getgenv().teleportlegendary = bool
  66.     print(toggled)
  67.     if bool then
  68.         legendarytp()
  69.     end
  70. end)
  71.  
  72. b:Toggle("teleport ingredient",function(bool)
  73.     getgenv().teleportingredient = bool
  74.     print(toggled)
  75.     if bool then
  76.         ingredienttp()
  77.     end
  78. end)
  79.  
  80. b:Toggle("teleport coin",function(bool)
  81.     getgenv().teleportcoin = bool
  82.     print(toggled)
  83.     if bool then
  84.         cointp()
  85.     end
  86. end)
  87.  
  88. function commontp()
  89.     spawn(function()
  90.         while getgenv().teleportcommon == true do
  91.             game.Workspace.Boxes.CommonBox.CFrame = CFrame.new(game.Players.LocalPlayer.Character.LowerTorso.Position)
  92.             game.Workspace.Boxes.CommonBox.CanCollide = false
  93.             wait(.1)
  94.         end
  95.     end)
  96. end
  97.  
  98. function uncommontp()
  99.     spawn(function()
  100.         while getgenv().teleportuncommon == true do
  101.             game.Workspace.Boxes.UncommonBox.CFrame = CFrame.new(game.Players.LocalPlayer.Character.LowerTorso.Position)
  102.             game.Workspace.Boxes.UncommonBox.CanCollide = false
  103.             wait(.1)
  104.         end
  105.     end)
  106. end
  107.  
  108. function raretp()
  109.     spawn(function()
  110.         while getgenv().teleportrare == true do
  111.             game.Workspace.Boxes.RareBox.CFrame = CFrame.new(game.Players.LocalPlayer.Character.LowerTorso.Position)
  112.             game.Workspace.Boxes.RareBox.CanCollide = false
  113.             wait(.1)
  114.         end
  115.     end)
  116. end
  117.  
  118. function legendarytp()
  119.     spawn(function()
  120.         while getgenv().teleportlegendary == true do
  121.             game.Workspace.Boxes.LegendaryBox.CFrame = CFrame.new(game.Players.LocalPlayer.Character.LowerTorso.Position)
  122.             game.Workspace.Boxes.LegendaryBox.CanCollide = false
  123.             wait(.1)
  124.         end
  125.     end)
  126. end
  127.  
  128. function ingredienttp()
  129.     spawn(function()
  130.         while getgenv().teleportingredient == true do
  131.             game.Workspace.Boxes.IngredientBox.CFrame = CFrame.new(game.Players.LocalPlayer.Character.LowerTorso.Position)
  132.             game.Workspace.Boxes.IngredientBox.CanCollide = false
  133.             wait(.1)
  134.         end
  135.     end)
  136. end
  137.  
  138. function cointp()
  139.     spawn(function()
  140.         while getgenv().teleportcoin == true do
  141.             game.Workspace.Boxes.CoinBox.CFrame = CFrame.new(game.Players.LocalPlayer.Character.LowerTorso.Position)
  142.             game.Workspace.Boxes.CoinBox.CanCollide = false
  143.             wait(.1)
  144.         end
  145.     end)
  146. end
  147.  
  148. a:Toggle("auto grow",function(bool)
  149.     getgenv().autogrow = bool
  150.     print(toggled)
  151.     if bool then
  152.         grow()
  153.     end
  154. end)
  155.  
  156. a:Toggle("auto grow faster",function(bool)
  157.     getgenv().autogrowfaster = bool
  158.     print(toggled)
  159.     if bool then
  160.         growfaster()
  161.     end
  162. end)
  163.  
  164. a:Toggle("auto rebirth",function(bool)
  165.     getgenv().autorebirth = bool
  166.     print(toggled)
  167.     if bool then
  168.         rebirth()
  169.     end
  170. end)
  171.  
  172. a:Toggle("auto ultra rebirth",function(bool)
  173.     getgenv().autoultrarebirth = bool
  174.     print(toggled)
  175.     if bool then
  176.         ultrarebirth()
  177.     end
  178. end)
  179.  
  180. function grow()
  181.     spawn(function()
  182.         while getgenv().autogrow == true do
  183.             local Grow = "ormormormormx"
  184.             local Event = game:GetService("ReplicatedStorage").BuyIngredient
  185.             Event:FireServer(Grow)
  186.             wait()
  187.         end
  188.     end)
  189. end
  190.  
  191. function growfaster()
  192.     spawn(function()
  193.         while getgenv().autogrowfaster == true do
  194.             local Grow = "ormormormormx"
  195.             local Event = game:GetService("ReplicatedStorage").BuyIngredient
  196.             Event:FireServer(Grow)
  197.             wait(0.0001)
  198.         end
  199.     end)
  200. end
  201.  
  202. function rebirth()
  203.     spawn(function()
  204.         while getgenv().autorebirth == true do
  205.             local Event = game:GetService("ReplicatedStorage").Rebirth
  206.             Event:FireServer()
  207.             wait(5) -- dont put lower or the anti exploit will detect
  208.         end
  209.     end)
  210. end
  211.  
  212. function ultrarebirth()
  213.     spawn(function()
  214.         while getgenv().autoultrarebirth == true do
  215.             local Event = game:GetService("ReplicatedStorage").UltraRebirth
  216.             Event:FireServer()
  217.             wait(5) -- dont put lower or the anti exploit will detect
  218.         end
  219.     end)
  220. end
  221.  
  222. c:Button("get punch",function()
  223.     local A_1 = true
  224.     local Event = game:GetService("ReplicatedStorage").GiveMePunch
  225.     Event:FireServer(A_1)
  226. end)
  227.  
  228. c:Button("remove punch",function()
  229.     local A_1 = false
  230.     local Event = game:GetService("ReplicatedStorage").GiveMePunch
  231.     Event:FireServer(A_1)
  232. end)
  233.  
  234. c:Button("infinite yield",function()
  235.     loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  236. end)
  237.  
  238.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement