How do i mark my text here as a code?

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
1 Like

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 `
{2EFE9ADC-366E-49AA-A759-A0088CA76985}

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.