hoffmvn2

Universal Speed Script

Dec 23rd, 2021 (edited)
1,590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. --// Made by PigeonDude
  2.  
  3.  
  4. -- Instances:
  5.  
  6. local Speed = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local SpeedCounter = Instance.new("TextLabel")
  9. local Add = Instance.new("TextButton")
  10. local Subtract = Instance.new("TextButton")
  11. local ApplySpeed = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. Speed.Name = "Speed"
  16. Speed.Parent = game.CoreGui
  17. Speed.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. Main.Name = "Main"
  20. Main.Parent = Speed
  21. Main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  22. Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  23. Main.BorderSizePixel = 5
  24. Main.Position = UDim2.new(0.377512574, 0, 0.774731815, 0)
  25. Main.Size = UDim2.new(0.201758757, 0, 0.206078663, 0)
  26. Main.Active = true
  27. Main.Draggable = true
  28.  
  29. SpeedCounter.Name = "SpeedCounter"
  30. SpeedCounter.Parent = Main
  31. SpeedCounter.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  32. SpeedCounter.BorderColor3 = Color3.fromRGB(0, 0, 0)
  33. SpeedCounter.BorderSizePixel = 5
  34. SpeedCounter.Position = UDim2.new(0.258418739, 0, 0.504353046, 0)
  35. SpeedCounter.Size = UDim2.new(0.477905959, 0, 0.494064152, 0)
  36. SpeedCounter.Font = Enum.Font.GothamBlack
  37. SpeedCounter.Text = 16
  38. SpeedCounter.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. SpeedCounter.TextScaled = true
  40. SpeedCounter.TextSize = 14.000
  41. SpeedCounter.TextStrokeTransparency = 0.000
  42. SpeedCounter.TextWrapped = true
  43.  
  44. Add.Name = "Add"
  45. Add.Parent = Main
  46. Add.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  47. Add.BorderColor3 = Color3.fromRGB(0, 0, 0)
  48. Add.BorderSizePixel = 5
  49. Add.Position = UDim2.new(0.759651423, 0, 0.55640626, 0)
  50. Add.Size = UDim2.new(0.240348548, 0, 0.438998699, 0)
  51. Add.Font = Enum.Font.GothamBlack
  52. Add.Text = "+"
  53. Add.TextColor3 = Color3.fromRGB(255, 255, 255)
  54. Add.TextScaled = true
  55. Add.TextSize = 14.000
  56. Add.TextStrokeTransparency = 0.000
  57. Add.TextWrapped = true
  58. Add.MouseButton1Click:Connect(function()
  59. SpeedCounter.Text += 1
  60. end)
  61.  
  62. Subtract.Name = "Subtract"
  63. Subtract.Parent = Main
  64. Subtract.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  65. Subtract.BorderColor3 = Color3.fromRGB(0, 0, 0)
  66. Subtract.BorderSizePixel = 5
  67. Subtract.Position = UDim2.new(0, 0, 0.556406319, 0)
  68. Subtract.Size = UDim2.new(0.240348548, 0, 0.438998699, 0)
  69. Subtract.Font = Enum.Font.GothamBlack
  70. Subtract.Text = "-"
  71. Subtract.TextColor3 = Color3.fromRGB(255, 255, 255)
  72. Subtract.TextScaled = true
  73. Subtract.TextSize = 14.000
  74. Subtract.TextStrokeTransparency = 0.000
  75. Subtract.TextWrapped = true
  76. Subtract.MouseButton1Click:Connect(function()
  77. SpeedCounter.Text -= 1
  78. end)
  79.  
  80. ApplySpeed.Name = "ApplySpeed"
  81. ApplySpeed.Parent = Main
  82. ApplySpeed.BackgroundColor3 = Color3.fromRGB(60, 255, 89)
  83. ApplySpeed.BorderColor3 = Color3.fromRGB(0, 0, 0)
  84. ApplySpeed.BorderSizePixel = 5
  85. ApplySpeed.Size = UDim2.new(0.999999881, 0, 0.460751772, 0)
  86. ApplySpeed.Font = Enum.Font.GothamBlack
  87. ApplySpeed.Text = "Apply Speed"
  88. ApplySpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  89. ApplySpeed.TextScaled = true
  90. ApplySpeed.TextSize = 14.000
  91. ApplySpeed.TextStrokeTransparency = 0.000
  92. ApplySpeed.TextWrapped = true
  93. ApplySpeed.MouseButton1Click:Connect(function()
  94. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = SpeedCounter.Text
  95. end)
Add Comment
Please, Sign In to add comment