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
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