Advertisement
XxMichaelGamingxX

Infinite Health(FIXED)

Mar 31st, 2019
5,186
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. -- Script by XxMichaelGamingxX
  2. -- Version: 2.82
  3. -- Instances:
  4. script.IS_FE = true
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Open = Instance.new("Frame")
  7. local OpenGUI = Instance.new("TextButton")
  8. local GUIFrame = Instance.new("Frame")
  9. local GodPlr = Instance.new("TextButton")
  10. local p = game.Players.LocalPlayer
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Open.Name = "Open"
  16. Open.Parent = game.CoreGui
  17. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Open.BackgroundTransparency = 0.5
  19. Open.Position = UDim2.new(0, 34, 0, 168)
  20. Open.Size = UDim2.new(0, 129, 0, 48)
  21.  
  22. OpenGUI.Name = "OpenGUI"
  23. OpenGUI.Parent = Open
  24. OpenGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  25. OpenGUI.BackgroundTransparency = 0.5
  26. OpenGUI.Size = UDim2.new(0, 129, 0, 50)
  27. OpenGUI.Text = "Open"
  28. OpenGUI.TextColor3 = Color3.new(0, 1, 1)
  29. OpenGUI.TextSize = 14
  30.  
  31. GUIFrame.Name = "GUIFrame"
  32. GUIFrame.Parent = ScreenGui
  33. GUIFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  34. GUIFrame.BackgroundTransparency = 0.5
  35. GUIFrame.Position = UDim2.new(0, 260, 0, 85)
  36. GUIFrame.Size = UDim2.new(0, 340, 0, 159)
  37.  
  38. GodPlr.Name = "GodPlr"
  39. GodPlr.Parent = GUIFrame
  40. GodPlr.BackgroundColor3 = Color3.new(0, 0, 0)
  41. GodPlr.BackgroundTransparency = 0.5
  42. GodPlr.Position = UDim2.new(0.188235298, 0, 0.347639471, 0)
  43. GodPlr.Size = UDim2.new(0, 200, 0, 50)
  44. GodPlr.Text = "Infhealth"
  45. GodPlr.TextColor3 = Color3.new(0, 1, 1)
  46. GodPlr.TextSize = 14
  47. -- Scripts:
  48.  
  49. GodPlr.MouseButton1Down:connect(function()
  50. p.Character.Humanoid.MaxHealth = math.huge
  51. end)
  52.  
  53. OpenGUI.MouseButton1Down:connect(function()
  54. game.CoreGui.ScreenGui.Open.Visible = false
  55. game.CoreGui.ScreenGui.GUIFrame.Visible = true
  56. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement