Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- TabsList = {"Home", "Skripts", "Player", "More", "Settings"}
- -- dont edit this ππ½ it does nothing its jus a list of names for the tabs you kan assign skripts to Using the HowTo/examples below if u dont understand how to use ui's
- --[[
- Above is the TabsList ππ½kan change to any of these depending what tab u want the skript in β
- -Use: ππ½ ππ½ ππ½
- ( lula.Button ) & ( lula.Toggle ) & ( lula.Textbox )
- for Toggles,Buttons, and Textboxes or whatever u set the loadstring name to. default is "lula" β
- - added a auto-scrolling feature depending on how many items are added to a tab (9/6/24)
- ]]
- -- // EXAMPLES ππ½ HOW TO USE THE UI \\ --
- --[[
- U need the loadstring below, "lula" kan be anything but make sure if u change it...Also change it on the buttons instead of lula.Button it should be name.Button, name.Toggle etc. β kopy & paste the skript below to see how the gui looks at first.
- - (Optional) to change the GUI Name or Open GUI Name, add this at the beginning or end of the skript:
- lula.SetTitle("YOUR KUSTOM HUB NAMEπ")
- lula.ToggleText("OPEN GUI")
- or you dont need it, it will just stay as default hub/gui name
- ]]--
- --=================================--
- -- SKRIPT BELOW:
- local lula = loadstring(game:HttpGet("https://github.com/rrixh/uwuware/raw/main/lib/RRixh-ui.mobile",true))();
- lula.SetTitle("MY KUSTOM HUB TITLE")
- lula.ToggleText("OPEN GUI")
- lula.Button("Skripts", "Button example 1", function()
- print"buttonklicked"
- end)
- lula.Button("Skripts", "Button example 2", function()
- print"buttonklicked"
- end)
- lula.Toggle("Skripts", "ToggleButton example 1", function(toggleOn)
- if toggleOn then
- print"enabled"
- else
- print"disabled"
- end
- end)
- lula.Toggle("Home", "ToggleButton example 1", function(toggleOn)
- if toggleOn then
- print"enabled"
- else
- print"disabled"
- end
- end)
- lula.Toggle("Home", "ToggleButton example 2", function(toggleOn)
- if toggleOn then
- print"enabled"
- else
- print"disabled"
- end
- end)
- lula.Textbox("Player", "walkspeed example", function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end)
- lula.Textbox("Player", "jumppower example", function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement