Advertisement
Totek2007

Fire Rage

Jul 29th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. me = game.Players.Totek2007
  2. limbs = {"Right Arm", "Left Arm", "Right Leg", "Left Leg", "Head", "Torso"}
  3. sc = Instance.new("ScreenGui")
  4. sc.Parent = me.PlayerGui
  5. sc.Name = "Break"
  6. txt = Instance.new("TextButton")
  7. txt.Parent = sc
  8. txt.Position = UDim2.new(0,10,0,200)
  9. txt.Text = "Fire Rage"
  10. txt.Size = UDim2.new(0,100,0,40)
  11. txt.TextColor = BrickColor.new("Lime green")
  12. txt.BorderColor = BrickColor.new("Lime green")
  13. txt.BackgroundColor = BrickColor.new("Really black")
  14. function click()
  15. txt:Remove()
  16. if me.Character.Humanoid.Health == 0 then
  17. me.Character.Torso:Remove()
  18. end
  19. me.Character.Humanoid.WalkSpeed = 35
  20. local meh = me.Character:GetChildren()
  21. for i=1, #meh do
  22. for _,v in pairs(limbs) do
  23. if meh[i].Name:lower() == v:lower() then
  24. local fi2 = Instance.new("Fire")
  25. fi2.Parent = meh[i]
  26. fi2.Heat = 10
  27. fi2.Color = Color3.new(1,0,1)
  28. fi2.SecondaryColor = Color3.new(0.6,0.1,0)
  29. if meh[i].Name == "Torso" then
  30. function onTouched(part)
  31. local h = part
  32. if h~=nil then
  33. if (h.Name ~= "Base") and (h.Name ~= "Baseplate") then
  34. hint = Instance.new("Hint")
  35. hint.Parent = Workspace
  36. hint.Text = (""..h.Name)
  37. end
  38. end
  39. end
  40. meh[i].Touched:connect(onTouched)
  41. end
  42. end
  43. end
  44. end
  45. end
  46. txt.MouseButton1Down:connect(click)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement