TheExploitGuy

Brain Simulator [SELECTION OF SCRIPTS]

Feb 22nd, 2021 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 KB | None | 0 0
  1. --------------------------------------BRAIN SIMULATOR [SELECTION OF SCRIPTS]--------------------------------------
  2. --------------------------------------Made by Silxnce--------------------------------------
  3.  
  4. IF YOUR PLANNING TO AFK THEN EXECUTE THIS SCRIPT: https://v3rmillion.net/showthread.php?tid=772135
  5.  
  6. -----------AUTO BRAINS------------------
  7.  
  8. getgenv().farmer = true;
  9.  
  10. while wait() do
  11. if getgenv().farmer == true then
  12. local Event = game:GetService("ReplicatedStorage").Systems.Clicking.RemoteEvents.[Your username here, remove these brackets aswell]
  13. Event:FireServer()
  14. end
  15. end
  16.  
  17. -----------AUTO SELL------------------
  18.  
  19. while wait() do
  20. local player = game.Players.LocalPlayer
  21. local char = player.Character
  22. local root = char.HumanoidRootPart
  23.  
  24. firetouchinterest(game:GetService("Workspace").Islands.Home.SellZone.SellTouch, root, 0)
  25. wait()
  26. firetouchinterest(game:GetService("Workspace").Islands.Home.SellZone.SellTouch, root, 1)
  27. end
  28.  
  29. -----------AUTO BUY POTIONS------------------
  30.  
  31. getgenv().farmer = true;
  32.  
  33. while wait() do
  34. if getgenv().farmer == true then
  35. local A_1 = "Potions"
  36. local Event = game:GetService("ReplicatedStorage").Systems.Upgrade.BuyAllUpgrades
  37. Event:InvokeServer(A_1)
  38. end
  39. end
  40.  
  41. -----------AUTO BUY DNA------------------
  42.  
  43. getgenv().farmer = true;
  44.  
  45. while wait() do
  46. if getgenv().farmer == true then
  47. local A_1 = "Dna"
  48. local Event = game:GetService("ReplicatedStorage").Systems.Upgrade.BuyAllUpgrades
  49. Event:InvokeServer(A_1)
  50. end
  51. end
  52.  
  53. -----------Auto Ranks------------------
  54.  
  55. getgenv().farmer = true;
  56.  
  57. while wait() do
  58. if getgenv().farmer == true then
  59. local A_1 = "Ranks"
  60. local Event = game:GetService("ReplicatedStorage").Systems.Upgrade.BuyAllUpgrades
  61. Event:InvokeServer(A_1)
  62. end
  63. end
  64.  
  65. [NOTE]: Every time you rank up, you have to execute the unlock all islands scrip below, cause it resets islands when you rank up. Idk how to make it so that when you rank up it unlocks all the islands straight after, but if anyone can do that reply back in the forum, it will help others out. Thank You.
  66.  
  67. -----------UNLOCK ALL ISLANDS------------------
  68.  
  69. wait (1)
  70. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2.20943642, 18.1862431, 78.3434296)
  71. wait (1)
  72. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-239.575638, 1043.58301, 113.83683)
  73. wait (1)
  74. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(467.504333, 2286.51001, 285.688232)
  75. wait (1)
  76. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-352.715485, 3788.55029, 81.8203583)
  77. wait (1)
  78. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(262.637512, 7115.30664, 303.507019)
  79. end
  80.  
  81. -----------INFINITE JUMP------------------
  82.  
  83. _G.infinjump = true
  84.  
  85. local Player = game:GetService("Players").LocalPlayer
  86. local Mouse = Player:GetMouse()
  87. Mouse.KeyDown:connect(function(k)
  88. if _G.infinjump then
  89. if k:byte() == 32 then
  90. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  91. Humanoid:ChangeState("Jumping")
  92. wait(0.1)
  93. Humanoid:ChangeState("Seated")
  94. end
  95. end
  96. end)
  97.  
  98. local Player = game:GetService("Players").LocalPlayer
  99. local Mouse = Player:GetMouse()
  100. Mouse.KeyDown:connect(function(k)
  101. k = k:lower()
  102. if k == "f" then
  103. if _G.infinjump == true then
  104. _G.infinjump = false
  105. else
  106. _G.infinjump = true
  107. end
  108. end
  109. end)
  110.  
  111. ________________________________________________________________________________________________
  112.  
  113. Made by Silxnce, have an amazing day :D
  114. I've made it open source cause I dont know how to make it into a GUI, so if you want to make it into a GUI then go for it
Advertisement
Add Comment
Please, Sign In to add comment