Hey, I was wondering if it’s possible to make my own private servers (not roblox private servers) !
Have a nice day !
Use TeleportService:ReserveServer
https://developer.roblox.com/en-us/api-reference/function/TeleportService/ReserveServer
Example use (Probably wont work)
local TeleportService = game:GetService("TeleportService")
local Players = game:GetService("Players")
local TeleportPlaceId = game.PlaceId
Players.PlayerAdded:Connect(function(Player)
local PrivateServerCode = TeleportService:ReserveServer(TeleportPlaceId)
TeleportService:TeleportToPrivateServer(TeleportPlaceId, PrivateServerCode, {Player})
end)
Ok but I don’t want to use private server of roblox but thx you !
There isnt any other way to make your own private server made by you, unless you can just kick out players who are not in the list of chosen names.
Ok thx you I will try your method !
You can use universal places. You can go to Asset Manager, Places and then create a new place, which you can use as a private server. You can limit the server size to 1 player. What you can do next is then make a product. When someone owns the product, you can teleport them to the universal place.
U mean like a custom game, and u customize that place
I think I have a solution, I would create reserved server without owner !