This is my table:
local mytable = {["roblox"] = true,
["based"] = false,
["myself"] = true,
}
and this is my loop:
for i,v in pairs(mytable) do
--i want to to get the roblox and true
end
help me, i just want to atleast know how to print roblox and true (roblox = true)