Advertisement
Guest User

roblox god mode script

a guest
Oct 18th, 2018
69,180
-1
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 2 3
  1. -- Made by bacon hacks
  2.  
  3. local Tutorial = Instance.new("ScreenGui")
  4. local Open = Instance.new("Frame")
  5. local OpenGui = Instance.new("TextButton")
  6. local GuiFrame = Instance.new("Frame")
  7. local GodPlr = Instance.new("TextButton")
  8. local p = game.Players.LocalPlayer
  9.  
  10. Tutorial.Name = "Tutorial"
  11. Tutorial.Parent = game.CoreGui
  12.  
  13. Open.Name = "Open"
  14. Open.Parent = Tutorial
  15. Open.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  16. Open.BackgroundTransparency = 0.34999999403954
  17. Open.Position = UDim2.new(0, 0, 0.520884514, 0)
  18. Open.Size = UDim2.new(0, 135, 0, 46)
  19.  
  20. OpenGui.Name = "OpenGui"
  21. OpenGui.Parent = Open
  22. OpenGui.BackgroundColor3 = Color3.new(1, 1, 1)
  23. OpenGui.BackgroundTransparency = 1
  24. OpenGui.Size = UDim2.new(0, 135, 0, 46)
  25. OpenGui.Font = Enum.Font.SourceSans
  26. OpenGui.Text = "Open"
  27. OpenGui.TextColor3 = Color3.new(0, 0, 0)
  28. OpenGui.TextSize = 50
  29.  
  30. GuiFrame.Name = "GuiFrame"
  31. GuiFrame.Parent = Tutorial
  32. GuiFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  33. GuiFrame.BackgroundTransparency = 0.5
  34. GuiFrame.Position = UDim2.new(0.440088749, 0, 0.156019658, 0)
  35. GuiFrame.Size = UDim2.new(0, 486, 0, 391)
  36. GuiFrame.Visible = false
  37.  
  38. GodPlr.Name = "GodPlr"
  39. GodPlr.Parent = GuiFrame
  40. GodPlr.BackgroundColor3 = Color3.new(1, 1, 1)
  41. GodPlr.Position = UDim2.new(0.294238687, 0, 0.0843990073, 0)
  42. GodPlr.Size = UDim2.new(0, 200, 0, 50)
  43. GodPlr.Font = Enum.Font.SourceSans
  44. GodPlr.Text = "InfHealth"
  45. GodPlr.TextColor3 = Color3.new(0, 1, 1)
  46. GodPlr.TextSize = 50
  47. GodPlr.TextStrokeColor3 = Color3.new(0, 1, 1)
  48.  
  49. GodPlr.MouseButton1Click:connect(function()
  50. p.Character.Humanoid.MaxHealth = math.huge
  51. end)
  52.  
  53. OpenGui.MouseButton1Click:connect(function()
  54. game.CoreGui.Tutorial.Open.Visible = false
  55. game.CoreGui.Tutorial.GuiFrame.Visible = true
  56. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement