Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- loadstring(game.HttpGet("https://pastebin.com/raw/LmNu6gfb", true))()
- for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
- if v.Name == "ui" then
- v:Destroy()
- end
- end
- local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/QAwr1iuM"))()
- local window = UI:Window("By kipr987")
- local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
- local kill = window:Tab("Killaura")
- local esp = window:Tab("Esp")
- local player = window:Tab("LocalPlayer")
- local setting = window:Tab("Setting")
- setting:Label("Gui Open/Close [H]")
- game:GetService("UserInputService").InputBegan:Connect(function(key, event)
- if event then return end
- pcall(function()
- if key.KeyCode == Enum.KeyCode.H then
- if window.Enabled == false then
- window.Enabled = true
- else
- window.Enabled = false
- end
- end
- end)
- end)
- _G.is = false
- kill:Toggle("Killaura", false, function(value)
- _G.is = value
- end)
- _G.VectorX = 0
- kill:Slider("VectorX", -30, 30, 0, function(value)
- _G.VectorX = value
- end)
- _G.VectorY = 0
- kill:Slider("VectorY", -30, 30, 0, function(value)
- _G.VectorY = value
- end)
- kill:Button("Teleport to Spawn", function()
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-276.975, 123.3, 158.024)
- end)
- esp:Toggle("Esp", false, function(value)
- _G.Esp = value
- end)
- _G.Speed = 300
- local speed = player:Slider("WalkSpeed", 0, 300, 16, function(value)
- _G.Speed = value
- end)
- spawn(function()
- game:GetService("RunService").RenderStepped:Connect(function()
- pcall(function()
- game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = _G.Speed
- end)
- end)
- end)
- game:GetService("RunService").RenderStepped:Connect(function()
- pcall(function()
- if _G.is then
- if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Highlight") or workspace.Balls:GetChildren()[2].BrickColor == BrickColor.new("Really red") then
- 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)
- keypress(Enum.KeyCode.F)
- end
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement