Advertisement
filipaopastebins2134

Larva (Yellow) HealthFighter Test

Feb 24th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local StreetFightersIIGUI = Instance.new("ScreenGui")
  5. local ImageLabel = Instance.new("ImageLabel")
  6. local HealthFrame = Instance.new("Frame")
  7. local HealthBar = Instance.new("Frame")
  8. local ImageLabel_2 = Instance.new("ImageLabel")
  9. --Properties:
  10. StreetFightersIIGUI.Name = "StreetFightersIIGUI"
  11. StreetFightersIIGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. StreetFightersIIGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. ImageLabel.Parent = StreetFightersIIGUI
  15. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  16. ImageLabel.Size = UDim2.new(0, 106, 0, 103)
  17. ImageLabel.Image = "rbxassetid://2890347241"
  18.  
  19. HealthFrame.Name = "HealthFrame"
  20. HealthFrame.Parent = StreetFightersIIGUI
  21. HealthFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  22. HealthFrame.BorderColor3 = Color3.new(1, 0.666667, 0)
  23. HealthFrame.BorderSizePixel = 5
  24. HealthFrame.Position = UDim2.new(0.0974323004, 0, 0.133137643, 0)
  25. HealthFrame.Size = UDim2.new(0, 392, 0, 27)
  26.  
  27. HealthBar.Name = "HealthBar"
  28. HealthBar.Parent = HealthFrame
  29. HealthBar.BackgroundColor3 = Color3.new(0, 1, 0)
  30. HealthBar.BorderSizePixel = 0
  31. HealthBar.Position = UDim2.new(0.00147512008, 0, 2.8257017e-07, 0)
  32. HealthBar.Size = UDim2.new(0, 393, 0, 27)
  33.  
  34. ImageLabel_2.Parent = StreetFightersIIGUI
  35. ImageLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  36. ImageLabel_2.Position = UDim2.new(0.461182982, 0, 0.042328041, 0)
  37. ImageLabel_2.Size = UDim2.new(0, 137, 0, 79)
  38. ImageLabel_2.Image = "rbxassetid://2892871946"
  39. -- Scripts:
  40. function SCRIPT_DLBJ74_FAKESCRIPT() -- HealthBar.LocalScript
  41. local script = Instance.new('LocalScript')
  42. script.Parent = HealthBar
  43. wait(.1)
  44. while true do
  45. hp = game.Players.LocalPlayer.Character.Humanoid.Health/100
  46. script.Parent:TweenSize(UDim2.new(hp,0,1,0),Enum.EasingDirection.Out,Enum.EasingStyle.Quad,0.15)
  47. wait(.2)
  48. end
  49.  
  50. end
  51. coroutine.resume(coroutine.create(SCRIPT_DLBJ74_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement