Advertisement
AxeuerAlt

Untitled

Jul 13th, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. game.Players.Localplayer.Chatted:connect(function(Msg)
  2. msg = Msg:lower()
  3. if string.sub(msg, 1, 7) == "yeet" then
  4. wait(0.1)
  5. YeetSound()
  6. end
  7. function YeetSound()
  8. z = Instance.new("Sound",game.Players.Character)
  9. z.Volume = 4
  10. z.Looped = true
  11. z.SoundId = "rbxassetid://525743689"
  12. z:Play()
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement