Same error when I re downloaded the files from that link.
hm then I guess go ahead and reinstall the whole server.
I got the chat working after reinstalling but when i try a command i get errors
https://gyazo.com/1b7ee273946f7af2fb06f2578297ef34
https://gyazo.com/95ae52cbe029d8bf692c9e847289e129
If you’ve missed it on the wiki str:Split doesn’t exist anymore, you should use the proper Lua functions for this.
I am not entirely sure if this is completely your issue since I have no idea which resources you are using that could potentially cause errors of its own.
function stringsplit(inputstr, sep)
if sep == nil then
sep = "%s"
end
local t={} ; i=1
for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
t[i] = str
i = i + 1
end
return t
end
Good luck and I hope this helps.
where do you add this at in the server?
Try searching for a “function stringsplit” in your server lua if you don’t have any you can add it anywhere in the script but if you do just replace the old with the new.