Advertisement
DenisPitu06_YT

SCP - 457

Sep 10th, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. local c = game.Players.LocalPlayer.Character
  2.  
  3. c.Head.Transparency = 1
  4. c.Torso.Transparency = 1
  5. c["Left Arm"].Transparency = 1
  6. c["Right Arm"].Transparency = 1
  7. c["Right Leg"].Transparency = 1
  8. c["Left Leg"].Transparency = 1
  9. c.HumanoidRootPart.Transparency = 1
  10. c.Humanoid.WalkSpeed = 10
  11. local fire = Instance.new("Fire", c.Torso)
  12. fire.Size = 2
  13. fire.Heat = 5
  14. c.Torso.Touched:connect(function(hit)
  15. local fire = Instance.new("Fire", hit.Parent.Torso)
  16. fire.Size = 10
  17. fire.Heat = 10
  18. while true do
  19. hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - 0.5
  20. end
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement