Guest User

Untitled

a guest
Dec 10th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. concommand.Add("magic8ball", function( player,command,args )
  2. local sides = { "is a traitor!", "is innocent.", "is suspicious.", "is a cake.", "is a liar.", "is retarded." }
  3. RunConsoleCommand("say", "Shaking the magic 8 ball.. ".. args[1].." "..sides[math.random(6)])
  4. end)
Add Comment
Please, Sign In to add comment