Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local c = game.Players.LocalPlayer.Character
- c.Head.Transparency = 1
- c.Torso.Transparency = 1
- c["Left Arm"].Transparency = 1
- c["Right Arm"].Transparency = 1
- c["Right Leg"].Transparency = 1
- c["Left Leg"].Transparency = 1
- c.HumanoidRootPart.Transparency = 1
- c.Humanoid.WalkSpeed = 10
- local fire = Instance.new("Fire", c.Torso)
- fire.Size = 2
- fire.Heat = 5
- c.Torso.Touched:connect(function(hit)
- local fire = Instance.new("Fire", hit.Parent.Torso)
- fire.Size = 10
- fire.Heat = 10
- while true do
- hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - 0.5
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement