Advertisement
LuaXe

🏆 Backrooms Race Clicker

Oct 7th, 2022 (edited)
3,420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.16 KB | Source Code | 0 0
  1.     function TeleWorld(SeWorld)
  2.         if game:GetService("Workspace").Racetracks:FindFirstChild(SeWorld) then
  3.             TPTo(game:GetService("Workspace").Racetracks[SeWorld].Doors.ElevatorSounds.CFrame)
  4.         end
  5.     end
  6.  
  7. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  8.  
  9. local w = library:CreateWindow("Backrooms Race Clicker")
  10.  
  11. local b = w:CreateFolder("Backrooms Race Clicker")
  12.  
  13. b:Button("Get Max Speed",function()
  14.     game:GetService('Players').LocalPlayer.Character.Humanoid.WalkSpeed = 99999999999999999
  15. end)
  16. local SRace
  17. b:Dropdown("Race",{"Normal","Hard","Impossible","Godlike",},true,function(val)
  18.     SRace = val;
  19. end)
  20.  
  21. b:Button("TP",function()
  22. if SRace then
  23.     TeleWorld(SRace)
  24. end
  25. end)
  26.  
  27. local w = library:CreateWindow("Others")
  28.  
  29. local S
  30. local J
  31. local H
  32. local G
  33. local C
  34. local CF
  35.  
  36. local b = w:CreateFolder("LocalPlayer")
  37.  
  38. b:Box("Speed","number",function(val)
  39. S = val
  40. end)
  41. b:Box("Jump","number",function(val)
  42. J = val
  43. end)
  44. b:Box("Hip Height","number",function(val)
  45. H = val
  46. end)
  47. b:Box("Gravity","number",function(val)
  48. G = val
  49. end)
  50.  
  51. b:Toggle("Speed",function(bool)
  52. getgenv().Speed = bool
  53. Speed(S)
  54. end)
  55. b:Toggle("Jump",function(bool)
  56. getgenv().Jump = bool
  57. Jump(J)
  58. end)
  59. b:Toggle("Hip Height",function(bool)
  60. getgenv().Hip = bool
  61. Hip(H)
  62. end)
  63. b:Toggle("Gravity",function(bool)
  64. getgenv().Grav = bool
  65. Grav(G)
  66. end)
  67.  
  68. b:Slider("FOV (Default is 70)",{min = 0;max = 120;precise = true;},function(val)
  69.     game.workspace.CurrentCamera.FieldOfView = val
  70.     end)
  71.  
  72. b:Button("Print Current XYZ",function()
  73. function GetPOS() return game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame end print(GetPOS())
  74. end)
  75.  
  76. local b = w:CreateFolder("Stuff")
  77.  
  78. b:Box("Chat","Message",function(val)
  79.     C = val
  80. end)
  81.  
  82. b:Box("Cooldown","Speed",function(val)
  83.     CF = val
  84. end)
  85.  
  86. b:Toggle("Spam",function(bool)
  87.     getgenv().Chat = bool
  88.     Chat(C, CF)
  89. end)
  90.  
  91. b:Button("Rejoin",function()
  92.     loadstring(game:HttpGet("https://pastebin.com/raw/mM7JBG5h", true))()
  93. end)
  94.  
  95. b:Button("Giant",function()
  96.     loadstring(game:HttpGet("https://pastebin.com/raw/2jnKKARG", true))()
  97. end)
  98.  
  99. b:Button("Noclip",function()
  100.     loadstring(game:HttpGet("https://pastebin.com/raw/hd03Vdwm", true))()
  101. end)
  102.  
  103. b:Button("Reset",function()
  104.     loadstring(game:HttpGet("https://pastebin.com/raw/EEY6SATj", true))()
  105. end)
  106.  
  107. b:Button("RTX Summer",function()
  108.     loadstring(game:HttpGet("https://paste.ee/r/h4fL2", true))()
  109. end)
  110.  
  111. b:Button("RTX Autumn",function()
  112.     loadstring(game:HttpGet("https://paste.ee/r/9eV0M", true))()
  113. end)
  114.  
  115. b:Button("Anti-Report",function()
  116.     loadstring(game:HttpGet("https://paste.ee/r/GphmF", true))()
  117. end)
  118.  
  119. local b = w:CreateFolder("Credits")
  120.  
  121. b:Label("Made by X_LuaF#0705",{
  122.     TextSize = 21;
  123.     TextColor = Color3.fromRGB(255,255,255);
  124.     BgColor = Color3.fromRGB(69,69,69);
  125. })
  126.  
  127. b:Button("Copy Discord Invite",function()
  128.     setclipboard("https://discord.gg/8tRb8MQcW5")
  129. end)
  130.  
  131. b:DestroyGui()
  132.  
  133. getgenv().Speed = false;
  134. getgenv().Jump = false;
  135. getgenv().Hip = false;
  136. getgenv().Chat = false;
  137. getgenv().Grav = false;
  138.  
  139. function Chat(Mes, Freq)
  140.     spawn(function ()
  141.         while getgenv().Chat == true do
  142. local args = {[1] = Mes,[2] = "All"} game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  143. wait(Freq)
  144.         end
  145.     end)
  146. end
  147.  
  148. function Speed(Nume)
  149.     spawn(function ()
  150.         if getgenv().Speed == true then
  151.             while getgenv().Speed == true do
  152.                 game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Nume
  153.                 wait()
  154.             end
  155.         elseif getgenv().Speed == false then
  156.             game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 16
  157.         end
  158.     end)
  159. end
  160. function Jump(Nume)
  161.     spawn(function ()
  162.         if getgenv().Jump == true then
  163.             while getgenv().Jump == true do
  164.                 game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Nume
  165.                 wait()
  166.         end
  167.     elseif getgenv().Jump == false then
  168.             game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50
  169.         end
  170.     end)
  171. end
  172. function Hip(Nume)
  173.     spawn(function ()
  174.         if getgenv().Hip == true then
  175.             while getgenv().Hip == true do
  176.             game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = Nume
  177.             wait()
  178.         end
  179.     elseif getgenv().Hip == false then
  180.             game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = 0.1
  181.         end
  182.     end)
  183. end
  184. function Grav(Nume)
  185.     spawn(function ()
  186.         if getgenv().Grav == true then
  187.             while getgenv().Grav == true do
  188.                 game:GetService("Workspace").Gravity = Nume
  189.             wait()
  190.         end
  191.     elseif getgenv().Grav == false then
  192.         game:GetService("Workspace").Gravity = 196.2
  193.         end
  194.     end)
  195. end
  196.  
  197. function TPTo(PCFrame)
  198.     local plr = game.Players.LocalPlayer;
  199.            if plr.Character then
  200.             plr.Character.HumanoidRootPart.CFrame = PCFrame
  201.         end
  202.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement