Force 3rd Person code in roblox
Arsenal Keyless
Force 3rd Person code in roblox
👤 alexriderr 👁 82 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
Views82
Likes0
PublishedAug 25, 2026
🎮 Play Game on Roblox
🕐 Recent Scripts
Steal an Egg for Squishy Dumplings script keyless OP
Steal an Egg for Squishy Dumplings script keyless OP
Steal an Egg for Squishy Dumplings! • 👁 5
Keyless
Merge a Dino script keyless | auto merge, auto buy upgrades
Merge a Dino script keyless | auto merge, auto buy upgrades
Merge a Dino • 👁 6
Keyless
Steal a Giant Egg script keyless (Tora isme) | auto steal, auto place
Steal a Giant Egg script keyless (Tora isme) | auto steal, auto place
Steal a Giant Egg • 👁 8
Keyless
Las V4quitas RUNAWAYS script keyless | Loot, Automation
Las V4quitas RUNAWAYS script keyless | Loot, Automation
RUNAWAYS • 👁 11
Keyless
Project Delta script (IDENTICAL)
Project Delta script (IDENTICAL)
Project Delta • 👁 10
Keyless