Roblox's KKT Wiki
Advertisement

Documentation for this module may be created at Module:RobloxUrls/doc

return {
	group = function(id)
		return mw.uri.new {
			protocol = 'https';
			host = "www.roblox.com";
			path = "/Groups/group.aspx";
			query = {
				gid = id
			}
		}
	end;
	user_from_id = function(id)
		return mw.uri.new {
			protocol = 'https';
			host = "www.roblox.com";
			path = "/users/" .. id .. "/profile"
		}
	end;
	user_from_username = function(username)
		return mw.uri.new {
			protocol = 'https';
			host = "www.roblox.com";
			path = "/user.aspx";
			query = {
				username = username
			}
		}
	end;
	item_from_id = function(id)
		return mw.uri.new {
			protocol = 'https';
			host = "www.roblox.com";
			path = "/--item";
			query = {
				id = id
			}
		}
	end;
}
Advertisement