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?
local Camera = game.Workspace.Camera local Player = game.Players.LocalPlayer script.Parent.MouseButton1Click:connect(function() Camera.CameraType = "Watch"
Just do this:
game.Players.PlayerAdded(function(plr) -- if player added plr.CurrentCamera.CameraType = "Watch" -- change it to watch 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