Advertisement
LuaXe

Update 15 Mining Clicker Simulator

Sep 29th, 2022 (edited)
1,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.12 KB | Source Code | 0 0
  1. function TPTo(PCFrame)
  2.     local plr = game.Players.LocalPlayer;
  3.            if plr.Character then
  4.             plr.Character.HumanoidRootPart.CFrame = PCFrame
  5.         end
  6.     end
  7.    
  8.     function TeleWorld(SeWorld)
  9.         if game:GetService("ReplicatedStorage").TeleportPositions:FindFirstChild(SeWorld) then
  10.             TPTo(game:GetService("ReplicatedStorage").TeleportPositions[SeWorld].Value)
  11.         end
  12.     end
  13.    
  14.     getgenv().AMine = false;
  15.     getgenv().ABoss = false;
  16.     getgenv().ARebirth = false;
  17.     getgenv().AClaim = false;
  18.    
  19.     function AutoMine()
  20.         spawn(function()
  21.         while getgenv().AMine == true do
  22.             game:GetService("ReplicatedStorage").Remotes.Click:InvokeServer()
  23.             wait()
  24.             end
  25.         end)
  26.     end
  27.    
  28.     function AutoBoss()
  29.         spawn(function()
  30.         while getgenv().ABoss == true do
  31.             game:GetService("ReplicatedStorage").Remotes.DamageBoss:FireServer()
  32.             wait()
  33.             end
  34.         end)
  35.     end
  36.    
  37.     function AutoClaim()
  38.         spawn(function()
  39.         while getgenv().AClaim == true do
  40.             local args = {
  41.             [1] = "mineOre"
  42.             }
  43.             game:GetService("ReplicatedStorage").Remotes.claimAchievment:FireServer(unpack(args));
  44.             wait(5)
  45.             local args = {
  46.                 [1] = "hatchEgg"
  47.             }
  48.             game:GetService("ReplicatedStorage").Remotes.claimAchievment:FireServer(unpack(args))
  49.             wait(5)
  50.             local args = {
  51.                 [1] = "unlockArea"
  52.             }
  53.             game:GetService("ReplicatedStorage").Remotes.claimAchievment:FireServer(unpack(args))
  54.             wait(5)
  55.             end
  56.         end)
  57.     end
  58.    
  59.     function AutoRebirth()
  60.         spawn(function()
  61.         while getgenv().ARebirth == true do
  62.             game:GetService("ReplicatedStorage").Remotes.Rebirth:FireServer()
  63.             wait(0.5)
  64.             end
  65.         end)
  66.         end
  67.    
  68.  
  69.  
  70.  
  71.  
  72.  
  73. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  74.  
  75. local w = library:CreateWindow("Mining Clicker Simulator") -- Creates the window
  76.  
  77. local b = w:CreateFolder("Autofarm") -- Creates the folder(U will put here your buttons,etc)
  78.  
  79. b:Button("Claim Daily",function()
  80.     local args = {
  81.         [1] = "Coin"
  82.     }
  83.     game:GetService("ReplicatedStorage").Remotes.DailyReward:InvokeServer(unpack(args))
  84. end)
  85.  
  86. b:Toggle("Mine",function(bool)
  87.     getgenv().AMine = bool
  88.     print("Auto Mine is", bool);
  89.     AutoMine()
  90. end)
  91. b:Toggle("Rebirth",function(bool)
  92.     getgenv().ARebirth = bool
  93.     print("Auto Rebirth is", bool);
  94.     AutoRebirth()
  95. end)
  96. b:Toggle("Boss (Doesn't Work)",function(bool)
  97.     getgenv().ABoss = bool
  98.     print("Auto Boss is", bool);
  99.     AutoBoss()
  100. end)
  101.  
  102. b:Toggle("Claim",function(bool)
  103.     getgenv().AClaim = bool
  104.     print("Auto Claim is", bool);
  105.     AutoClaim()
  106. end)
  107.  
  108. b:Dropdown("Buy Egg (Doesn't Work)",{"Event","Starter","Second Starter","Third Starter","Spotted","Floral","Desert","Snow","Cave","Ocean","Jungle","Volcano","Space","Undead","Heavenly"},true,function(val) --true/false, replaces the current title "Dropdown" with the option that t
  109.     print("You bought", val)
  110. end)
  111. local SWorld;
  112. b:Dropdown("Teleport",{"Spawn","Desert","Snow","Cave","Ocean","Jungle","Volcano","Space","Undead Forest","Heaven","Hell Dungeon","Jurassic","Atlantis","Egypt","Olympus","Dragon City","Shinobi Village","Pirate City","Demon District","Wall Disstrict","Tokyo","Hero Academy","Hunter Palace","Space Citadel"},true,function(val)
  113.     SWorld = val;
  114.     print("You went to", val)
  115. end)
  116.  
  117. b:Button("Teleport",function()
  118.     if SWorld then
  119.         TeleWorld(SWorld)
  120.     end
  121. end)
  122.  
  123.  
  124. local w = library:CreateWindow("Others")
  125.  
  126. local S
  127. local J
  128. local H
  129. local G
  130. local C
  131. local CF
  132.  
  133. local b = w:CreateFolder("LocalPlayer")
  134.  
  135. b:Box("Speed","number",function(val)
  136. S = val
  137. end)
  138. b:Box("Jump","number",function(val)
  139. J = val
  140. end)
  141. b:Box("Hip Height","number",function(val)
  142. H = val
  143. end)
  144. b:Box("Gravity","number",function(val)
  145. G = val
  146. end)
  147.  
  148. b:Toggle("Speed",function(bool)
  149. getgenv().Speed = bool
  150. Speed(S)
  151. end)
  152. b:Toggle("Jump",function(bool)
  153. getgenv().Jump = bool
  154. Jump(J)
  155. end)
  156. b:Toggle("Hip Height",function(bool)
  157. getgenv().Hip = bool
  158. Hip(H)
  159. end)
  160. b:Toggle("Gravity",function(bool)
  161. getgenv().Grav = bool
  162. Grav(G)
  163. end)
  164.  
  165. b:Slider("FOV (Default is 70)",{min = 0;max = 120;precise = true;},function(val)
  166.     game.workspace.CurrentCamera.FieldOfView = val
  167.     end)
  168.  
  169. b:Button("Print Current XYZ",function()
  170. function GetPOS() return game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame end print(GetPOS())
  171. end)
  172.  
  173. local b = w:CreateFolder("Stuff")
  174.  
  175. b:Box("Chat","Message",function(val)
  176.     C = val
  177. end)
  178.  
  179. b:Box("Cooldown","Speed",function(val)
  180.     CF = val
  181. end)
  182.  
  183. b:Toggle("Spam",function(bool)
  184.     getgenv().Chat = bool
  185.     Chat(C, CF)
  186. end)
  187.  
  188. b:Button("Rejoin",function()
  189.     loadstring(game:HttpGet("https://pastebin.com/raw/mM7JBG5h", true))()
  190. end)
  191.  
  192. b:Button("Giant",function()
  193.     loadstring(game:HttpGet("https://pastebin.com/raw/2jnKKARG", true))()
  194. end)
  195.  
  196. b:Button("Noclip",function()
  197.     loadstring(game:HttpGet("https://pastebin.com/raw/hd03Vdwm", true))()
  198. end)
  199.  
  200. b:Button("Reset",function()
  201.     loadstring(game:HttpGet("https://pastebin.com/raw/EEY6SATj", true))()
  202. end)
  203.  
  204. b:Button("RTX Summer",function()
  205.     loadstring(game:HttpGet("https://paste.ee/r/h4fL2", true))()
  206. end)
  207.  
  208. b:Button("RTX Autumn",function()
  209.     loadstring(game:HttpGet("https://paste.ee/r/9eV0M", true))()
  210. end)
  211.  
  212. b:Button("Anti-Report",function()
  213.     loadstring(game:HttpGet("https://paste.ee/r/GphmF", true))()
  214. end)
  215.  
  216. local b = w:CreateFolder("Credits")
  217.  
  218. b:Label("Made by X_LuaF#0705",{
  219.     TextSize = 21;
  220.     TextColor = Color3.fromRGB(255,255,255);
  221.     BgColor = Color3.fromRGB(69,69,69);
  222. })
  223.  
  224. b:Button("Copy Discord Invite",function()
  225.     setclipboard("https://discord.gg/8tRb8MQcW5")
  226. end)
  227.  
  228. b:DestroyGui()
  229.  
  230. getgenv().Speed = false;
  231. getgenv().Jump = false;
  232. getgenv().Hip = false;
  233. getgenv().Chat = false;
  234. getgenv().Grav = false;
  235.  
  236. function Chat(Mes, Freq)
  237.     spawn(function ()
  238.         while getgenv().Chat == true do
  239. local args = {[1] = Mes,[2] = "All"} game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  240. wait(Freq)
  241.         end
  242.     end)
  243. end
  244.  
  245. function Speed(Nume)
  246.     spawn(function ()
  247.         if getgenv().Speed == true then
  248.             while getgenv().Speed == true do
  249.                 game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Nume
  250.                 wait()
  251.             end
  252.         elseif getgenv().Speed == false then
  253.             game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 16
  254.         end
  255.     end)
  256. end
  257. function Jump(Nume)
  258.     spawn(function ()
  259.         if getgenv().Jump == true then
  260.             while getgenv().Jump == true do
  261.                 game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Nume
  262.                 wait()
  263.         end
  264.     elseif getgenv().Jump == false then
  265.             game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50
  266.         end
  267.     end)
  268. end
  269. function Hip(Nume)
  270.     spawn(function ()
  271.         if getgenv().Hip == true then
  272.             while getgenv().Hip == true do
  273.             game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = Nume
  274.             wait()
  275.         end
  276.     elseif getgenv().Hip == false then
  277.             game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = 0.1
  278.         end
  279.     end)
  280. end
  281. function Grav(Nume)
  282.     spawn(function ()
  283.         if getgenv().Grav == true then
  284.             while getgenv().Grav == true do
  285.                 game:GetService("Workspace").Gravity = Nume
  286.             wait()
  287.         end
  288.     elseif getgenv().Grav == false then
  289.         game:GetService("Workspace").Gravity = 196.2
  290.         end
  291.     end)
  292. end
  293.  
  294. function TPTo(PCFrame)
  295.     local plr = game.Players.LocalPlayer;
  296.            if plr.Character then
  297.             plr.Character.HumanoidRootPart.CFrame = PCFrame
  298.         end
  299.     end
Tags: Roblox lua Script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement