Upscalefanatic3

[FE] (Roblox) Annoy Players Boombox

Mar 15th, 2020 (edited)
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. id = "PUTIDHERE"
  2.  
  3. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4. if string.find(string.lower(v.Name),'boom') then
  5. v.Parent = game.Players.LocalPlayer.Character
  6. wait(0.1)
  7. v.Remote:FireServer("PlaySong", id);
  8. wait(1)
  9. v.Handle.Sound.Parent = game.Lighting
  10. v.Server:Destroy()
  11. v.Client:Destroy()
  12. wait(0.1)
  13. v.Parent = game.Lighting
  14. end
  15. end
Add Comment
Please, Sign In to add comment