RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"add multiple lights part table system"
-- server script local lightParts = {workspace.LightPart1, workspace.LightPart2, workspace.LightPart3} -- Add more parts as needed local function lightOn(part) local canLight = true if canLight then canLight = false local light = Instance.new("PointLight") light.Parent = part light.Range = 25 light.Brightness = 5 wait(5) part.PointLight:Destroy() canLight = true end end local function onTouched(bodyPart) local part = bodyPart.Parent if table.find(lightParts, part) then lightOn(part) end end for _, part in ipairs(lightParts) do part.Touched:Connect(onTouched) end