local proximityprompt = script.Parent.Detect.Attachment.ProximityPrompt
local light = script.Parent.Detect.Attachment.PointLight
local bulb = script.Parent.Cage
local toggle = false
--[ Script Bellow ]--
proximityprompt.Triggered:Connect(function()
toggle = not toggle
proximityprompt.ActionText = if toggle then "Off" else "On"
light.Enabled = if toggle then true else false
bulb.Material = if toggle then "Neon" else "Glass"
end)