So err what I'm trying to do is change all of the players walk speed at a certain point, and not player added/player enter. So like after 15 seconds all players walk speed changes. This is what i tried.. :
1 | wait( 15 ) |
2 | function (changespeed) |
3 | for v_in pairs , do |
4 | game.Players.Walkspeed = 0 |
5 | end |
6 |
7 | changspeed() |
I think it's really wrong that is why i need help :/
What you did wrong:
game.Players
as an individual player (it is actually the holder of individual players).changspeed
was not the name defined, changespeed
was).Code:
01 | wait( 15 ) |
02 |
03 | function changeSpeed() -- the function's name is defined outside of the parenthesis |
04 | for _,v in pairs (game.Players:GetPlayers()) do -- loops through a table of players |
05 | local char = v.Character -- their character |
06 | if char then -- if their character exists |
07 | char:WaitForChild( "Humanoid" ).Walkspeed = 0 -- Walkspeed may need to be 'WalkSpeed', I can't remember currently |
08 | end |
09 | end |
10 | end |
11 |
12 | changeSpeed() |
Hope I helped!
~TDP