Game not giving correct name

Hey so I just tested something because why not.

In studio, if I type

print(game.Name)

It’ll print out the actual name, for example “SSS Challenge”.
image

But in the actual ROBLOX Game, it’ll just print “Game”.
image

Why?

2 Likes

Try Using “print(game.Workspace.Parent.Name)” it should work, the problem with the script you did is that “game” is the parent of everything, but using a services parent shows the games name!

1 Like