I cannot work out how to find the Players in Workspace
local Players = game.Players:GetPlayers() for i,v in pairs(Players) do v.Charcater -- do stuff with character v -- do stuff with player end
There you go bud
for _,character in pairs(game.Players:GetPlayers()) do character:WaitForChild("Humanoid").WalkSpeed=100 -- Block of code here. end
Imma post what i would do in this case
for i,players in pairs(game.Players:GetChildren())do local myPlayerWork = workspace:FindFirstChild(players.Name) if myPlayerWork then --This to do with the character end end