Advertisement
LuaXe

[55M] Tapping Simulator! 🚀

Oct 1st, 2022 (edited)
1,264
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.46 KB | Source Code | 0 1
  1. getgenv().AClick = false;
  2. getgenv().ARebirth = false;
  3. getgenv().ARReward = false;
  4. getgenv().AEgg = false;
  5.  
  6. function TPTo(PCFrame)
  7.     local plr = game.Players.LocalPlayer;
  8.            if plr.Character then
  9.             plr.Character.HumanoidRootPart.CFrame = PCFrame
  10.         end
  11.     end
  12.  
  13.     function TeleWorld(SeWorld)
  14.         if game:GetService("ReplicatedStorage").TeleportPositions:FindFirstChild(SeWorld) then
  15.             TPTo(game:GetService("ReplicatedStorage").TeleportPositions[SeWorld].Value)
  16.         end
  17.     end
  18.  
  19.  
  20. function AutoClick()
  21. spawn(function()
  22.     while getgenv().AClick == true do
  23. game:GetService("ReplicatedStorage").Events.Tap:FireServer()
  24. wait()
  25. end
  26. end)
  27. end
  28.  
  29. function AutoRebirth(ReAmount)
  30.     spawn(function ()
  31.         while getgenv().ARebirth == true do
  32. local args = {[1] = ReAmount}
  33. game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(unpack(args))
  34. wait(1)
  35.         end
  36.     end)
  37. end
  38.  
  39. function AutoReward()
  40.     spawn(function ()
  41.         while getgenv().ARReward == true do
  42. game:GetService("ReplicatedStorage").Events.ClaimRandomReward:FireServer()
  43.             wait(3)
  44.         end
  45.     end)
  46. end
  47.  
  48. function AutoEgg(SeEgg)
  49.     spawn(function ()
  50.         while getgenv().AEgg == true do
  51. local args = {
  52.     [1] = {},
  53.     [2] = SeEgg,
  54.     [3] = 0
  55. }
  56. game:GetService("ReplicatedStorage").Events.HatchEgg:InvokeServer(unpack(args))
  57. wait(0.5)
  58.         end
  59.     end)
  60. end
  61.  
  62.  
  63. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  64.  
  65. local w = library:CreateWindow("Tapping Simulator!")
  66.  
  67. local b = w:CreateFolder("Autofarm")
  68.  
  69. b:Toggle("Auto Click",function(bool)
  70.     getgenv().AClick = bool
  71.     AutoClick()
  72. end)
  73.  
  74. b:Toggle("Auto Random Gift",function(bool)
  75.     getgenv().ARReward = bool
  76.     AutoReward()
  77. end)
  78.  
  79. local b = w:CreateFolder("Toggles")
  80.  
  81. local SEgg
  82. b:Dropdown("Eggs",{"Starter","Coral Egg","Jungle Egg","Bee Egg","Snow Egg","Desert Egg","Death Egg","Forest Egg","Dominus Egg","Wood Egg","Mine Egg","Beach Egg","Dark Egg","Cloud Egg","Magma Egg","Fire Egg","Molten Egg","Underworld Egg","Blue Magma Egg","Red Magma Egg","Secret Magma Egg","Purple Magma Egg","Yellow Magma Egg","55M Egg","50M2 Egg","Candy Egg","Flora Egg","Holy Wood Egg","Holy Bee Egg","Holy Egg","Castle Egg","Festival Egg","Japan Egg"},true,function(val)
  83.     SEgg = val
  84. end)
  85.  
  86. b:Toggle("Start Egg",function(bool)
  87.     getgenv().AEgg = bool
  88.     if bool and SEgg then
  89.         AutoEgg(SEgg)
  90.     end
  91. end)
  92.  
  93. local SRebirth
  94. b:Dropdown("Rebirth",{"1","5","10","20","50","100","200","500","1000","2000","5000","10000","20000","50000","100000","150000","200000","250000","500000","1000000","2000000","5000000","10000000","20000000","50000000","100000000","150000000","200000000","250000000","400000000","500000000","1000000000","1500000000","2000000000","2500000000","5000000000","7500000000","10000000000","20000000000",},true,function(val)
  95.     SRebirth = val
  96. end)
  97.  
  98. b:Toggle("Start Rebirth",function(bool)
  99.     getgenv().ARebirth = bool
  100.     if bool and SRebirth then
  101.         AutoRebirth(SRebirth)
  102.     end
  103. end)
  104.  
  105. local w = library:CreateWindow("Others")
  106.  
  107. local S
  108. local J
  109. local H
  110. local G
  111. local C
  112. local CF
  113.  
  114. local b = w:CreateFolder("LocalPlayer")
  115.  
  116. b:Box("Speed","number",function(val)
  117. S = val
  118. end)
  119. b:Box("Jump","number",function(val)
  120. J = val
  121. end)
  122. b:Box("Hip Height","number",function(val)
  123. H = val
  124. end)
  125. b:Box("Gravity","number",function(val)
  126. G = val
  127. end)
  128.  
  129. b:Toggle("Speed",function(bool)
  130. getgenv().Speed = bool
  131. Speed(S)
  132. end)
  133. b:Toggle("Jump",function(bool)
  134. getgenv().Jump = bool
  135. Jump(J)
  136. end)
  137. b:Toggle("Hip Height",function(bool)
  138. getgenv().Hip = bool
  139. Hip(H)
  140. end)
  141. b:Toggle("Gravity",function(bool)
  142. getgenv().Grav = bool
  143. Grav(G)
  144. end)
  145.  
  146. b:Slider("FOV (Default is 70)",{min = 0;max = 120;precise = true;},function(val)
  147.     game.workspace.CurrentCamera.FieldOfView = val
  148.     end)
  149.  
  150. b:Button("Print Current XYZ",function()
  151. function GetPOS() return game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame end print(GetPOS())
  152. end)
  153.  
  154. local b = w:CreateFolder("Stuff")
  155.  
  156. b:Box("Chat","Message",function(val)
  157.     C = val
  158. end)
  159.  
  160. b:Box("Cooldown","Speed",function(val)
  161.     CF = val
  162. end)
  163.  
  164. b:Toggle("Spam",function(bool)
  165.     getgenv().Chat = bool
  166.     Chat(C, CF)
  167. end)
  168.  
  169. b:Button("Rejoin",function()
  170.     loadstring(game:HttpGet("https://pastebin.com/raw/mM7JBG5h", true))()
  171. end)
  172.  
  173. b:Button("Giant",function()
  174.     loadstring(game:HttpGet("https://pastebin.com/raw/2jnKKARG", true))()
  175. end)
  176.  
  177. b:Button("Noclip",function()
  178.     loadstring(game:HttpGet("https://pastebin.com/raw/hd03Vdwm", true))()
  179. end)
  180.  
  181. b:Button("Reset",function()
  182.     loadstring(game:HttpGet("https://pastebin.com/raw/EEY6SATj", true))()
  183. end)
  184.  
  185. b:Button("RTX Summer",function()
  186.     loadstring(game:HttpGet("https://paste.ee/r/h4fL2", true))()
  187. end)
  188.  
  189. b:Button("RTX Autumn",function()
  190.     loadstring(game:HttpGet("https://paste.ee/r/9eV0M", true))()
  191. end)
  192.  
  193. b:Button("Anti-Report",function()
  194.     loadstring(game:HttpGet("https://paste.ee/r/GphmF", true))()
  195. end)
  196.  
  197. local b = w:CreateFolder("Credits")
  198.  
  199. b:Label("Made by X_LuaF#0705",{
  200.     TextSize = 21;
  201.     TextColor = Color3.fromRGB(255,255,255);
  202.     BgColor = Color3.fromRGB(69,69,69);
  203. })
  204.  
  205. b:Button("Copy Discord Invite",function()
  206.     setclipboard("https://discord.gg/8tRb8MQcW5")
  207. end)
  208.  
  209. b:DestroyGui()
  210.  
  211. getgenv().Speed = false;
  212. getgenv().Jump = false;
  213. getgenv().Hip = false;
  214. getgenv().Chat = false;
  215. getgenv().Grav = false;
  216.  
  217. function Chat(Mes, Freq)
  218.     spawn(function ()
  219.         while getgenv().Chat == true do
  220. local args = {[1] = Mes,[2] = "All"} game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  221. wait(Freq)
  222.         end
  223.     end)
  224. end
  225.  
  226. function Speed(Nume)
  227.     spawn(function ()
  228.         if getgenv().Speed == true then
  229.             while getgenv().Speed == true do
  230.                 game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Nume
  231.                 wait()
  232.             end
  233.         elseif getgenv().Speed == false then
  234.             game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 16
  235.         end
  236.     end)
  237. end
  238. function Jump(Nume)
  239.     spawn(function ()
  240.         if getgenv().Jump == true then
  241.             while getgenv().Jump == true do
  242.                 game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Nume
  243.                 wait()
  244.         end
  245.     elseif getgenv().Jump == false then
  246.             game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50
  247.         end
  248.     end)
  249. end
  250. function Hip(Nume)
  251.     spawn(function ()
  252.         if getgenv().Hip == true then
  253.             while getgenv().Hip == true do
  254.             game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = Nume
  255.             wait()
  256.         end
  257.     elseif getgenv().Hip == false then
  258.             game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = 0.1
  259.         end
  260.     end)
  261. end
  262. function Grav(Nume)
  263.     spawn(function ()
  264.         if getgenv().Grav == true then
  265.             while getgenv().Grav == true do
  266.                 game:GetService("Workspace").Gravity = Nume
  267.             wait()
  268.         end
  269.     elseif getgenv().Grav == false then
  270.         game:GetService("Workspace").Gravity = 196.2
  271.         end
  272.     end)
  273. end
  274.  
  275. function TPTo(PCFrame)
  276.     local plr = game.Players.LocalPlayer;
  277.            if plr.Character then
  278.             plr.Character.HumanoidRootPart.CFrame = PCFrame
  279.         end
  280.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement