9 lines
236 B
Lua
9 lines
236 B
Lua
local CoreGui = game:GetService("CoreGui")
|
|
local Action = require(CoreGui.RobloxGui.Modules.Common.Action)
|
|
|
|
return Action("SetCrossPlayEnabled", function(enabled, timestamp)
|
|
return {
|
|
enabled = enabled,
|
|
timestamp = timestamp
|
|
}
|
|
end) |