Advertisement
RageRelicYT

JumpWalk Original

Jul 29th, 2021
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local JumpPower = Instance.new("TextButton")
  4. local TextBox = Instance.new("TextBox")
  5. local WalkSpeed = Instance.new("TextButton")
  6. local Amount = Instance.new("TextLabel")
  7. local Credits = Instance.new("TextLabel")
  8. local Close = Instance.new("TextButton")
  9. local OpenMain = Instance.new("Frame")
  10. local Open = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = ScreenGui
  18. Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  19. Main.BorderColor3 = Color3.fromRGB(255, 0, 4)
  20. Main.BorderSizePixel = 5
  21. Main.Position = UDim2.new(0.403238237, 0, 0.320941746, 0)
  22. Main.Size = UDim2.new(0, 250, 0, 248)
  23. Main.Active = true
  24. Main.Draggable = true
  25.  
  26. JumpPower.Name = "JumpPower"
  27. JumpPower.Parent = Main
  28. JumpPower.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  29. JumpPower.BorderColor3 = Color3.fromRGB(27, 42, 53)
  30. JumpPower.BorderSizePixel = 0
  31. JumpPower.Position = UDim2.new(0.0745134279, 0, 0.395917624, 0)
  32. JumpPower.Size = UDim2.new(0, 212, 0, 50)
  33. JumpPower.Font = Enum.Font.SourceSans
  34. JumpPower.Text = "JumpPower"
  35. JumpPower.TextColor3 = Color3.fromRGB(255, 255, 255)
  36. JumpPower.TextSize = 25.000
  37. JumpPower.MouseButton1Down:connect(function()
  38. game.Players.LocalPlayer.Character.Humanoid.JumpPower = TextBox.Text
  39. end)
  40.  
  41. TextBox.Parent = Main
  42. TextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  43. TextBox.BorderSizePixel = 0
  44. TextBox.Position = UDim2.new(0.0745134279, 0, 0.158662125, 0)
  45. TextBox.Size = UDim2.new(0, 212, 0, 51)
  46. TextBox.Font = Enum.Font.SourceSans
  47. TextBox.PlaceholderText = "100"
  48. TextBox.Text = "100"
  49. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  50. TextBox.TextSize = 25.000
  51.  
  52. WalkSpeed.Name = "WalkSpeed"
  53. WalkSpeed.Parent = Main
  54. WalkSpeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  55. WalkSpeed.BorderSizePixel = 0
  56. WalkSpeed.Position = UDim2.new(0.0745134279, 0, 0.626809478, 0)
  57. WalkSpeed.Size = UDim2.new(0, 212, 0, 50)
  58. WalkSpeed.Font = Enum.Font.SourceSans
  59. WalkSpeed.Text = "WalkSpeed"
  60. WalkSpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  61. WalkSpeed.TextSize = 25.000
  62. WalkSpeed.MouseButton1Down:connect(function()
  63. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = TextBox.Text
  64. end)
  65.  
  66. Amount.Name = "Amount"
  67. Amount.Parent = Main
  68. Amount.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  69. Amount.BackgroundTransparency = 1.000
  70. Amount.BorderColor3 = Color3.fromRGB(27, 42, 53)
  71. Amount.BorderSizePixel = 0
  72. Amount.Position = UDim2.new(0.16284965, 0, 0.0394865014, 0)
  73. Amount.Size = UDim2.new(0, 167, 0, 23)
  74. Amount.Font = Enum.Font.SourceSans
  75. Amount.Text = "Amount:"
  76. Amount.TextColor3 = Color3.fromRGB(255, 255, 255)
  77. Amount.TextSize = 20.000
  78.  
  79. Credits.Name = "Credits"
  80. Credits.Parent = Main
  81. Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  82. Credits.BackgroundTransparency = 1.000
  83. Credits.BorderColor3 = Color3.fromRGB(27, 42, 53)
  84. Credits.BorderSizePixel = 0
  85. Credits.Position = UDim2.new(0.166849628, 0, 0.86601609, 0)
  86. Credits.Size = UDim2.new(0, 167, 0, 23)
  87. Credits.Font = Enum.Font.SourceSans
  88. Credits.Text = "JumpWalk by AryanAgain#9999"
  89. Credits.TextColor3 = Color3.fromRGB(255, 255, 255)
  90. Credits.TextSize = 14.000
  91.  
  92. Close.Name = "Close"
  93. Close.Parent = Main
  94. Close.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  95. Close.Position = UDim2.new(0.895944476, 0, -0.000213623047, 0)
  96. Close.Size = UDim2.new(0, 26, 0, 24)
  97. Close.Font = Enum.Font.SourceSans
  98. Close.Text = "X"
  99. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  100. Close.TextSize = 14.000
  101. Close.MouseButton1Down:connect(function()
  102. Main.Visible = false
  103. OpenMain.Visible = true
  104. end)
  105.  
  106. OpenMain.Name = "OpenMain"
  107. OpenMain.Parent = ScreenGui
  108. OpenMain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  109. OpenMain.Position = UDim2.new(0, 0, 0.332094163, 0)
  110. OpenMain.Size = UDim2.new(0, 112, 0, 48)
  111. OpenMain.Active = true
  112. OpenMain.Draggable = true
  113.  
  114. Open.Name = "Open"
  115. Open.Parent = OpenMain
  116. Open.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  117. Open.Position = UDim2.new(-0.00285720825, 0, -0.00692081451, 0)
  118. Open.Size = UDim2.new(0, 112, 0, 48)
  119. Open.Font = Enum.Font.SourceSans
  120. Open.Text = "Open"
  121. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  122. Open.TextSize = 25.000
  123. Open.MouseButton1Down:connect(function()
  124. Main.Visible = true
  125. OpenMain.Visible = false
  126. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement