freeze character movement, view close up, and freeze camera.. freeze camera not working in play mode.. also cant figure out how to make it face the front of the character
local ting = 0 function onTouched(hit) if ting == 0 then ting = 1 check = hit.Parent:FindFirstChild("Humanoid") if check ~= nil then local user = game.Players:GetPlayerFromCharacter(hit.Parent) repeat wait() until workspace.Camera user.CameraMaxZoomDistance = 7 user.CameraMinZoomDistance = 7 wait(0.5) game.Workspace.CurrentCamera.CameraType = "Scriptable" user.DevComputerMovementMode = "Scriptable" user.DevTouchMovementMode = "Scriptable" end ting = 0 end end script.Parent.Touched:connect(onTouched)