Advertisement
Guest User

FF + Infinite Health Script (Roblox)

a guest
Apr 30th, 2018
61,271
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. player = game.Players.LocalPlayer
  2.  
  3. --#-----#--
  4.  
  5. attachment4 = Instance.new("Attachment",player.Character["Right Leg"])
  6. attachment4.Name = "Attachment0"
  7. attachment5 = Instance.new("Attachment",player.Character["Right Leg"])
  8. attachment5.Name = "Attachment1"
  9. attachment6 = Instance.new("Attachment",player.Character["Right Leg"])
  10. attachment6.Name = "Attachment2"
  11. attachment7 = Instance.new("Attachment",player.Character["Right Leg"])
  12. attachment7.Name = "Attachment3"
  13.  
  14. attachment4.Position = Vector3.new(0.5, -1, 0.5)
  15. attachment5.Position = Vector3.new(-0.5, -0.7, -0.5)
  16. attachment6.Position = Vector3.new(-0.5, -0.7, 0.5)
  17. attachment7.Position = Vector3.new(0.5, -1, -0.5)
  18.  
  19. trail2 = Instance.new("Trail",player.Character["Right Leg"])
  20. trail2.Name = "Trail0"
  21. trail3 = Instance.new("Trail",player.Character["Right Leg"])
  22. trail3.Name = "Trail1"
  23.  
  24. trail2.Attachment0 = attachment4
  25. trail2.Attachment1 = attachment5
  26. trail3.Attachment0 = attachment6
  27. trail3.Attachment1 = attachment7
  28.  
  29. trail2.Lifetime = 1.5
  30. trail3.Lifetime = 1.5
  31.  
  32. trail2.MaxLength = 0
  33. trail3.MaxLength = 0
  34. trail2.MinLength = 0
  35. trail3.MinLength = 0
  36.  
  37. --#----------#--
  38.  
  39. attachment0 = Instance.new("Attachment",player.Character["Left Leg"])
  40. attachment0.Name = "Attachment0"
  41. attachment1 = Instance.new("Attachment",player.Character["Left Leg"])
  42. attachment1.Name = "Attachment1"
  43. attachment2 = Instance.new("Attachment",player.Character["Left Leg"])
  44. attachment2.Name = "Attachment2"
  45. attachment3 = Instance.new("Attachment",player.Character["Left Leg"])
  46. attachment3.Name = "Attachment3"
  47.  
  48. attachment0.Position = Vector3.new(0.5, -1, 0.5)
  49. attachment1.Position = Vector3.new(-0.5, -0.7, -0.5)
  50. attachment2.Position = Vector3.new(-0.5, -0.7, 0.5)
  51. attachment3.Position = Vector3.new(0.5, -1, -0.5)
  52.  
  53. trail0 = Instance.new("Trail",player.Character["Left Leg"])
  54. trail0.Name = "Trail0"
  55. trail1 = Instance.new("Trail",player.Character["Left Leg"])
  56. trail1.Name = "Trail1"
  57.  
  58. trail0.Attachment0 = attachment0
  59. trail0.Attachment1 = attachment1
  60. trail1.Attachment0 = attachment2
  61. trail1.Attachment1 = attachment3
  62.  
  63. trail0.Lifetime = 1.5
  64. trail1.Lifetime = 1.5
  65.  
  66. trail0.MaxLength = 0
  67. trail1.MaxLength = 0
  68. trail0.MinLength = 0
  69. trail1.MinLength = 0
  70.  
  71. --#--------------------#--
  72.  
  73. ff = Instance.new("ForceField", player.Character)
  74. ff.Visible = false
  75.  
  76. while true do
  77. wait()
  78. game.Workspace.CaptainFiliNox.Humanoid.Health = 100
  79. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement