Hello im wondering how to make this little camera show when i click the camera object in the workspace.
I dont know if this is a plugin or what it is.
this is the video i found it from showing this.
As you can see there is a camera showing and when he doesnt have the object selected it dissapears! Heres the full video im also not sure if this is the right topic i just wanna know this for a ViewPortFrame thing since im new to them heres the video:
Selection.SelectionChanged:Connect(function()
if table.find(Selection:Get(), workspace.RenderingTest) then
-- make camera object visible
else
-- make camera object invisible
end
end)
and yes, you would have to do this in a plugin if you want it to appear whilst developing.
local Selection = game:GetService('Selection')
Selection.SelectionChanged:Connect(function()
if table.find(Selection:Get(), workspace.RenderingTest) then
-- make camera object visible
end
end)