Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local plr = game.Players.LocalPlayer
- local wplr = game.Workspace:WaitForChild(plr.Name)
- local ka = Instance.new("Part")
- ka.Parent = wplr
- ka.BrickColor = BrickColor.new("Really red")
- ka.Transparency = .5
- ka.CanCollide = false
- ka.Shape = "Ball"
- ka.Size = Vector3.new(10,10,10)
- ka.Anchored = true
- ka.Position = wplr:WaitForChild("Torso").Position
- print("Made by: turtleman4real")
- wplr:WaitForChild("Torso").Anchored = true
- ka.Touched:connect(function(prt)
- local hum = prt.Parent:FindFirstChild("Humanoid")
- if hum then
- if prt.Parent.Name ~= plr.Name then
- prt.Transparency = .5
- prt.BrickColor = BrickColor.new("Really red")
- wait (3)
- prt:Destroy()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement