Cutscene

A Cutscene is an object that provides functions to run it and the information of the cutscene.

Methods

Cutscene:Run(Players: {Player} | Player)

NOTE: Call the function with column (:), otherwise the function will fail.

Run the Cutscene for specific clients. A RemoteEvent will be used for this.

-- EXAMPLE 1
local Players = game.Players:GetPlayers() -- A list of Player

Cutscene:Run(Players)
-- EXAMPLE 2
local Player = game.Players.JohnDoe -- A single Player

Cutscene:Run(Player)

Last updated