#help make it dark
1 messages · Page 1 of 1 (latest)
are the walls meshes
you can just play around with game.Lighting, maybe messing with fog would look good, also enabling .GlobalShadows with any lighting sorces of yours, you could get creative too and use tweening services to make your own dynamic lighting
like you could use a tween that makes a light prop or whatever follow your player character with the game.Lighting.Fog being close
make a zone out of a part, in alocal script make it so when its touched the brightness in game.lightning is lowered
idk how...
i want them to need flashlights too see rn u dont need a flashlight
or increase the brightness of a light on the client side depending on how close the player it
Lighting.Ambient = Color3.fromRGB(0, 0, 0)
Lighting.OutdoorAmbient = Color3.fromRGB(0, 0, 0) set the Ambients to black, it will help
trying to make a horrior fnaf game its really bright inside tho
@rich dagger
lol mb I was busy, you can change the lighting from the explorer
** You are now Level 4! **
If you want to in a script you get game:GetService(“Lighting”) and change the properties. I watched advanced scripting vid on Lighting by Blox something mb I forgot
whats the script?
`local Lighting = game:GetService("Lighting")
-- ambient light
Lighting.Ambient = Color3.new(0, 0, 0)
Lighting.OutdoorAmbient = Color3.new(0, 0, 0)
-- fog to swallow any distant objects
Lighting.FogColor = Color3.new(0, 0, 0)
Lighting.FogStart = 0
Lighting.FogEnd = 30 -- change lower to tighten the darkness
--cut exposure down
Lighting.Brightness = 0
Lighting.ClockTime = 0 -- midnight
Lighting.GlobalShadows = true -- make any flashlight or torch cast real shadows
`
the names are quite intuitive, thats why I just straight up gave it to you but please play around with it. Make sure to change it on the Server using a server script tho
Learn how to implement lighting into your Roblox game! This covers anything related to adding lighting effects (e.g., SunRays, ColorCorrection, DepthOfField, Bloom, Blur, etc.). We will manipulate in-game time and create useful systems like a day/night cycle and dynamic script lighting.
PATREON🎁
Get Access To My Scripts + More Perks By Becom...
do you know how to make a player customize at the start of the game