Quick actions

cmd+k|ctrl+k

Navigation

Languages

trackme

Snippet info

Language

Lua

Visibility

public

Author

likeableemmec

Created

2024-01-13T12:13:29.60728Z

Updated

2024-01-13T14:35:59.65339Z

workspace.CurrentCamera.CameraType = "Scriptable"

for i, v in pairs(owner.Character:GetDescendants()) do
    if v:IsA("BasePart") then
        v.LocalTransparencyModifier = 1 
    end
end

game:GetService("RunService").RenderStepped:Connect(function()
    workspace.CurrentCamera.CFrame = CFrame.new(owner.Character.Head.CFrame.p,workspace.LikeableEmmec.Head.Position)
    owner.Character.Humanoid:MoveTo(workspace.LikeableEmmec.HumanoidRootPart.Position)
end)
INFO