Hi! I'm making customization script and when player customize himself I want to make camera watch him. How can I make it automatically when he is just joined the game?
1 | local Camera = game.Workspace.Camera |
2 | local Player = game.Players.LocalPlayer |
3 |
4 | script.Parent.MouseButton 1 Click:connect( function () |
5 | Camera.CameraType = "Watch" |
Just do this:
1 | game.Players.PlayerAdded( function (plr) -- if player added |
2 | plr.CurrentCamera.CameraType = "Watch" -- change it to watch |
3 | end ) |
there you go! thank 4 watching c:
edit: it, not our problem, it's was your camera problem. Please check your camera again in the ROBLOX setting, recommended to reset to default.
Just set the CameraType to Watch(without making a script) and once he's done customizing you can make it so the CameraType reverts back to Custom via Script, i guess