For example:
local module = {} Dev = "Dev" Devid = {3889301,12891821029,18209309120293,0192093} function module.Plan(argument) if argument == Dev then if game.CreatorId == -- one of the IDs in Devid warn("dev loaded") print(game.CreatorId) end end end return module
Please Help me awnser this :)
local module = {} local devtable = {3889301,12891821029,18209309120293,0192093} function check(num) for _,v in pairs(devtable) do if v == num then return true end;end;end function module.Plan(arg) if arg == "Dev" and check(game.CreatorId) == true then warn("dev loaded.") warn(game.CreatorId) end;end return module