Advertisement
matcoolwat

Untitled

Jun 7th, 2018
1,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.46 KB | None | 0 0
  1.  
  2. -- Objects
  3.  
  4. local MainSTUF = Instance.new("ScreenGui")
  5. local log = Instance.new("Frame")
  6. local login = Instance.new("TextButton")
  7. local xit = Instance.new("TextButton")
  8. local user = Instance.new("TextBox")
  9. local pass = Instance.new("TextBox")
  10. local tip = Instance.new("TextLabel")
  11. local tip2 = Instance.new("TextLabel")
  12. local main = Instance.new("Frame")
  13. local status = Instance.new("TextLabel")
  14. local disabled = Instance.new("TextLabel")
  15. local toggle = Instance.new("TextButton")
  16.  
  17. -- Properties
  18.  
  19. MainSTUF.Name = "MainSTUF"
  20. MainSTUF.Parent = game.CoreGui
  21.  
  22. log.Name = "log"
  23. log.Parent = MainSTUF
  24. log.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  25. log.Position = UDim2.new(-1.3038516e-08, 0, 0.589580715, 0)
  26. log.Size = UDim2.new(0, 254, 0, 323)
  27. log.Draggable = true
  28. log.Active = true
  29.  
  30. login.Name = "login"
  31. login.Parent = log
  32. login.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  33. login.Position = UDim2.new(0.106299214, 0, 0.770897806, 0)
  34. login.Size = UDim2.new(0, 200, 0, 50)
  35. login.Font = Enum.Font.Fantasy
  36. login.Text = "Login"
  37. login.TextColor3 = Color3.new(0, 0, 0)
  38. login.TextSize = 14
  39. login.MouseButton1Click:connect(function()
  40. if user.Text == "TheProGlitcher" and pass.Text == "isubbed" then
  41. main.Visible = true
  42. log.Visible = false
  43. end
  44. end)
  45.  
  46. xit.Name = "xit"
  47. xit.Parent = log
  48. xit.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  49. xit.Position = UDim2.new(0.925196826, 0, 0, 0)
  50. xit.Size = UDim2.new(0, 19, 0, 23)
  51. xit.Font = Enum.Font.SourceSans
  52. xit.Text = ""
  53. xit.TextColor3 = Color3.new(0, 0, 0)
  54. xit.TextSize = 14
  55. xit.MouseButton1Click:connect(function()
  56. log.Visible = false
  57. end)
  58.  
  59. user.Name = "user"
  60. user.Parent = log
  61. user.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  62. user.BorderSizePixel = 0
  63. user.Position = UDim2.new(0.106299214, 0, 0.238390088, 0)
  64. user.Size = UDim2.new(0, 193, 0, 63)
  65. user.Font = Enum.Font.SourceSans
  66. user.Text = "Username"
  67. user.TextColor3 = Color3.new(0, 0, 0)
  68. user.TextSize = 14
  69.  
  70. pass.Name = "pass"
  71. pass.Parent = log
  72. pass.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  73. pass.BorderSizePixel = 0
  74. pass.Position = UDim2.new(0.0767716542, 0, 0.428792566, 0)
  75. pass.Size = UDim2.new(0, 208, 0, 44)
  76. pass.Font = Enum.Font.SourceSans
  77. pass.Text = "Password"
  78. pass.TextColor3 = Color3.new(0, 0, 0)
  79. pass.TextSize = 14
  80.  
  81. tip.Name = "tip"
  82. tip.Parent = log
  83. tip.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  84. tip.BorderSizePixel = 0
  85. tip.Position = UDim2.new(0.108267717, 0, -0.00309597515, 0)
  86. tip.Size = UDim2.new(0, 200, 0, 50)
  87. tip.Font = Enum.Font.SourceSans
  88. tip.Text = "Tip: You Get the Username And Pass Here"
  89. tip.TextColor3 = Color3.new(0, 0, 0)
  90. tip.TextSize = 14
  91.  
  92. tip2.Name = "tip2"
  93. tip2.Parent = log
  94. tip2.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  95. tip2.BorderSizePixel = 0
  96. tip2.Position = UDim2.new(0.11023622, 0, 0.111455098, 0)
  97. tip2.Size = UDim2.new(0, 200, 0, 13)
  98. tip2.Font = Enum.Font.SourceSans
  99. tip2.Text = "https://discord.gg/2jCFqrz"
  100. tip2.TextColor3 = Color3.new(0, 0, 0)
  101. tip2.TextSize = 14
  102.  
  103. main.Name = "main"
  104. main.Parent = MainSTUF
  105. main.BackgroundColor3 = Color3.new(1, 1, 1)
  106. main.Position = UDim2.new(0.443121701, 0, 0.687420607, 0)
  107. main.Size = UDim2.new(0, 211, 0, 127)
  108. main.Visible = false
  109. main.Draggable = true
  110. main.Active = true
  111.  
  112. status.Name = "status"
  113. status.Parent = main
  114. status.BackgroundColor3 = Color3.new(1, 1, 1)
  115. status.BorderSizePixel = 0
  116. status.Position = UDim2.new(0.123222746, 0, 0.606636047, 0)
  117. status.Size = UDim2.new(0, 75, 0, 50)
  118. status.Font = Enum.Font.SourceSans
  119. status.Text = "Status:"
  120. status.TextColor3 = Color3.new(0, 0, 0)
  121. status.TextScaled = true
  122. status.TextSize = 14
  123. status.TextWrapped = true
  124.  
  125. disabled.Name = "disabled"
  126. disabled.Parent = main
  127. disabled.BackgroundColor3 = Color3.new(1, 1, 1)
  128. disabled.BorderSizePixel = 0
  129. disabled.Position = UDim2.new(0.478673011, 0, 0.606636047, 0)
  130. disabled.Size = UDim2.new(0, 91, 0, 50)
  131. disabled.Font = Enum.Font.SourceSans
  132. disabled.Text = "Disabled"
  133. disabled.TextColor3 = Color3.new(0, 0, 0)
  134. disabled.TextScaled = true
  135. disabled.TextSize = 14
  136. disabled.TextWrapped = true
  137.  
  138. toggle.Name = "toggle"
  139. toggle.Parent = main
  140. toggle.BackgroundColor3 = Color3.new(1, 1, 1)
  141. toggle.BorderSizePixel = 0
  142. toggle.Position = UDim2.new(0.0497630313, 0, 0.235883594, 0)
  143. toggle.Size = UDim2.new(0, 200, 0, 50)
  144. toggle.Font = Enum.Font.SourceSans
  145. toggle.Text = "Toggle"
  146. toggle.TextColor3 = Color3.new(0, 0, 0)
  147. toggle.TextScaled = true
  148. toggle.TextSize = 14
  149. toggle.TextWrapped = true
  150. toggle.MouseButton1Click:connect(function()
  151. disabled.Text = "Enabled"
  152. game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"Script not by me but the gui and other scripts are by me(TheProGlitcher, aka epicmatthew22 on v3rmillion)","Red")
  153. local Player = game:GetService'Players'.LocalPlayer;
  154. local UIS = game:GetService'UserInputService';
  155.  
  156. _G.JumpHeight = 50;
  157.  
  158. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  159.  
  160. UIS.InputBegan:connect(function(UserInput)
  161. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  162. Action(Player.Character.Humanoid, function(self)
  163. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  164. Action(self.Parent.HumanoidRootPart, function(self)
  165. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  166. end)
  167. end
  168. end)
  169. end
  170. end)
  171. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement