Skip to content

Commit a7c0e07

Browse files
authored
Update setting-up-roblox-studio.md
1 parent 2dcfa06 commit a7c0e07

File tree

1 file changed

+23
-61
lines changed

1 file changed

+23
-61
lines changed
Lines changed: 23 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,23 @@
1-
---
2-
title: Roblox Studio Setup
3-
description: Explains how to install Roblox Studio on your system.
4-
---
5-
6-
Create immersive 3D experiences on Roblox with **Roblox Studio**, a free application available on Windows and Mac.
7-
8-
<img src="../assets/studio/general/Studio-Splash.jpg" width="800" alt="" />
9-
10-
## System Requirements
11-
12-
The following system specifications ensure that Studio runs smoothly:
13-
14-
- **Windows (64-bit)** &ndash; Windows 7, 8, 8.1, 10, or 11. For Windows 10 or earlier, you also need Internet Explorer 11 or higher and the latest version of [WebView2](https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section).&sup1;
15-
- **Mac** &ndash; macOS 10.13 (High Sierra) and above.
16-
- **Processor** &ndash; Processor with a clock speed of 1.6 GHz or better.
17-
- **RAM** &ndash; 4 GB of system memory.
18-
- **Hard Disk** &ndash; At least 10 GB of available hard disk space after installation.
19-
- **Graphics Card** &ndash; A computer less than 5 years old with a dedicated video card or a laptop less than 3 years old with an integrated video card.
20-
- **Internet Access** &ndash; At least 4-8 Mb/s to keep Studio up-to-date and save projects to your Roblox account.
21-
22-
<figcaption>&sup1; When installing [WebView2](https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section) for Windows 10 or earlier, try the **Evergreen Standalone Installer** if the **Evergreen Bootstrapper** installation fails.</figcaption>
23-
24-
## Installing Studio
25-
26-
To install Roblox Studio on your Windows or Mac computer:
27-
28-
1. Click the following **Download Studio** button. A pop-up dialog displays.
29-
30-
<UseStudioButton variant='blueLogoIconButton' />
31-
32-
1. In the pop-up dialog, click the **Download Studio** button.
33-
34-
<img src="../assets/studio/general/Download-Popup.png" width="400" alt="The pop-up dialog with the Download Studio button highlighted." />
35-
36-
1. Find the Studio installer in your browser's download history and double-click the file.
37-
38-
- On Windows, the file is `RobloxStudio.exe`.
39-
- On Mac, the file is `RobloxStudio.dmg`.
40-
41-
1. After Studio finishes installing, a pop-up confirmation displays. Click the **Launch&nbsp;Studio** button.
42-
43-
1. Sign in to Studio with your Roblox account. If you don't have an account, create one at [roblox.com](https://www.roblox.com/) and follow the tips on [securing your account](https://en.help.roblox.com/hc/en-us/articles/203313380-Account-Security-Theft-Keeping-your-Account-Safe-).
44-
45-
## Customization
46-
47-
Many customization options are accessible via **File**&nbsp;&rang; **Studio Settings** (<kbd>Alt</kbd><kbd>S</kbd> on Windows; <kbd>⌥</kbd><kbd>S</kbd> on Mac). You can quickly locate known settings by typing keywords into the search field at the top of the window. For example, search for "theme" to explicitly set Studio to dark theme or light theme.
48-
49-
<img src="../assets/studio/general/Studio-Settings-Layout.png" width="750" alt="A close up view of the Studio Settings window." />
50-
51-
<Alert severity="success">
52-
In addition to general settings, you can customize Studio's [window layout](../studio/ui-overview.md#customizing-the-layout) to best suit your workflows.
53-
</Alert>
54-
55-
## Updating Studio
56-
57-
In contrast to certain other engines, every experience runs on the latest version of the Roblox engine. You should keep Studio up-to-date to utilize the latest APIs and features.
58-
59-
If your current version of Studio is outdated, you'll see an **Update Available** button in the upper-right corner. Clicking the button will prompt you to save/close the currently open place so that Studio can automatically update and restart.
60-
61-
<img src="../assets/studio/general/Toolbar-Update-Prompt.png" width="754" alt="Studio's Model tab with the Update Studio button highlighted." />
1+
-- Example: Grant admin abilities like using all elements at once
2+
if player:IsInGroup(123456) then -- Replace with your admin group ID
3+
player:SendMessage("Admin mode activated. You can now use all elements without cooldown.")
4+
for _, element in ipairs(ELEMENTS) do
5+
assignAbilities(player, element)
6+
end
7+
end
8+
end
9+
10+
-- Connect player added event
11+
Players.PlayerAdded:Connect(function(player)
12+
initializePlayer(player)
13+
setupAdminFeatures(player)
14+
15+
player.ChosenElement.Changed:Connect(function()
16+
local element = player.ChosenElement.Value
17+
assignAbilities(player, element)
18+
end)
19+
end)
20+
21+
-- Final notes:
22+
-- Ensure that abilities have appropriate effects, particle emitters, and animations.
23+
-- Add anti-cheat measures and more admin commands for server moderation.

0 commit comments

Comments
 (0)