Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("extra stuff for cook burgers", "Ocean")
- local Tab = Window:NewTab("Main")
- local Section = Tab:NewSection("Main stuff")
- Section:NewToggle("Anchor body","Anchor your HumanoidRootPart (body)", function(v)
- if v then
- game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
- else
- game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
- end
- end)
- Section:NewButton("Change to beginner outfit","", function()
- local args = {
- [1] = {
- ["SKINTONE_ID"] = "SKINTONES_1",
- ["HAIR_ID"] = "HAIRS_EMPLOYEE_CAP",
- ["OUTFIT_ID"] = "OUTFITS_EMPLOYEE"
- }
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("UpdateAppearance"):FireServer(unpack(args))
- local args = {
- [1] = false
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("Respawn"):FireServer(unpack(args))
- end)
- Section:NewButton("Change to worker outfit","", function()
- local args = {
- [1] = {
- ["SKINTONE_ID"] = "SKINTONES_1",
- ["HAIR_ID"] = "SAFETY_HAT",
- ["OUTFIT_ID"] = "OUTFITS_WAITER"
- }
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("UpdateAppearance"):FireServer(unpack(args))
- local args = {
- [1] = false
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("Respawn"):FireServer(unpack(args))
- end)
- Section:NewButton("Change to manager outfit + x-27","", function()
- local args = {
- [1] = {
- ["SKINTONE_ID"] = "SKINTONES_1",
- ["HAIR_ID"] = "X_27",
- ["OUTFIT_ID"] = "OUTFITS_MANAGER"
- }
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("UpdateAppearance"):FireServer(unpack(args))
- local args = {
- [1] = false
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("Respawn"):FireServer(unpack(args))
- end)
- Section:NewKeybind("Toggle UI", "", Enum.KeyCode.Z, function()
- Library:ToggleUI()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement