RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a script that makes you first person and make's you walk in a realistic way"
-- local script local player = game.Players.LocalPlayer local humanoid = player.Character.Humanoid local firstPerson = false function toggleFirstPerson() if firstPerson then firstPerson = false humanoid.WalkSpeed = 16 humanoid.JumpPower = 50 else firstPerson = true humanoid.WalkSpeed = 8 humanoid.JumpPower = 25 end end script.Parent.MouseButton1Click:Connect(toggleFirstPerson)