ADVERTISEMENTREMOVE ADS
speed script
46,907 views
Universal script•
3 months ago

Script Preview
Description
fast really fast so fast you cant get hit llllllllool nice
Tested with
ADVERTISEMENTREMOVE ADS
28 Lines • 633 Bytes
local Players = game:GetService("Players")
local FAST_SPEED = 49
local function setFastSpeed(character)
local humanoid = character:FindFirstChildOfClass("Humanoid")
if humanoid then
humanoid.WalkSpeed = FAST_SPEED
end
end
local function onCharacterAdded(character)
setFastSpeed(character)
end
local function onPlayerAdded(player)
player.CharacterAdded:Connect(onCharacterAdded)
if player.Character then
setFastSpeed(player.Character)
end
end
Players.PlayerAdded:Connect(onPlayerAdded)
for _, player in Players:GetPlayers() do
onPlayerAdded(player)
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments