Advertisement
XiedienGM

Noob Simulator GUI - Normal Script

Dec 9th, 2019
1,809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix",true))()
  2. library.options.underlinecolor = "rainbow"
  3.  
  4. -- Menu Farmeo
  5. local Farming = library:CreateWindow("Farming")
  6. local Coins = Farming:Toggle("Auto-Coins", {flag = "coins"}) -- Farming.flags.coins
  7. local Gems = Farming:Toggle("Auto-Gems", {flag = "Gems"}) -- Farming.flags.gems
  8.  
  9. -- Teleporte
  10. local Teleports = library:CreateWindow("Teleports")
  11. Teleports:Section("--== Utilitys ==--")
  12. local Rebirth = Teleports:Button("Rebirth Using first Tp StarterArea", function()
  13. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Rings.RebirthRing.CFrame
  14. end)
  15. Teleports:Section("--== Lands ==--")
  16. local StarterArea = Teleports:Button("StarterArea", function()
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Teleporters.FoodLand_To_StarterArea.PartA.CFrame
  18. end)
  19. local FoodLand = Teleports:Button("FoodLand", function()
  20. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Teleporters.StarterArea_To_FoodLand.PartA.CFrame
  21. end)
  22. local IceCave = Teleports:Button("IceCave", function()
  23. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Teleporters.FoodLand_To_IceCave.PartA.CFrame
  24. end)
  25. local EnchantedForrest = Teleports:Button("EnchantedForrest", function()
  26. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Teleporters.IceCave_To_EnchantedForrest.PartA.CFrame
  27. end)
  28. -- Creditos
  29. local Credits = library:CreateWindow("Credits")
  30. Credits:Section("--== MADE XiedienGM#0666 ==--")
  31. --functions
  32.  
  33. --function
  34. spawn(function()
  35. while wait (1) do
  36. if Farming.flags.coins then
  37. local remotes = game.ReplicatedStorage.Events:GetChildren()
  38. remotes[2]:FireServer()
  39. end
  40. end
  41. end)
  42. --function
  43. spawn(function()
  44. while wait (1) do
  45. if Farming.flags.Gems then
  46. local remotes = game.ReplicatedStorage.Events:GetChildren()
  47. game:GetService("RunService").Heartbeat:Wait()
  48. remotes[8]:FireServer()
  49. end
  50. end
  51. end)
  52. --Made XiedienGM#0666
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement