Advertisement
kipr987

Ball

Sep 17th, 2023 (edited)
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. loadstring(game.HttpGet("https://pastebin.com/raw/LmNu6gfb", true))()
  2. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  3. if v.Name == "ui" then
  4. v:Destroy()
  5. end
  6. end
  7. local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/QAwr1iuM"))()
  8.  
  9. local window = UI:Window("By kipr987")
  10. local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
  11. local kill = window:Tab("Killaura")
  12. local esp = window:Tab("Esp")
  13. local player = window:Tab("LocalPlayer")
  14. local setting = window:Tab("Setting")
  15. setting:Label("Gui Open/Close [H]")
  16. game:GetService("UserInputService").InputBegan:Connect(function(key, event)
  17. if event then return end
  18. pcall(function()
  19. if key.KeyCode == Enum.KeyCode.H then
  20. if window.Enabled == false then
  21. window.Enabled = true
  22. else
  23. window.Enabled = false
  24. end
  25. end
  26. end)
  27. end)
  28. _G.is = false
  29. kill:Toggle("Killaura", false, function(value)
  30. _G.is = value
  31. end)
  32. _G.VectorX = 0
  33. kill:Slider("VectorX", -30, 30, 0, function(value)
  34. _G.VectorX = value
  35. end)
  36. _G.VectorY = 0
  37. kill:Slider("VectorY", -30, 30, 0, function(value)
  38. _G.VectorY = value
  39. end)
  40. kill:Button("Teleport to Spawn", function()
  41. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-276.975, 123.3, 158.024)
  42. end)
  43. esp:Toggle("Esp", false, function(value)
  44. _G.Esp = value
  45. end)
  46. _G.Speed = 300
  47. local speed = player:Slider("WalkSpeed", 0, 300, 16, function(value)
  48. _G.Speed = value
  49. end)
  50.  
  51. spawn(function()
  52. game:GetService("RunService").RenderStepped:Connect(function()
  53. pcall(function()
  54. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = _G.Speed
  55. end)
  56. end)
  57. end)
  58. game:GetService("RunService").RenderStepped:Connect(function()
  59. pcall(function()
  60. if _G.is then
  61. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Highlight") or workspace.Balls:GetChildren()[2].BrickColor == BrickColor.new("Really red") then
  62. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.Balls:GetChildren()[1].Position.X + _G.VectorX, workspace.Balls:GetChildren()[1].Position.Y + _G.VectorY, workspace.Balls:GetChildren()[1].Position.Z)
  63. keypress(Enum.KeyCode.F)
  64. end
  65. end
  66. end)
  67. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement