1 | local player = game:GetService( "Players" ).LocalPlayer |
This is the script i use for player variables, somehow when i test with emulator it says its a nil value, althrough i tried with wait(0.1), and repeat wait() until player ~= nil, but it keeps doing that.
First of all, LocalPlayer should only be used on LocalScripts. If you're using with Scripts, you might want to make this:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | -- actions with the player |
3 | end ) |
If you're using actual LocalScripts, try this:
1 | repeat wait() until game.Players |
2 | repeat wait() until game.Players.LocalPlayer |
3 |
4 | -- actions with localplayer |
This always works for me. Test and let me know something :P