I’m currently testing the GameplayPaused property and for some reason even though StreamingEnabled is enabled, I’m getting an error saying Unable to assign property GameplayPaused. Script write access is restricted. Here’s the code:
game.Players.PlayerAdded:Connect(function(players)
wait(2);
players.GameplayPaused = true;
end)