My code is:
1 | DS:SetAsync(plyr.UserId { |
2 | bans = 0 , |
3 | endmonth = 1 , |
4 | endday = 1 , |
5 | endyear = 1 } ) |
This gives attempt to call a number value in the output. Can you not add numbers to dictionaries?? I have no idea why it's not letting me save a number.
Hello. I think you just forgot a comma after plyr.UserId
.
1 | DS:SetAsync(plyr.UserId, { |
2 | bans = 0 , |
3 | endmonth = 1 , |
4 | endday = 1 , |
5 | endyear = 1 |
6 | } ) |