I've tried this in a normal script inside workspace
01 | local player game.Players:GetPlayers() |
02 |
03 | while true do |
04 | if player.Playing.Value = = 1 then |
05 | player.CameraMode = "LockFirstPerson" |
06 | elseif player.Playing.Value = = 0 then |
07 | player.CameraMode = "Classic" |
08 | wait(. 5 ) |
09 | end |
10 | end |
I tried to look it up but I couldn't find anything, so I hope you guys can help.
1 | local player = game.Players:GetPlayers() |
not
1 | local player game.Players:GetPlayers() |