#help make it dark

1 messages · Page 1 of 1 (latest)

limpid oasis
#

i need help making the building really dark inside

still fiber
rich dagger
#

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

shrewd pelican
#

make a zone out of a part, in alocal script make it so when its touched the brightness in game.lightning is lowered

limpid oasis
#

i want them to need flashlights too see rn u dont need a flashlight

rich dagger
#

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

limpid oasis
#

trying to make a horrior fnaf game its really bright inside tho

rich dagger
#

that will work, try it

#

then set the fog really close to you

limpid oasis
#

local or normal script

#

and where do i put it

limpid oasis
#

@rich dagger

rich dagger
#

lol mb I was busy, you can change the lighting from the explorer

crimson harnessBOT
#

studio** You are now Level 4! **studio

rich dagger
#

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

rich dagger
#

`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

limpid oasis
#

do you know how to make a player customize at the start of the game