use Libraries.Robots.Lego.Buttonuse Libraries.Robots.Lego.Sounduse Libraries.Robots.Lego.ScreenButton buttonSound soundScreen screeninteger volume = 50screen:OutputCenter("Built In Sounds", 1)screen:OutputCenterLarge("Volume", 2)screen:OutputCenterLarge("V=" + volume, 4)sound:Beep()button:SetLightPattern(3)repeat until button:IsButtonPressed(button:ESCAPE_BUTTON) if button:IsButtonPressed(button:LEFT_BUTTON) sound:Beep() elseif button:IsButtonPressed(button:RIGHT_BUTTON) sound:Buzz() elseif button:IsButtonPressed(button:UP_BUTTON) sound:BeepSequenceUp() elseif button:IsButtonPressed(button:DOWN_BUTTON) sound:BeepSequenceDown() elseif button:IsButtonPressed(button:CENTER_BUTTON) sound:BeepTwice() endendsound:Buzz()sound:Beep()sound:BeepSequenceUp()sound:BeepSequenceDown()sound:BeepTwice()