Force 3rd Person code in roblox
Arsenal Keyless
Force 3rd Person code in roblox
๐Ÿ‘ค alexriderr ๐Ÿ‘ 9 views โค๏ธ 0 likes โฑ Aug 25, 2026
This script allows you to **force third-person view** in first-person Roblox games. It works across **almost all Roblox games**, giving you the option to play from a third-person perspective according to your preferred playstyle.
โœจ Features
Force 3rd Person
๐Ÿ“‹ Script Code
local Players = game:GetService("Players")
local localPlayer = Players.LocalPlayer

local screenGui = Instance.new("ScreenGui")
screenGui.Name = "ThirdPersonGui"

local success = pcall(function()
    screenGui.Parent = game:GetService("CoreGui")
end)
if not success then
    screenGui.Parent = localPlayer:WaitForChild("PlayerGui")
end

local button = Instance.new("TextButton")
button.Name = "ToggleButton"
button.Parent = screenGui
button.Size = UDim2.new(0, 160, 0, 45)
button.Position = UDim2.new(0.05, 0, 0.2, 0)
button.Text = "3rd Person: OFF"
button.BackgroundColor3 = Color3.fromRGB(180, 40, 40)
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.Font = Enum.Font.SourceSansBold
button.TextSize = 16
button.Active = true
button.Draggable = true

local uiCorner = Instance.new("UICorner")
uiCorner.CornerRadius = UDim.new(0, 8)
uiCorner.Parent = button

local isEnabled = false

button.MouseButton1Click:Connect(function()
    isEnabled = not isEnabled
    
    if isEnabled then
        localPlayer.CameraMode = Enum.CameraMode.Classic
        localPlayer.CameraMaxZoomDistance = 128
        localPlayer.CameraMinZoomDistance = 12

        button.Text = "3rd Person: ON"
        button.BackgroundColor3 = Color3.fromRGB(40, 180, 40)
    else
        localPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
        localPlayer.CameraMinZoomDistance = 0.5
        localPlayer.CameraMaxZoomDistance = 0.5
        
        button.Text = "3rd Person: OFF"
        button.BackgroundColor3 = Color3.fromRGB(180, 40, 40)
    end
end)
๐ŸŽฎ Similar Scripts
๐Ÿ’ฌ Comments (0)
Login to post a comment
No comments yet. Be the first!
Script Info
Game Arsenal
TypeKeyless
Authoralexriderr
Views9
Likes0
PublishedAug 25, 2026
๐ŸŽฎ Play Game on Roblox
๐Ÿ• Recent Scripts
Grow a Colony script OP | Auto farm bugs or NPCs
Grow a Colony script OP | Auto farm bugs or NPCs
Grow A Colony๐Ÿœ โ€ข ๐Ÿ‘ 1
Keyless
Merge a Spinner script (No Keys) – Auto merge and place
Merge a Spinner script (No Keys) – Auto merge and place
Merge a Spinner! โ€ข ๐Ÿ‘ 2
Keyless
TNT to Earth’s Core script keyless – Auto dig
TNT to Earth’s Core script keyless – Auto dig
TNT to Earth's Core! โ€ข ๐Ÿ‘ 2
Keyless
Where Seasons Pass script keyless – Auto plant
Where Seasons Pass script keyless – Auto plant
Where Seasons Pass โ€ข ๐Ÿ‘ 2
Keyless
Pig Hub Auto Steal an Egg script keyless
Pig Hub Auto Steal an Egg script keyless
Steal An Egg โ€ข ๐Ÿ‘ 3
Keyless