#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)

delicate nova
#
local OwnerUserName = "your userame here"
if plr.Name == OwnerUserName then 
plr.Debounces.ThirdPerson.Value = true
``` smth like this
solar sundial
#

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)

solar sundial
#

please let me know @north quail if there are any errors with this :)

north quail
#

I will try it soon thanks

leaden raptorBOT
#

studio** You are now Level 3! **studio

north quail
#

Sorry guys both of the scripts that u gave doesn't work