#Guys So I made a script where everyone is 1st person locked but I want to make owner only 3rd person
6 messages · Page 1 of 1 (latest)
If I understand what you want to do you can try this (use UserID instead 'cause if anybody else would have your name they would get Third Person too)
Put this script into a local script that is in StarterGui:
local OwnerId = "your user ID here"
local player = game:GetService("Players").LocalPlayer
while wait(1) do
if player.UserId == OwnerId then
player.CameraMode = Enum.CameraMode.Classic
else
player.CameraMode = Enum.CameraMode.LockFirstPerson
end
end
This will lock anybody that doesn't have your UserID (which is totally unique) to first person, but you will have classic roblox camera (making it able for you to go to first person or stay in third)
please let me know @north quail if there are any errors with this :)
I will try it soon thanks
** You are now Level 3! **
Sorry guys both of the scripts that u gave doesn't work