FatalityHubCreator

Blox Hunt

Aug 26th, 2018
4,189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. -- https://www.roblox.com/games/70005410/Blox-Hunt-v2-6-4
  2. -- Only you will be able to see, but if you are a seeker you can run this script and easily tag hiders infront of you by clicking on them.
  3. -- Automatically disables after 20 seconds
  4.  
  5. POWER = true
  6. local LP = game:GetService("Players").LocalPlayer
  7. game:GetService("RunService").Stepped:Connect(function()
  8. if POWER == true then
  9. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  10. if v ~= LP then
  11. v.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * 4
  12. end
  13. end
  14. end
  15. end)
  16. wait(20)
  17. POWER = false
Advertisement
Add Comment
Please, Sign In to add comment