Giter Club home page Giter Club logo

uifree's Introduction

local library = loadstring(game:GetObjects("rbxassetid://7657867786")[1].Source)() local Wait = library.subs.Wait -- Only returns if the GUI has not been terminated. For 'while Wait() do' loops

local PepsisWorld = library:CreateWindow({ Name = "Pepsi's World", Themeable = { Info = "Discord Server: VzYTJ7Y" } })

local GeneralTab = PepsisWorld:CreateTab({ Name = "General" }) local FarmingSection = GeneralTab:CreateSection({ Name = "Farming" }) FarmingSection:AddToggle({ Name = "EXP Grinder", Flag = "FarmingSection_EXPGrinder" }) FarmingSection:AddToggle({ Name = "Trick Spammer", Flag = "FarmingSection_TrickSpammer", Keybind = 1, Callback = print }) FarmingSection:AddSlider({ Name = "Trick Rate", Flag = "FarmingSection_TrickRate", Value = 0.15, Precise = 2, Min = 0, Max = 1 }) FarmingSection:AddToggle({ Name = "TP To Coins", Flag = "FarmingSection_TPCoins" }) FarmingSection:AddToggle({ Name = "Collect Coins", Flag = "FarmingSection_CollectCoins", Callback = print }) FarmingSection:AddSlider({ Name = "Coin Distance", Flag = "FarmingSection_CoinDistance", Value = 175, Min = 0, Max = 200, Format = function(Value) if Value == 0 then return "Collection Distance: Infinite" else return "Collection Distance: " .. tostring(Value) end end })

local BoardControlSection = GeneralTab:CreateSection({ Name = "Board Control" }) BoardControlSection:AddToggle({ Name = "Anti Trip/Ragdoll", Flag = "BoardControlSection_AntiTripRagdoll", Callback = print }) BoardControlSection:AddToggle({ Name = "No Wear & Tear", Flag = "BoardControlSection_NoWearTear" }) BoardControlSection:AddToggle({ Name = "No Trick Cooldown", Flag = "BoardControlSection_NoTrickCooldown", Callback = print }) BoardControlSection:AddToggle({ Name = "Extend Combo Timout", Flag = "BoardControlSection_ExtendComboTimeout" }) BoardControlSection:AddSlider({ Name = "Timeout Extension", Flag = "BoardControlSection_CoinDistance", Value = 3, Min = 0, Max = 20, Format = function(Value) if Value == 0 then return "Combo Timeout: Never" else return "Combo Timeout: " .. tostring(Value) .. "s" end end })

local MiscSection = GeneralTab:CreateSection({ Name = "Misc", Side = "Right" }) MiscSection:AddToggle({ Name = "Unlock Gamepasses", Flag = "MiscSection_UnlockGamepasses", Callback = print }) MiscSection:AddToggle({ Name = "Auto Compete", Flag = "MiscSection_AutoCompete", Callback = print }) MiscSection:AddButton({ Name = "Repair Board", Callback = function() print("Fixed") end }) MiscSection:AddKeybind({ Name = "Test Key", Callback = print }) MiscSection:AddToggle({ Name = "Test Toggle/Key", Keybind = { Mode = "Dynamic" -- Dynamic means to use the 'hold' method, if the user keeps the button pressed for longer than 0.65 seconds; else use toggle method }, Callback = print })

local FunSection = GeneralTab:CreateSection({ Name = "Fun Cosmetics" }) FunSection:AddToggle({ Name = "Ragdoll Assumes Flight", Flag = "FunSection_AssumesFlight" }) FunSection:AddToggle({ Name = "Ragdoll On Player Collision", Flag = "FunSection_RagdollOnPlayerCollision" }) FunSection:AddToggle({ Name = "Un-Ragdoll When Motionless", Flag = "FunSection_UnRagdollWhenMotionless" }) FunSection:AddToggle({ Name = "Extend Ragdoll Duration", Flag = "FunSection_ExtendRagdollDuration" }) FunSection:AddSlider({ Name = "Coin Distance", Flag = "FarmingSection_Coin Distance", Value = 4, Min = 0, Max = 60, Textbox = true, Format = function(Value) if Value == 0 then return "Ragdoll Extension: Indefinite" else return "Ragdoll Extension: " .. tostring(Value) .. "s" end end })

uifree's People

Contributors

wait-gnjhf avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.