So my game based on menu GUI, and all what i need it's change player's cam position. How to do this?
if you mean that the player's camera change when they press the gui, then
local cam = workspace.CurrentCamera script.Parent.MouseButton1Down:Connect(function() cam.CFrame = CFrame.New(10,10,10) -- Change the 10 to the camera position end)
Sorry if this doesn't work. New Scripter