Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2025
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. local function test(input)
  2. core.chat_send_all(input)
  3. end
  4.  
  5. --will work
  6. core.after(1, test, "my input string")
  7.  
  8. --wont get the arguement
  9. core.after(1, test)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement