ADVERTISEMENTREMOVE ADS
Game icon

Walk Fast stacking button

a literal baseplate.
10 months ago
Script preview thumbnail
Script Preview

Description

It's a button that makes you walk 10 times faster every time you click it

Credits To ErnuCXO on YouTube

Features:

  • Walkspeed
  • Button
  • Keyless
ADVERTISEMENTREMOVE ADS
11 Lines • 416 Bytes
Raw
local player = game.Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.Parent = player.PlayerGui
local button = Instance.new("TextButton")
button.Parent = gui
button.Position = UDim2.new(0, 0, 0, 0)
button.Size = UDim2.new(0, 100, 0, 50)
button.Text = "Walk Fast"
button.MouseButton1Click:Connect(function()
player.Character.Humanoid.WalkSpeed = player.Character.Humanoid.WalkSpeed + 10
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS