@@ -20,7 +20,7 @@ Called when a cinematic display begins on the client.
2020
2121* ` blackBars ` (` boolean ` ): Whether letterbox bars are drawn.
2222
23- * ` playMusic ` (` boolean ` ): Whether background music should play.
23+ * ` music ` (` boolean ` ): Whether background music should play.
2424
2525* ` color ` (` Color ` ): Color applied to the text.
2626
@@ -35,7 +35,7 @@ Called when a cinematic display begins on the client.
3535** Example**
3636
3737``` lua
38- hook .Add (" CinematicDisplayStart" , " ExampleStart" , function (text , bigText , duration , blackBars , playMusic , color )
38+ hook .Add (" CinematicDisplayStart" , " ExampleStart" , function (text , bigText , duration , blackBars , music , color )
3939 print (" Cinematic started:" , text )
4040end )
4141```
@@ -144,7 +144,7 @@ Called server-side when a player requests to trigger a cinematic display.
144144
145145* ` blackBars ` (` boolean ` ): Whether to include black bars.
146146
147- * ` playMusic ` (` boolean ` ): Whether to play music.
147+ * ` music ` (` boolean ` ): Whether to play music.
148148
149149* ` color ` (` Color ` ): Text color.
150150
@@ -159,7 +159,7 @@ Called server-side when a player requests to trigger a cinematic display.
159159** Example**
160160
161161``` lua
162- hook .Add (" CinematicTriggered" , " OnCinematicTrigger" , function (client , text , bigText , duration , blackBars , playMusic , color )
162+ hook .Add (" CinematicTriggered" , " OnCinematicTrigger" , function (client , text , bigText , duration , blackBars , music , color )
163163 print (client :Name () .. " started a cinematic." )
164164end )
165165```
0 commit comments