Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Hyphon = loadstring(game:HttpGet("https://raw.githubusercontent.com/scotdotwtf/Hyphon-UI-Library-Reupload/main/Hyphon_Library.lua"))({cheatname = 'cheat name', gamename = "game name"})
- -- menu
- local menu = library:create('menu', {
- text = "test",
- size = UDim2.new(0, 1000, 0, 500), -- change this to what you want idk
- position = UDim2.new(0.5, 0, 0.5, 0)
- })
- library.menu = menu
- -- tab
- local tab = menu:tab({
- text = "test",
- order = 1 -- idk whats this
- })
- -- section
- local section = tab:section({
- text = "section name",
- side = 1 -- if 1 is left then 2 should be right (you should try both)
- })
- -- toggle
- local toggle = section:toggle({
- default = false, -- default value
- text = "toggle name",
- order = 1, -- idk whats this
- enabled = true, -- idk whats this?
- callback = function(Value)
- print("Toggle set to: ", Value)
- end
- })
- -- slider
- local slider = section:slider({
- default = 0,
- min = 0,
- max = 10,
- increment = 1,
- text = "slider name",
- order = 1, -- idk
- enabled = true,
- callback = function(Value)
- print("Slider value set to: ", Value)
- end
- })
- -- TOGGLE SLIDER??: local slider = toggle:slider(properties <table>)
- -- colorpicker
- local colorpicker = section:colorpicker({
- default = Color3.fromRGB(0, 255, 0), -- green
- default_opacity = 10, -- Alpha - RGB(A)
- text = "colorpicker name",
- order = 1, -- idk
- enabled = true,
- callback = function(Value, Opacity)
- print("Colorpicker value: ", Value)
- print("Colorpicker opacity: ", Opacity)
- end
- })
- -- keybind
- local keybind = section:keybind({
- default = Enum.KeyCode.E,
- mode = "toggle",
- text = "keybind name"
- order = 1,
- enabled = true,
- callback = function(Value)
- print("Keybind changed? : ", Value)
- end
- })
- -- textbox
- local textbox = section:textbox({
- default = "starting value",
- placehoder = "placeholder text",
- text = "textbox name",
- enabled = true,
- order = 1,
- callback = function(Value)
- print("Textbox changed to: ", Value)
- end
- })
- -- button
- local button = section:button({
- text = "button name",
- order = 1,
- enabled = true,
- callback = function()
- print("Button clicked")
- end
- })
- -- separator
- local separator = section:separator({
- text = "label name",
- order = 1,
- enabled = true,
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement