Does anyone know where I can find an updated list of all roblox services?

  1. What do you want to achieve? Keep it simple and clear!
    I want to search for some useful roblox services in the bunch for testing and scripting purposes.
  2. What is the issue? Include screenshots / videos if possible!
    I need a few services I came across one time but forgot the name of.
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I have tried searching for a service list in the roblox developer hub, but I think there is none, because I am not getting any results related.

I can’t find a service list, but The API has a list of all Instance classes, including services.

2 Likes

If you can explain what these services did maybe we can help put a name to them.

Ok, thanks! This will do. [30 Characters]

I don’t really want them named, because I want to see the entire list. He already gave me an index, I will just browse through it

Alternatively, you could open an empty place in studio and run this code in the command bar:

local list = Instance.new("Script")
list.Source = ""
for _, service in ipairs(game:GetChildren()) do
	local check, name = pcall(function()
		return service.ClassName
	end)
	if (check) then
		list.Source = list.Source..name.."\n"
	end
end
list.Disabled = true
list.Name = "Service List"
list.Parent = workspace
game.Selection:Set({list})
1 Like