Advertisement
mjv2023

Rickroll LUA ROBLOX

Aug 20th, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local SoundId = "rbxassetid://1544291808"
  2. local SoundVolume = 1
  3.  
  4. local function PlayRickRoll()
  5. local sound = Instance.new("Sound")
  6. sound.SoundId = SoundId
  7. sound.Volume = SoundVolume
  8. sound.Parent = game.Workspace -- You can change this to wherever you want the sound to play
  9.  
  10. sound:Play()
  11. sound.Ended:Connect(function()
  12. sound:Destroy()
  13. end)
  14. end
  15.  
  16. PlayRickRoll()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement