how to turn off shawdowing in roblox forsaken
To turn off shadows in Roblox Forsaken , the usual fix is in Roblox’s lighting settings: open the game’s settings or editor-side lighting options and disable Global Shadows. If you only want to remove shadows from one object, select that part and turn off Cast Shadow instead.
What to change
- For all shadows: set Lighting > GlobalShadows to off.
- For one object: select the part/model and disable Cast Shadow in its properties.
- For player characters: scripts can loop through character parts and set
CastShadow = false.
Quick note
If you meant the player’s own graphics settings rather than a Roblox Studio setting, Roblox doesn’t usually offer a simple “no shadows” toggle in every experience; it depends on how the game is built. The most reliable fix in a game is still the in-game lighting or graphics option, if Forsaken provides one.
Example
A common setup is:
Lighting.GlobalShadows = falsefor the whole game.
part.CastShadow = falsefor a specific object.
In short: try Global Shadows off first, and use Cast Shadow only if you need to target one thing.