Advertisement
Guest User

Made by aQuakoalas

a guest
Mar 22nd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. Player = game.Players.LocalPlayer.Name
  2. local Gui = Instance.new('ScreenGui', game.CoreGui)
  3. Gui.Name = 'MasterConsole'
  4. local Pull = Instance.new('Frame', Gui)
  5. Pull.Name = 'MasterConsole'
  6. Pull.Active = true
  7. Pull.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  8. Pull.BackgroundTransparency = 0.5
  9. Pull.BorderSizePixel = 0
  10. Pull.Position = UDim2.new(0.5,-318,0.5,-92)
  11. Pull.Size = UDim2.new(0,300,0,200)
  12. Pull.Draggable = true
  13. Pull.Style = "Custom"
  14. -- =====================================================================
  15. local PlayerName = Instance.new('TextBox', Pull)
  16. PlayerName.Name = 'PlayerName'
  17. PlayerName.BorderSizePixel = 0
  18. PlayerName.Position = UDim2.new(0,45,0,10)
  19. PlayerName.Size = UDim2.new(0,180,0,30)
  20. PlayerName.Font = 'SourceSans'
  21. PlayerName.FontSize = 'Size18'
  22. PlayerName.Text = 'Player Name'
  23. PlayerName.BackgroundColor3 = Color3.new(0,0,0)
  24. PlayerName.TextColor3 = Color3.new(0,123,255)
  25. PlayerName.TextWrapped = true
  26. -- =====================================================================
  27. local Speed = Instance.new('TextButton', Pull)
  28. Speed.Name = 'Speed'
  29. Speed.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  30. Speed.BackgroundTransparency = 0.3
  31. Speed.BorderSizePixel = 1
  32. Speed.Position = UDim2.new(0,20,0,50)
  33. Speed.Size = UDim2.new(0,100,0,25)
  34. Speed.Font = 'SourceSans'
  35. Speed.FontSize = 'Size18'
  36. Speed.Text = 'WalkSpeed'
  37. Speed.TextColor3 = Color3.new(0,123,255)
  38. Speed.TextWrapped = true
  39. Speed.BorderColor3 = Color3.new(0/255,123/255,255/255)
  40. Speed.TextTransparency = 0.3
  41. Speed.ZIndex = 2
  42.  
  43. -- =====================================================================
  44. local Credit = Instance.new('TextButton', Pull)
  45. Credit.Name = 'aQuakoalas'
  46. Credit.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  47. Credit.BackgroundTransparency = 0.3
  48. Credit.BorderSizePixel = 1
  49. Credit.Position = UDim2.new(0,60,0,130)
  50. Credit.Size = UDim2.new(0,150,0,25)
  51. Credit.Font = 'SourceSans'
  52. Credit.FontSize = 'Size18'
  53. Credit.Text = 'Made by aQuakoalas'
  54. Credit.TextColor3 = Color3.new(0,123,255)
  55. Credit.TextWrapped = true
  56. Credit.BorderColor3 = Color3.new(0/255,123/255,255/255)
  57. Credit.TextTransparency = 0.3
  58. Credit.ZIndex = 2
  59. -- =====================================================================
  60. local SpeedVal = Instance.new('TextBox', Pull)
  61. SpeedVal.Name = 'SpeedVal'
  62. SpeedVal.BorderSizePixel = 0
  63. SpeedVal.Position = UDim2.new(0,140,0,50)
  64. SpeedVal.Size = UDim2.new(0,100,0,25)
  65. SpeedVal.Font = 'SourceSans'
  66. SpeedVal.FontSize = 'Size18'
  67. SpeedVal.Text = 'Speed Value'
  68. SpeedVal.BackgroundColor3 = Color3.new(0,0,0)
  69. SpeedVal.TextColor3 = Color3.new(0,123,255)
  70. SpeedVal.TextWrapped = true
  71. -- =====================================================================
  72. local Gravity = Speed:Clone()
  73. Gravity.Name = 'Gravity'
  74. Gravity.Parent = Pull
  75. Gravity.Position = UDim2.new(0,20,0,90)
  76. Gravity.Text = 'Set Gravity'
  77. -- =====================================================================
  78. local GravityVal = Instance.new('TextBox', Pull)
  79. GravityVal.Name = 'GravityVal'
  80. GravityVal.BorderSizePixel = 0
  81. GravityVal.Position = UDim2.new(0,140,0,90)
  82. GravityVal.Size = UDim2.new(0,100,0,25)
  83. GravityVal.Font = 'SourceSans'
  84. GravityVal.FontSize = 'Size18'
  85. GravityVal.Text = 'Gravity Value'
  86. GravityVal.BackgroundColor3 = Color3.new(0,0,0)
  87. GravityVal.TextColor3 = Color3.new(0,123,255)
  88. GravityVal.TextWrapped = true
  89. -- =====================================================================
  90. Speed.MouseButton1Down:connect(function()
  91. AValue = SpeedVal.Text
  92. local player=game.Players[PlayerName.Text].Character
  93. player.Humanoid:Remove()
  94. Instance.new('Humanoid',player)
  95.  
  96. game.Workspace[PlayerName.Text].Humanoid.WalkSpeed = AValue
  97. end)
  98. -- =====================================================================
  99. Gravity.MouseButton1Down:connect(function()
  100. BValue = GravityVal.Text
  101. game.Workspace.Gravity = BValue
  102. end)
  103. -- =====================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement