Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PlayerName = "PUT PLAYER NAME HERE"
- --INFECT PLAYER // BRAIN DAMAGE
- --The following was scripted by hego0
- local players = game:GetService("Players")
- local plr = players:FindFirstChild(PlayerName)
- local char = plr.Character
- local newhead = Instance.new("Part",workspace)
- newhead.Size = Vector3.new(0.01,0.01,0.01)
- newhead.Shape = "Ball"
- newhead.CanCollide = false
- newhead.Anchored = true
- newhead.BrickColor = char.Head.BrickColor
- local dec = Instance.new("Decal")
- dec.DecalId = "http://www.roblox.com/asset/?id=83017053"
- dec.Face = "Front"
- dec.Parent = newhead
- while true do
- newhead.Size = newhead.Size + Vector3.new(0.3,0.3,0.3)
- char.Humanoid.Health = char.Humanoid.Health - 0.05
- newhead.Orientation = newhead.Orientation + Vector3.new(1,0,0)
- newhead.Position = char.Head.Position
- wait(0.02)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement