Advertisement
Verhed

Untitled

Jul 26th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 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 PlayerName = Instance.new("TextBox")
  7. local Credits = Instance.new("TextLabel")
  8. local Kill = Instance.new("TextButton")
  9. local TutorialScrollingFrame = Instance.new("ScrollingFrame")
  10. local Forcefield = Instance.new("TextButton")
  11. local God = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. TutorialGUI.Name = "TutorialGUI"
  16. TutorialGUI.Parent = game.CoreGui
  17.  
  18. TutorialFrame.Name = "TutorialFrame"
  19. TutorialFrame.Parent = TutorialGUI
  20. TutorialFrame.Active = true
  21. TutorialFrame.BackgroundColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  22. TutorialFrame.BackgroundTransparency = 0.25
  23. TutorialFrame.Position = UDim2.new(0.733261347, 0, 0.332283467, 0)
  24. TutorialFrame.Size = UDim2.new(0, 228, 0, 145)
  25. TutorialFrame.Draggable = true
  26.  
  27. SecondTutorialFrame.Name = "SecondTutorialFrame"
  28. SecondTutorialFrame.Parent = TutorialFrame
  29. SecondTutorialFrame.BackgroundColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  30. SecondTutorialFrame.BackgroundTransparency = 0.25
  31. SecondTutorialFrame.Position = UDim2.new(0.0350877196, 0, 0.0655172393, 0)
  32. SecondTutorialFrame.Size = UDim2.new(0, 88, 0, 126)
  33.  
  34. PlayerName.Name = "PlayerName"
  35. PlayerName.Parent = SecondTutorialFrame
  36. PlayerName.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  37. PlayerName.Position = UDim2.new(0.125, 0, 0.753968298, 0)
  38. PlayerName.Size = UDim2.new(0, 66, 0, 18)
  39. PlayerName.Font = Enum.Font.SourceSans
  40. PlayerName.Text = "Player"
  41. PlayerName.TextColor3 = Color3.new(1, 1, 1)
  42. PlayerName.TextScaled = true
  43. PlayerName.TextSize = 14
  44. PlayerName.TextWrapped = true
  45.  
  46. Credits.Name = "Credits"
  47. Credits.Parent = SecondTutorialFrame
  48. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  49. Credits.BackgroundTransparency = 1
  50. Credits.Position = UDim2.new(0.125, 0, 0.301587313, 0)
  51. Credits.Size = UDim2.new(0, 66, 0, 50)
  52. Credits.Font = Enum.Font.SourceSans
  53. Credits.Text = "Credits to: CharWar"
  54. Credits.TextColor3 = Color3.new(1, 1, 1)
  55. Credits.TextScaled = true
  56. Credits.TextSize = 14
  57. Credits.TextWrapped = true
  58.  
  59. Kill.Name = "Kill"
  60. Kill.Parent = SecondTutorialFrame
  61. Kill.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  62. Kill.Position = UDim2.new(0.125, 0, 0.0833333358, 0)
  63. Kill.Size = UDim2.new(0, 66, 0, 18)
  64. Kill.Font = Enum.Font.SourceSans
  65. Kill.Text = "Kill"
  66. Kill.TextColor3 = Color3.new(1, 1, 1)
  67. Kill.TextScaled = true
  68. Kill.TextSize = 14
  69. Kill.TextWrapped = true
  70. Kill.MouseButton1Click:connect(function()
  71. game.Players[PlayerName.Text].Character.Humanoid.Health = 0
  72. end)
  73.  
  74. TutorialScrollingFrame.Name = "TutorialScrollingFrame"
  75. TutorialScrollingFrame.Parent = TutorialFrame
  76. TutorialScrollingFrame.BackgroundColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  77. TutorialScrollingFrame.BackgroundTransparency = 0.25
  78. TutorialScrollingFrame.Position = UDim2.new(0.504385948, 0, 0.068965517, 0)
  79. TutorialScrollingFrame.Size = UDim2.new(0, 101, 0, 126)
  80.  
  81. Forcefield.Name = "Forcefield"
  82. Forcefield.Parent = TutorialScrollingFrame
  83. Forcefield.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  84. Forcefield.Size = UDim2.new(0, 66, 0, 19)
  85. Forcefield.Font = Enum.Font.SourceSans
  86. Forcefield.Text = "Forcefield"
  87. Forcefield.TextColor3 = Color3.new(1, 1, 1)
  88. Forcefield.TextScaled = true
  89. Forcefield.TextSize = 14
  90. Forcefield.TextWrapped = true
  91. Forcefield.MouseButton1Click:connect(function()
  92. Instance.new("ForceField", game.Players.LocalPlayer.Character)
  93. end)
  94.  
  95. God.Name = "God"
  96. God.Parent = TutorialScrollingFrame
  97. God.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  98. God.Position = UDim2.new(0, 0, 0.0793650821, 0)
  99. God.Size = UDim2.new(0, 66, 0, 19)
  100. God.Font = Enum.Font.SourceSans
  101. God.Text = "God"
  102. God.TextColor3 = Color3.new(1, 1, 1)
  103. God.TextScaled = true
  104. God.TextSize = 14
  105. God.TextWrapped = true
  106. God.MouseButton1Click:connect(function()
  107. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  108. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement