Is it possible to turn off 3d rendering

so i was wondering if there was a way to disable 3d rendering for some time since it will be ui only for quite a while during which there will be other parts moving around character too so i cant just keep 0 parts in front of the player or move player cam somewhere else basically i just wanna know is it possible to turn of 3d rendering

1 Like

shove everything in serverstorage while action is running
(probably unreliable and not what you were looking for)

2 Likes

No, there isn’t a direct function to stop 3d rendering as that can break the entire engine. Rather, teleport the user to a different zone (an invisible area with no parts or a different world) and StreamingEnabled turned on so that the client does not render parts nearby

2 Likes
game:GetService("RunService"):Set3dRenderingEnabled(false)
3 Likes

noob.

game:GetService(“RunService”):Set3dRenderingEnabled(false)

3 Likes

Set3dRenderingEnabled is locked behind RobloxScriptSecurity. Trying to call the function in-game will result in an error unless you are calling the function in a privileged environment like a CoreScript.

3 Likes