Added ExpGamingInfo

This commit is contained in:
Cooldude2606
2018-09-29 17:55:44 +01:00
parent e50bd509f8
commit 5cc5546a05
17 changed files with 489 additions and 245 deletions

View File

@@ -0,0 +1,14 @@
local Sync = require('ExpGamingCore.Sync@^4.0.0')
local Gui = Gui
Sync.add_to_gui(Gui.inputs.add_button('readme-sync-guildlines','View Guildlines','View the guildlines in the readme',function(player,element)
Gui.center.open_tab(player,'readme','guildlines')
end))
Sync.add_to_gui(Gui.inputs.add_button('readme-sync-links','View Other Links','View the links in the readme',function(player,element)
Gui.center.open_tab(player,'readme','links')
end))
Sync.add_to_gui(Gui.inputs.add_button('readme-sync-rules','View All Rules','View the all rules in the readme',function(player,element)
Gui.center.open_tab(player,'readme','rules')
end))