Proximity prompt and work on elevator

This commit is contained in:
2024-03-10 21:41:10 -04:00
parent 3e28667b13
commit df86e6efb6
15 changed files with 327 additions and 177 deletions

View File

@@ -5,14 +5,24 @@
type CustomCoreGuiEnums = {Enum.CoreGuiType}
type Impl_Constructor = {
On: (self: Impl_Constructor) -> (),
Off: (self: Impl_Constructor) -> (),
ForceOff: (self: Impl_Constructor) -> (),
ForceOn: (self: Impl_Constructor) -> (),
} & Impl_Static_Props
type Impl_Static_Props = {
AllowReset: boolean,
AllowEmotes: boolean,
AllowBackpack: boolean,
AllowPlayerList: boolean
}
local CoreGuis = {}
local CoreGuis = {} :: Impl_Constructor
CoreGuis.AllowReset = false
CoreGuis.AllowEmotes = true
CoreGuis.AllowBackpack = false
CoreGuis.AllowReset = false
CoreGuis.AllowEmotes = true
CoreGuis.AllowBackpack = false
CoreGuis.AllowPlayerList = false
local SG = game:GetService("StarterGui")