Im trying to make a an admin gui that get the name of the place for the title but idk how and google isn't helping me
The best way to do this is to use the MarketplaceService.
local MarketplaceService = game:GetService("MarketplaceService") local isSuccessful, info = pcall(MarketplaceService .GetProductInfo, marketplaceService, game.PlaceId) if isSuccessful then print(info.Name) --> "Game Name " end
If your attempting on making it so you display the name of the game the script is just
local TextLabel = script.Parent TextLabel.Text = game.Name