I have a script that flips the camera over. I want a gamepass that will flip the camera back over. how would I do this? The local script is in StarterGUI
local RotationSpeed = 0 game["Run Service"].RenderStepped:connect(function() workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame * CFrame.Angles(0,math.rad(RotationSpeed),9.5) end)