Skip to content

Commit e7bd8c8

Browse files
update Open Source Docs from Roblox internal teams
1 parent 68e4edf commit e7bd8c8

File tree

2 files changed

+31
-36
lines changed

2 files changed

+31
-36
lines changed

content/en-us/reference/engine/classes/TextChatMessageProperties.yaml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,22 @@ description: |
1212
`Class.TextChannel.OnIncomingMessage`. This can be used to customize the
1313
appearance of a message with [rich text](../../../ui/rich-text.md) tags.
1414
15-
```lua title='LocalScript - Retrieving and Using TextChatMessageProperties'
15+
```lua
1616
local TextChatService = game:GetService("TextChatService")
17-
17+
1818
TextChatService.OnIncomingMessage = function(message: TextChatMessage)
19-
-- Derive chat message properties
20-
local properties = TextChatService.ChatWindowConfiguration:DeriveNewMessageProperties()
21-
22-
-- Change color of message
23-
properties.TextColor3 = Color3.fromRGB(255, 121, 121)
24-
19+
-- Derive chat message properties
20+
local properties = TextChatService.ChatWindowConfiguration:DeriveNewMessageProperties()
21+
22+
-- Change color of message
23+
properties.TextColor3 = Color3.fromRGB(255, 121, 121)
24+
2525
-- Set chat window message properties
26-
message.ChatWindowMessageProperties = properties
27-
28-
return properties
26+
message.ChatWindowMessageProperties = properties
27+
28+
return properties
2929
end
30+
```
3031
code_samples: []
3132
inherits:
3233
- Instance

content/en-us/studio/setup.md

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,14 @@ description: Explains how to install Roblox Studio on your system.
55

66
Create immersive 3D experiences on Roblox with **Roblox Studio**, a free application available on Windows and Mac.
77

8-
<Tabs>
9-
<TabItem label="Installation">
10-
1. Click the following **Download Studio** button.
11-
12-
<UseStudioButton variant='blueLogoIconButton' />
13-
14-
1. In the pop-up dialog, click the **Download Studio** button.
15-
16-
<img src="../assets/studio/general/Download-Popup.png" width="400" alt="The pop-up dialog with the Download Studio button highlighted." />
17-
18-
1. Find the Studio installer in your browser's download history and double-click the file.
19-
20-
- On Windows, the file is `RobloxStudio.exe`.
21-
- On Mac, the file is `RobloxStudio.dmg`.
22-
23-
1. After Studio finishes installing, a pop-up confirmation displays. Click the **Launch&nbsp;Studio** button.
24-
25-
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/)).
8+
## System requirements
269

27-
</TabItem>
28-
<TabItem label="System Requirements">
29-
<table style={{width: '75%'}} >
10+
<table style={{width: '75%'}} size="small">
3011
<thead>
3112
<tr>
3213
<th></th>
33-
<th><Chip label="Minimum" size="large" color="warning" variant="outlined" /></th>
34-
<th><Chip label="Recommended" size="large" color="success" variant="outlined" /></th>
14+
<th><Chip label="Minimum" size="medium" color="warning" variant="outlined" /></th>
15+
<th><Chip label="Recommended" size="medium" color="success" variant="outlined" /></th>
3516
</tr>
3617
</thead>
3718
<tbody>
@@ -53,8 +34,21 @@ Create immersive 3D experiences on Roblox with **Roblox Studio**, a free applica
5334
</tbody>
5435
</table>
5536

56-
</TabItem>
57-
</Tabs>
37+
## Installation
38+
39+
1. Click the following **Download Studio** button.
40+
41+
<UseStudioButton variant='blueLogoIconButton' />
42+
43+
1. In the pop-up dialog, click the **Download Studio** button.
44+
1. Find the Studio installer in your browser's download history and double-click the file.
45+
46+
- On Windows, the file is `RobloxStudio.exe`.
47+
- On Mac, the file is `RobloxStudio.dmg`.
48+
49+
1. After Studio finishes installing, a pop-up confirmation displays. Click the **Launch&nbsp;Studio** button.
50+
51+
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/)).
5852

5953
## Customization
6054

0 commit comments

Comments
 (0)