To roblox mods: No you cannot delete this this time because its in the right topic.
So if i wrote a code, how do i mark it? like i tried using “'” or “()” but it doesnt recognize it as a code (script)
To roblox mods: No you cannot delete this this time because its in the right topic.
So if i wrote a code, how do i mark it? like i tried using “'” or “()” but it doesnt recognize it as a code (script)
write them as strings
local codes = {
"Release",
"FREE",
"Roblox"
}
local function doesCodeExist(code : string)
if table.find(codes, code) then
return true
else
return false
end
end
print(doesCodeExist("OOOO")) -- false
print(doesCodeExist("FREE")) -- true
Im talking about here in devforum lol, thanks tho. like you did right now
(“local codes = ()
etc etc”)
click this button or add your code within 2 `
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.