Advertisement
LuaXe

Anime Racing Clicker

Mar 20th, 2023
1,055
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.53 KB | Source Code | 0 0
  1. getgenv().C = false;
  2. getgenv().H = false;
  3. getgenv().E = false;
  4.  
  5. function C()
  6.     spawn(function ()
  7.         while getgenv().C do
  8. game:GetService("ReplicatedStorage").Knit.Services.ClickerService.RF.PlayerClick:InvokeServer() wait()
  9.         end
  10.     end)
  11. end
  12. function H(E)
  13.     spawn(function ()
  14.         while getgenv().H do
  15. local args = {[1] = E,[2] = 1,[3] = {}} game:GetService("ReplicatedStorage").Knit.Services.StarEggService.RF.OpenEggs:InvokeServer(unpack(args)) wait()
  16.         end
  17.     end)
  18. end
  19. function E()
  20.     spawn(function ()
  21.         while getgenv().E do
  22. game:GetService("ReplicatedStorage").Knit.Services.PetInventoryService.RF.EquipBest:InvokeServer() wait(1)
  23.         end
  24.     end)
  25. end
  26.  
  27. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  28.  
  29. local w = library:CreateWindow("Anime Racing Clicker")
  30.  
  31. local b = w:CreateFolder("Main")
  32.  
  33. b:Toggle("Auto Click",function(val)
  34. getgenv().C = val
  35. C()
  36. end)
  37.  
  38. b:Toggle("Auto Equip Best",function(val)
  39. getgenv().E = val
  40. E()
  41. end)
  42.  
  43. b:Toggle("Auto Hatch",function(val)
  44. getgenv().H = val
  45. H(E)
  46. end)
  47.  
  48. b:Dropdown("Egg",{"Star1","Star2","Star3","Star4","Star5","Star6","Star7","Star8","Star9","Star10","Star11","Star12","Star13","Star14","Star15","Star16","Star17","Star18","Star19","Star20","Star21","Star22","Star23","Star24","Star25","Star26","Star27","Star28","Star29","Star30"},true,function(val)
  49. E = val
  50. end)
  51.  
  52. b:Box("Egg","number",function(val)
  53. E = val
  54. end)
  55.  
  56. b:Label("Made by X_LuaF#0705",{TextSize = 21; TextColor = Color3.fromRGB(255,255,255); BgColor = Color3.fromRGB(69,69,69);})
  57.  
  58. local w = library:CreateWindow("LocalPlayer")
  59.  
  60. local b = w:CreateFolder("LP")
  61.  
  62. b:DestroyGui()
  63.  
  64. b:Button("Copy Discord Invite",function() setclipboard("discord.gg/8tRb8MQcW5") end)
  65. b:Button("Full Version",function() loadstring(game:HttpGet("https://pastebin.com/raw/GphZf9Xe", true))() end)
  66. b:Button("Rejoin",function() loadstring(game:HttpGet("https://pastebin.com/raw/mM7JBG5h", true))() end)
  67. b:Button("Reset",function() loadstring(game:HttpGet("https://pastebin.com/raw/EEY6SATj", true))() end)
  68.  
  69. local S
  70. local J
  71. local H
  72. local G
  73.  
  74. b:Box("Speed","number",function(val) S = val end)
  75. b:Box("Jump","number",function(val) J = val end)
  76. b:Box("Hip Height","number",function(val) H = val end)
  77. b:Box("Gravity","number",function(val) G = val end)
  78.  
  79. b:Toggle("Speed",function(bool) getgenv().Speed = bool Speed(S) end)
  80. b:Toggle("Jump",function(bool) getgenv().Jump = bool Jump(J) end)
  81. b:Toggle("Hip Height",function(bool) getgenv().Hip = bool Hip(H) end)
  82. b:Toggle("Gravity",function(bool) getgenv().Grav = bool Grav(G) end)
  83.  
  84. b:Slider("FOV (Default is 70)",{min = 0;max = 120;precise = true;},function(val) game.workspace.CurrentCamera.FieldOfView = val end)
  85.  
  86. getgenv().Speed = false;
  87. getgenv().Jump = false;
  88. getgenv().Hip = false;
  89. getgenv().Chat = false;
  90. getgenv().Grav = false;
  91.  
  92. function TPCFrame(Player_CFrame) game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Player_CFrame end
  93. function TPVector3(Player_Position) game.Players.LocalPlayer.Character.HumanoidRootPart.Position = Player_Position end
  94. function PHP(Player_HP) game.Players.LocalPlayer.Character.Humanoid.Health = Player_HP end
  95.  
  96. function Chat(Mes, Freq) spawn(function () while getgenv().Chat do local args = {[1] = Mes,[2] = "All"} game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args)) wait(Freq) end end) end
  97. function Speed(Nume) spawn(function () if getgenv().Speed then while getgenv().Speed do game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Nume wait() end elseif getgenv().Speed == false then game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 16 end end) end
  98. function Jump(Nume) spawn(function () if getgenv().Jump then while getgenv().Jump do game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Nume wait() end elseif getgenv().Jump == false then game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50 end end) end
  99. function Hip(Nume) spawn(function () if getgenv().Hip then while getgenv().Hip do game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = Nume wait() end elseif getgenv().Hip == false then game:GetService("Players").LocalPlayer.Character.Humanoid.HipHeight = 0.1 end end) end
  100. function Grav(Nume) spawn(function () if getgenv().Grav then while getgenv().Grav do game:GetService("Workspace").Gravity = Nume wait() end elseif getgenv().Grav == false then game:GetService("Workspace").Gravity = 196.2 end end) end
Tags: Roblox lua
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement