Advertisement
JasonHacks

Simple Commands

Mar 1st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. -- Made by MartinRages#0262 if you change that to your name then you suck :)
  2. -- Farewell Infortality.
  3. -- Version: 2.82
  4. -- Instances:
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Thingything = Instance.new("Frame")
  7. local MainUI = Instance.new("Frame")
  8. local Jumppower = Instance.new("TextBox")
  9. local SetJumppower = Instance.new("TextButton")
  10. local SetWalkSpeed = Instance.new("TextButton")
  11. local WalkSpeed = Instance.new("TextBox")
  12. local CtrlClickTP = Instance.new("TextButton")
  13. local X = Instance.new("TextButton")
  14. local Name = Instance.new("TextLabel")
  15. --Properties:
  16. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Thingything.Name = "Thingy thing"
  20. Thingything.Parent = ScreenGui
  21. Thingything.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  22. Thingything.BorderSizePixel = 0
  23. Thingything.Position = UDim2.new(0.0486798696, 0, 0.47584188, 0)
  24. Thingything.Size = UDim2.new(0, 200, 0, 33)
  25.  
  26. MainUI.Name = "MainUI"
  27. MainUI.Parent = Thingything
  28. MainUI.BackgroundColor3 = Color3.new(0.290196, 0.290196, 0.290196)
  29. MainUI.BackgroundTransparency = 0.12999999523163
  30. MainUI.BorderSizePixel = 0
  31. MainUI.Position = UDim2.new(0, 0, 1, 0)
  32. MainUI.Size = UDim2.new(0, 200, 0, 115)
  33.  
  34. Jumppower.Name = "Jumppower"
  35. Jumppower.Parent = MainUI
  36. Jumppower.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  37. Jumppower.BorderSizePixel = 0
  38. Jumppower.Position = UDim2.new(0.0600000024, 0, 0.0819580704, 0)
  39. Jumppower.Size = UDim2.new(0, 67, 0, 22)
  40. Jumppower.Font = Enum.Font.SourceSansBold
  41. Jumppower.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  42. Jumppower.PlaceholderText = "NUMBER"
  43. Jumppower.Text = ""
  44. Jumppower.TextColor3 = Color3.new(1, 1, 1)
  45. Jumppower.TextSize = 14
  46.  
  47. SetJumppower.Name = "SetJumppower"
  48. SetJumppower.Parent = MainUI
  49. SetJumppower.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  50. SetJumppower.BorderSizePixel = 0
  51. SetJumppower.Position = UDim2.new(0.415000021, 0, 0.0819580704, 0)
  52. SetJumppower.Size = UDim2.new(0, 104, 0, 22)
  53. SetJumppower.Font = Enum.Font.SourceSansBold
  54. SetJumppower.Text = "Set JumpPower"
  55. SetJumppower.TextColor3 = Color3.new(1, 1, 1)
  56. SetJumppower.TextSize = 14
  57. SetJumppower.MouseButton1Click:connect(function()
  58. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Jumppower.Text
  59. end)
  60.  
  61. SetWalkSpeed.Name = "SetWalkSpeed"
  62. SetWalkSpeed.Parent = MainUI
  63. SetWalkSpeed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  64. SetWalkSpeed.BorderSizePixel = 0
  65. SetWalkSpeed.Position = UDim2.new(0.415000021, 0, 0.331045747, 0)
  66. SetWalkSpeed.Size = UDim2.new(0, 104, 0, 22)
  67. SetWalkSpeed.Font = Enum.Font.SourceSansBold
  68. SetWalkSpeed.Text = "Set WalkSpeed"
  69. SetWalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  70. SetWalkSpeed.TextSize = 14
  71. SetWalkSpeed.MouseButton1Click:connect(function()
  72. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkSpeed.Text
  73. end)
  74.  
  75. WalkSpeed.Name = "WalkSpeed"
  76. WalkSpeed.Parent = MainUI
  77. WalkSpeed.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  78. WalkSpeed.BorderSizePixel = 0
  79. WalkSpeed.Position = UDim2.new(0.0600000024, 0, 0.331045747, 0)
  80. WalkSpeed.Size = UDim2.new(0, 67, 0, 22)
  81. WalkSpeed.Font = Enum.Font.SourceSansBold
  82. WalkSpeed.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  83. WalkSpeed.PlaceholderText = "NUMBER"
  84. WalkSpeed.Text = ""
  85. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  86. WalkSpeed.TextSize = 14
  87.  
  88. CtrlClickTP.Name = "CtrlClickTP"
  89. CtrlClickTP.Parent = MainUI
  90. CtrlClickTP.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  91. CtrlClickTP.BorderSizePixel = 0
  92. CtrlClickTP.Position = UDim2.new(0.0600000024, 0, 0.618797958, 0)
  93. CtrlClickTP.Size = UDim2.new(0, 175, 0, 30)
  94. CtrlClickTP.Font = Enum.Font.SourceSansBold
  95. CtrlClickTP.Text = "Press Z to tp"
  96. CtrlClickTP.TextColor3 = Color3.new(1, 1, 1)
  97. CtrlClickTP.TextSize = 14
  98. CtrlClickTP.MouseButton1Click:connect(function()
  99. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
  100. if k == 'z' then
  101. game.Players.LocalPlayer.Character:MoveTo(game.Players.LocalPlayer:GetMouse().hit.p)
  102. end
  103. end)
  104. end)
  105.  
  106. X.Name = "X"
  107. X.BackgroundTransparency = 100
  108. X.Parent = Thingything
  109. X.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  110. X.BorderSizePixel = 0
  111. X.Position = UDim2.new(0.850000024, 0, 0, 0)
  112. X.Size = UDim2.new(0, 30, 0, 30)
  113. X.Font = Enum.Font.SourceSansBold
  114. X.Text = "X"
  115. X.TextColor3 = Color3.new(1, 1, 1)
  116. X.TextScaled = true
  117. X.TextSize = 14
  118. X.TextWrapped = true
  119. X.MouseButton1Click:connect(function()
  120. if MainUI.Visible == true then
  121. MainUI.Visible = false
  122. else
  123. MainUI.Visible = true
  124. end
  125. end)
  126.  
  127.  
  128. Name.Name = "Name"
  129. Name.Parent = Thingything
  130. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  131. Name.BackgroundTransparency = 1
  132. Name.BorderSizePixel = 0
  133. Name.Size = UDim2.new(0, 170, 0, 33)
  134. Name.Font = Enum.Font.SourceSansBold
  135. Name.Text = "Simple CMDS By MartinRages#0262"
  136. Name.TextColor3 = Color3.new(1, 1, 1)
  137. Name.TextScaled = true
  138. Name.TextSize = 14
  139. Name.TextWrapped = true
  140. -- Scripts:
  141. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  142. Text = "[System] Simple gui by MartinRages#0262 i make all sorts of gui's you can request them too. Join my discord server for more script garbage https://discord.gg/uG85c5N";
  143. Font = Enum.Font.SourceSansBold;
  144. Color = Color3.new(184, 10, 13);
  145. FontSize = Enum.FontSize.Size60;
  146. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement