Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ------------------------------------------------------------------------
- --
- -- GUI-Maker v2
- -- Made by repxrd#0347
- --
- ------------------------------------------------------------------------
- --TABS
- _G.tabs={
- { --Sample Gui
- ['Name']='Sample Gui', --Name of the gui
- ['Rainbow']=false, --Should the text be rainbow?
- ['Bar']={
- ['Rainbow']=true, --Should the bar be rainbow?
- ['Color']=Color3.fromRGB(255,55,55) --If the bar shouldn't be rainbow then what color it should have?
- },
- ['Values']={ --Values in the gui
- {
- ['Name']='Sample Tab', --Name of the value in gui
- ['Rainbow']=false, --Should the text be rainbow?
- ['Type']='check', --Type of the gui (check,value,button,info)
- ['PlaceholderText']='placeholder', --If the type is 'value' then what placeholder text should appear?
- ['Function']='sample' --Name of the function that u want to be fired by activating the value
- }
- }
- }
- }
- --FUNCTIONS
- function sample(state)
- print(state)
- end
- --LOAD
- loadstring(game:HttpGet('https://pastebin.com/raw/V3yiKkVh',true))()
Add Comment
Please, Sign In to add comment