So I have a module script with emotes for players and I want to get all the module’s table names if the player chats :emotes. How do I get the table names?
Module code:
local module = {}
module[":emote Dance1"] = {
AnimID = "rbxassetid://0";
}
module[":emote Dance2"] = {
AnimID = "rbxassetid://0";
}
module[":emote Dance3"] = {
AnimID = "rbxassetid://0";
}
return module
I’ve tried looking at the table.whatever functions but nothing there seems to be much of a help.