About 457,000 results
Open links in new tab
  1. Simple First and Third Person Camera Module - Roblox

    May 1, 2025 · This module provides a basic, scriptable camera system for Roblox games, allowing players to switch between first-person and third-person perspectives with smooth …

  2. The correct way to do CharacterAdded and PlayerAdded - Roblox

    Jan 4, 2025 · The CharacterAdded and PlayerAdded scripting events are a beginner’s trap! You are almost guaranteed to run into issues the first time using them. I’ve seen this issue pop up …

  3. How to make player lock first person? - Roblox

    May 9, 2022 · Learn how to lock a player's camera to first-person mode in Roblox using scripting techniques and StarterPlayer settings.

  4. How to make my body show in first person? - Roblox

    Jan 18, 2020 · Although I don’t recommend you changing the FPMaximumDistance variable since 0.6 is by far the proper number to determine a first person zoom. You can change the …

  5. Force users into first person - Scripting Support - Roblox

    Mar 2, 2020 · Hello I want make shooting game and I don’t know how to force people in first person. If you know please reply <3 Thanks

  6. How do I tell when a player goes in first person? - Roblox

    Jul 17, 2023 · As said in the title I would like to know how to make it so I can tell when the player goes in first person. This probably isnt hard but I want to know! I coulndt find a post on this for …

  7. Body visible in first person - Scripting Support - Roblox

    Aug 1, 2023 · local character = player.Character for _, part in character:GetDescendants() do if part:IsA("BasePart") then part.LocalTransparencyModifier = 0 end end Though the drawback …

  8. Make arms visible in first person - Scripting Support - Roblox

    Mar 25, 2020 · The old method of run service and localtransparencymodifier no longer works. Is there a way to make arms visible without making fake arms? I’d like to preserve the shirt the …

  9. How could I instantly lock the player's camera to first person

    Nov 14, 2023 · How could I instantly lock the player’s camera to first person? If I just change the CameraMode to LockFirstPerson while the player is in third person camera it does not …

  10. How do I detect if a player is in first person? - Roblox

    Mar 13, 2020 · I want to run this code when it is detected the client has went into first person. How would I go about doing this? local player = game.Players.LocalPlayer …