Freecam wont go away

I have a game caleld “Throw Bricks at People”, super fun, but while im working on an update i rememebred a freecam i tried out from the freemodels. its not awful or anything, but i dont know how im supposed to get rid of it..

the big problem is that it exists. i want to delete it, but i cant find where its coming from. its called “Freecam” in the playergui, with its script under the gui it makes. i dont know how to trace it, and its not in my StarterGui.

ive tried using “Find in Place”, nothing comes up typing things like “freecam” or “camera”, ive tried looking through all of my local and server scripts, and ive tried looking up issues like this, but so far nada


Freecam is actually generated by Roblox. you cannot delete it if it wasn’t copied and pasted into StarterGui.

2 Likes

really? does that mean its owner only or can everyone use it?

It’s owner only

Hey there! The freecam script you’re seeing is in-built into Roblox games. Only the owner and developers can use the freecam (Shift + P).

If you would like it accessible to all players, you can copy the Freecam GUI from the playtest and simply paste it into StarterGui in edit mode. Hope that helps!

If you want to disable it completely, you can simply create a local script with this code:

local Players = game:GetService("Players")
local player = Players.LocalPlayer

local PlayerGui = player:WaitForChild("PlayerGui")

if PlayerGui then
    local freecam = PlayerGui:WaitForChild("Freecam") 
    if freecam then 
        freecam:Destroy() 
    end
end

Freecam is for you as the developer. Only you can use it in your game. I used to make a script to delete it before I understood that .. :roll_eyes:

This doesn’t actually work, the Freecam system still gets added.

You would need to use a script that detects and removes it when unwanted.

Oh, right. I forgot that it isn’t like the animate script. I will edit my reply.

1 Like

roblox automatically places it inside players who have studio access, same people who can access the developer console in-game

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.