mirror of
https://github.com/unixtensor/Roblox-Elevator-Game.git
synced 2025-12-16 14:51:55 +00:00
Proximity prompt and work on elevator
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user