Advertisement
catfooll

GUI BOTTON SONG

Jan 1st, 2024
883
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | Writing | 0 0
  1. -- Ejemplo
  2. script.Parent.MouseButton1Click:Connect(function()
  3.     script.Parent.Parent.Frame.Visible = not script.Parent.Parent.Frame.Visible
  4. end)
  5.  
  6. -- CODIGO
  7.  
  8.     script.Parent.Sound.SoundId = "rbxassetid://8835008243" --- La ID de cualquier canción
  9.     script.Parent.Sound:Play()
  10.  
  11. -- COMBINADO EJEMPLO
  12.  
  13. script.Parent.MouseButton1Click:Connect(function()
  14.     script.Parent.Parent.Frame.Visible = not script.Parent.Parent.Frame.Visible
  15. -- Music click
  16.     script.Parent.Sound.SoundId = "rbxassetid://8835008243"
  17.     script.Parent.Sound:Play()
  18. -- Music click
  19.  
  20. end)
  21.  
  22.  
  23.  
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement