I’ll keep it short, we all know shift lock, I’m trying to get a script like it and impliment it where you are automatically in that mode.
My current code:
local char = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
local Camera = workspace.CurrentCamera
game:GetService('RunService').RenderStepped:Connect(function()
char:WaitForChild('HumanoidRootPart').CFrame = Camera.CFrame
end)
This works in all, but it flings me off my map and I’m not sure how to CFrame the RootPart correctly so that it correctly rotates. Thanks!