وش غيرت ؟
تفضل يا صاحب الموضوع هذي افضل طريقه سويتها ع السريع
---Client Side
--غير مجرب
sound = playSound("sounds/vegas.mp3")
setSoundVolume(sound, 2.5)
setSoundPaused(sound,true)
addEventHandler ("onClientGUIClick",guiRoot,
function ()
if source == GUIEditor.button[1] then
if isSoundPaused(sound) == false then return end
setSoundPaused(sound,false)
elseif source == GUIEditor.button[2] then
setSoundPaused(sound,true)
end
end
)