i am setting up lights to my car using https://create.roblox.com/store/asset/6170882223/VGs-EPICLIGHTS-V4. i am trying to make running lights enable when someone enters the driveseat, and there is an option to enable that in config, property is called RunningOnOpen, and i set it to true, it just doesn't work for me. Also side indicators change color for some reason. Any help would be appreciated. I removed some unnecessary parts of the ModuleScript cuz of discord limit. Here is config:
local config = {}
config.LightType = "LED" -- includes headlights, rear, and brake lights
config.IndicatorFlashRate = 0.3
-- running light settings
config.RunningHeadlight = false
config.RunningOnOpen = true -- if true, the running light keybind will no longer function and the running lights will turn on when you get into the driveseat.
config.RunningLightType = "LED"
config.RunningLightColor = Color3.fromRGB(85, 85 ,85)
-- sequential indicator settings
config.SequentialIndicators = true
config.SequentialAmount = 18
-- popup light settings
config.PopupsEnabled = false
config.PopupHingeAngle = -0.75
config.PopupHingeType = "Single"
config.HeadlightColor = "Xenon"
config.RearLightColor = Color3.fromRGB(248, 87, 73)
config.BrakeLightColor = Color3.fromRGB(248, 87, 73)
config.ReverseLightColor = "Xenon"
config.InteriorLightColor = "Incandescent"
config.FrontIndicatorColor = "Dark Orange"
config.RearIndicatorColor = "Dark Orange"
config.DoorIndicatorColor = "Dark Orange"
config.OrangeReflectorColor = "Dark Orange"
config.RedReflectorColor = Color3.fromRGB(248, 87, 73)
config.FogLightColor = "Incandescent"
config.PlateLightColor = "Incandescent"
-- keybinds
config.Headlights = Enum.KeyCode.H
config.RunningLights = Enum.KeyCode.N
config.FogLights = Enum.KeyCode.J
config.SignalLeft = Enum.KeyCode.Z
config.SignalRight = Enum.KeyCode.C
config.Hazards = Enum.KeyCode.X
config.Popups = Enum.KeyCode.B
config.HighBeamFlash = Enum.KeyCode.L
return config



** You are now Level 1! **


