ADVERTISEMENTREMOVE ADS

speed script

Universal script
3 months ago
Script preview thumbnail
Script Preview

Description

fast really fast so fast you cant get hit llllllllool nice

Tested with

ADVERTISEMENTREMOVE ADS
28 Lines • 633 Bytes
Raw
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

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS