13 lines
322 B
Lua
13 lines
322 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(intent, parameters, popToIntent)
|
|
return {
|
|
intent = intent,
|
|
parameters = parameters or {},
|
|
popToIntent = popToIntent,
|
|
}
|
|
end) |