---
title: "Next steps"
url: /docs/en-us/tutorials/curriculums/coding/next-steps
last_updated: 2026-07-09T23:50:04Z
description: "Explains ways to continue learning about coding in Studio."
---

# Next steps

Congratulations on completing your first code sample with Roblox Studio! Now that you have experience working with variables, you can share your work with others and extend your skills by learning about Studio's additional coding features.

## Share with others

When you first publish a game, it's automatically set to **private** so that you are the only one who can play it. However, creating on Roblox is always more fun when you can share what you make with others, so let's set up your game so that they can play too.

To make your game public:

1. Using the steps from the **Test and save** chapter, publish your game so others can see your latest changes.
2. In the top-left corner of your computer, click **File** ⟩ **Experience Settings**.
3. In the settings window:
  1. Go to the left bar and select the **Permissions** tab. New settings display.
  2. Set **Playability** to **Public**.
4. Click the **Save** button. Now everyone on Roblox can play your game!

## Continue learning

Variables are an excellent start in your coding journey, but Luau includes additional fundamentals that are important to understand to add custom behavior to your games, including:

- [Script types and locations](/docs/en-us/scripting/locations.md)
- [Services](/docs/en-us/scripting/services.md)
- [Properties and attributes](/docs/en-us/scripting/attributes.md)
- [Events](/docs/en-us/scripting/events.md)

It's recommended to continue learning with the [Coding fundamentals](/docs/en-us/tutorials/fundamentals/coding-1/coding-fundamentals.md) series, then if you want to continue learning through step-by-step lessons, check out the following use case tutorials:

- [Create deadly lava](/docs/en-us/tutorials/use-case-tutorials/scripting/basic-scripting/deadly-lava.md)
- [Create fading traps](/docs/en-us/tutorials/use-case-tutorials/scripting/basic-scripting/fading-trap.md)
- [Create health pickups](/docs/en-us/tutorials/use-case-tutorials/scripting/intermediate-scripting/create-a-health-pickup.md)
- [Save player data](/docs/en-us/tutorials/use-case-tutorials/scripting/intermediate-scripting/save-data.md)