Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.58 KB | None | 0 0
  1. spawnCF = CFrame.new(578,184,95)
  2. lpcF = game.Players.LocalPlayer.Character.HumanoidRootPart
  3. location = game.Workspace.Locations.KOH.CFrame --Change
  4.  
  5. --List of locations
  6. local children = game.Workspace.Locations:GetChildren()
  7. for i, child in ipairs(children) do
  8.     print(child.Name)
  9. end
  10.  
  11. --Jump Power and Walkspeed bypass
  12. while wait(.5) do
  13.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = 10000-- any number
  14.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 -- any number
  15. end
  16.  
  17. --TP Bypass
  18. lpcF.CFrame = location
  19. lpcF.CFrame = spawnCF
  20. lpcF.CFrame = location
  21.  
  22.  
  23.  
  24.  
  25. --AutoClicker
  26. autoClicker = Instance.new("BoolValue",game.Players.LocalPlayer)
  27. autoClicker.Name = "AutoClicker"
  28.  
  29. blade = "YellowBlade"-- name of your blade
  30.  
  31.  
  32. autoClicker.Value = true
  33.  
  34. while wait() do
  35.  
  36.     if autoClicker.Value == true then
  37.         game.ReplicatedStorage.Events.Clicked:FireServer()
  38.         game.Players.LocalPlayer.Character[blade].RemoteClick:FireServer()
  39.     end
  40.  
  41. end
  42.  
  43. --Tp To Everyone
  44. local children = game.Players:GetChildren()
  45. local spawnCF = CFrame.new(578,184,95)
  46.  
  47. local lpcF = game.Players.LocalPlayer.Character.HumanoidRootPart
  48. for i, child in ipairs(children) do
  49.     local tarLocation = child.Character.HumanoidRootPart
  50.     lpcF.CFrame = tarLocation.CFrame
  51.     lpcF.CFrame = spawnCF
  52.     lpcF.CFrame = tarLocation.CFrame
  53.     wait(2)
  54. end
  55.  
  56. --Tp To All Coins
  57. while wait(.5) do
  58.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.CoinsHolder.Coin.CFrame
  59.     wait(.2)
  60.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = spawnCF
  61. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement