Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- https://www.roblox.com/games/70005410/Blox-Hunt-v2-6-4
- -- 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.
- -- Automatically disables after 20 seconds
- POWER = true
- local LP = game:GetService("Players").LocalPlayer
- game:GetService("RunService").Stepped:Connect(function()
- if POWER == true then
- for i,v in pairs(game:GetService("Players"):GetPlayers()) do
- if v ~= LP then
- v.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * 4
- end
- end
- end
- end)
- wait(20)
- POWER = false
Advertisement
Add Comment
Please, Sign In to add comment