Advertisement
IMAKESCRIPTSATSCHOOL

INFECT PLAYER // BRAIN DAMAGE

Jan 25th, 2022
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. PlayerName = "PUT PLAYER NAME HERE"
  2.  
  3.  
  4.  
  5. --INFECT PLAYER // BRAIN DAMAGE
  6.  
  7.  
  8.  
  9.  
  10. --The following was scripted by hego0
  11. local players = game:GetService("Players")
  12. local plr = players:FindFirstChild(PlayerName)
  13. local char = plr.Character
  14. local newhead = Instance.new("Part",workspace)
  15. newhead.Size = Vector3.new(0.01,0.01,0.01)
  16. newhead.Shape = "Ball"
  17. newhead.CanCollide = false
  18. newhead.Anchored = true
  19. newhead.BrickColor = char.Head.BrickColor
  20. local dec = Instance.new("Decal")
  21. dec.DecalId = "http://www.roblox.com/asset/?id=83017053"
  22. dec.Face = "Front"
  23. dec.Parent = newhead
  24. while true do
  25. newhead.Size = newhead.Size + Vector3.new(0.3,0.3,0.3)
  26. char.Humanoid.Health = char.Humanoid.Health - 0.05
  27. newhead.Orientation = newhead.Orientation + Vector3.new(1,0,0)
  28. newhead.Position = char.Head.Position
  29. wait(0.02)
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement