Advertisement
Henryhulk

Untitled

Feb 24th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. -- Objects
  2.  
  3. local TutorialGUI = Instance.new("ScreenGui")
  4. local TutorialFrame = Instance.new("Frame")
  5. local SecondTutorialFrame = Instance.new("Frame")
  6. local Kill = Instance.new("TextButton")
  7. local PlayerName = Instance.new("TextBox")
  8. local TutorialScrollingFrame = Instance.new("ScrollingFrame")
  9. local God = Instance.new("TextButton")
  10. local Forcefield = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. TutorialGUI.Name = "TutorialGUI"
  15. TutorialGUI.Parent = game.StarterGui
  16.  
  17. TutorialFrame.Name = "TutorialFrame"
  18. TutorialFrame.Parent = TutorialGUI
  19. TutorialFrame.Active = true
  20. TutorialFrame.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  21. TutorialFrame.BackgroundTransparency = 0.25
  22. TutorialFrame.Position = UDim2.new(0.831018507, 0, 0.717948735, 0)
  23. TutorialFrame.Size = UDim2.new(0, 194, 0, 154)
  24.  
  25. SecondTutorialFrame.Name = "SecondTutorialFrame"
  26. SecondTutorialFrame.Parent = TutorialFrame
  27. SecondTutorialFrame.Active = true
  28. SecondTutorialFrame.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  29. SecondTutorialFrame.BackgroundTransparency = 0.25
  30. SecondTutorialFrame.Draggable = true
  31. SecondTutorialFrame.Position = UDim2.new(0.0371802151, 0, 0.0887446105, 0)
  32. SecondTutorialFrame.Size = UDim2.new(0, 85, 0, 126)
  33.  
  34. Kill.Name = "Kill"
  35. Kill.Parent = SecondTutorialFrame
  36. Kill.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  37. Kill.Position = UDim2.new(0.0941176489, 0, 0.182539687, 0)
  38. Kill.Size = UDim2.new(0, 69, 0, 20)
  39. Kill.Font = Enum.Font.SourceSans
  40. Kill.Text = "Kill"
  41. Kill.TextColor3 = Color3.new(1, 1, 1)
  42. Kill.TextSize = 14
  43.  
  44. Kill.MouseButton1Click:connect(function()
  45. game.Players[PlayerName.Text].Character.Humanoid.Health = 0
  46. end)
  47.  
  48. PlayerName.Name = "PlayerName"
  49. PlayerName.Parent = Kill
  50. PlayerName.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  51. PlayerName.Position = UDim2.new(-0.00724636763, 0, 3.5999999, 0)
  52. PlayerName.Size = UDim2.new(0, 69, 0, 20)
  53. PlayerName.Font = Enum.Font.SourceSans
  54. PlayerName.Text = "Player"
  55. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  56. PlayerName.TextSize = 14
  57.  
  58. TutorialScrollingFrame.Name = "TutorialScrollingFrame"
  59. TutorialScrollingFrame.Parent = TutorialFrame
  60. TutorialScrollingFrame.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  61. TutorialScrollingFrame.Position = UDim2.new(0.525773168, 0, 0.0909090936, 0)
  62. TutorialScrollingFrame.Size = UDim2.new(0, 85, 0, 126)
  63.  
  64. God.Name = "God"
  65. God.Parent = TutorialScrollingFrame
  66. God.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  67. God.Size = UDim2.new(0, 72, 0, 29)
  68. God.Font = Enum.Font.SourceSans
  69. God.Text = "God"
  70. God.TextColor3 = Color3.new(1, 1, 1)
  71. God.TextSize = 14
  72.  
  73. God.MouseButton1Click:connect(function()
  74. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  75. end)
  76.  
  77. Forcefield.Name = "Forcefield"
  78. Forcefield.Parent = TutorialScrollingFrame
  79. Forcefield.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  80. Forcefield.Position = UDim2.new(0, 0, 0.119047612, 0)
  81. Forcefield.Size = UDim2.new(0, 72, 0, 29)
  82. Forcefield.Font = Enum.Font.SourceSans
  83. Forcefield.Text = "Forcefield"
  84. Forcefield.TextColor3 = Color3.new(1, 1, 1)
  85. Forcefield.TextSize = 14
  86.  
  87. Forcefield.MouseButton1Click:connect(function()
  88. Instance.new("ForceField", game.Players.LocalPlayer.Character)
  89. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement