RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a script so the player can see their body and arms"
-- local script (StarterCharacterScripts) local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local function enableFirstPerson() local humanoid = character:WaitForChild("Humanoid") local head = character:WaitForChild("Head") local leftArm = character:WaitForChild("Left Arm") local rightArm = character:WaitForChild("Right Arm") humanoid.CameraOffset = Vector3.new(0, 0, 0) head.Transparency = 0 leftArm.Transparency = 0 rightArm.Transparency = 0 end player.CharacterAdded:Connect(enableFirstPerson) enableFirstPerson()