Hey! I want to know how to get the game name from a script
I tried :
local gameName = workspace.Parent
but it’s an instance not a string
Thanks.
Hey! I want to know how to get the game name from a script
I tried :
local gameName = workspace.Parent
but it’s an instance not a string
Thanks.
I think game.Name should work
local gameName = game.Name
should be enough
local GameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name
Thank you the other thing game.Name
doesnt work it only say: Game and not the actual game name.