Difference between game.Workspace and workspace

The title is the question, would like and explaination

1 Like

One is faster to write, thats about it

3 Likes

workspace is a roblox variable that returns game:GetService(“Workspace”). Think of it as

workspace = game:GetService("Workspace")
1 Like
  • game.Workspace

  • workspace

  • game:GetService(“Workspace”)

All retrieve the same thing. The only difference between them is how they look when typed, they’re mostly there for organization and cleanliness purposes.

5 Likes

Thanks :slight_smile: I understood it now ;