13 lines
340 B
Lua
13 lines
340 B
Lua
local CoreGui = game:GetService("CoreGui")
|
|
|
|
local Modules = CoreGui.RobloxGui.Modules
|
|
local Common = Modules.Common
|
|
local Action = require(Common.Action)
|
|
|
|
return Action(script.Name, function(universeId, rootPlaceId, conversationId)
|
|
return {
|
|
universeId = universeId,
|
|
rootPlaceId = rootPlaceId,
|
|
conversationId = conversationId,
|
|
}
|
|
end) |