Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Join my discord https://discord.gg/VWeenxq
- game:GetService("RunService").RenderStepped:connect(function()
- local players = game.workspace.Characters:GetChildren()
- for i,v in pairs(players) do
- if v.Name ~= game.Players.LocalPlayer.Name then
- v.Hitbox.Head.Size = Vector3.new(100, 100, 100) ---where you can change hitbox size
- v.Hitbox.Head.Transparency = 0.8 --- remove if you dont want boxes
- end
- if v.Health.Value == 0 then
- v:Destroy()
- end
- end
- -- remove below to stay unanchored
- local name1 = game.Players.LocalPlayer.Name
- local char1 = game.workspace.Characters:FindFirstChild(name1)
- char1.Root.Anchored = true
- wait(0.1)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement