Advertisement
skymissblueboy

private

May 21st, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("extra stuff for cook burgers", "Ocean")
  3. local Tab = Window:NewTab("Main")
  4. local Section = Tab:NewSection("Main stuff")
  5. Section:NewToggle("Anchor body","Anchor your HumanoidRootPart (body)", function(v)
  6. if v then
  7. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  8. else
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
  10. end
  11. end)
  12. Section:NewButton("Change to beginner outfit","", function()
  13. local args = {
  14. [1] = {
  15. ["SKINTONE_ID"] = "SKINTONES_1",
  16. ["HAIR_ID"] = "HAIRS_EMPLOYEE_CAP",
  17. ["OUTFIT_ID"] = "OUTFITS_EMPLOYEE"
  18. }
  19. }
  20.  
  21. game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("UpdateAppearance"):FireServer(unpack(args))
  22. local args = {
  23. [1] = false
  24. }
  25.  
  26. game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("Respawn"):FireServer(unpack(args))
  27. end)
  28. Section:NewButton("Change to worker outfit","", function()
  29. local args = {
  30. [1] = {
  31. ["SKINTONE_ID"] = "SKINTONES_1",
  32. ["HAIR_ID"] = "SAFETY_HAT",
  33. ["OUTFIT_ID"] = "OUTFITS_WAITER"
  34. }
  35. }
  36.  
  37. game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("UpdateAppearance"):FireServer(unpack(args))
  38. local args = {
  39. [1] = false
  40. }
  41.  
  42. game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("Respawn"):FireServer(unpack(args))
  43. end)
  44. Section:NewButton("Change to manager outfit + x-27","", function()
  45. local args = {
  46. [1] = {
  47. ["SKINTONE_ID"] = "SKINTONES_1",
  48. ["HAIR_ID"] = "X_27",
  49. ["OUTFIT_ID"] = "OUTFITS_MANAGER"
  50. }
  51. }
  52.  
  53. game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("UpdateAppearance"):FireServer(unpack(args))
  54. local args = {
  55. [1] = false
  56. }
  57.  
  58. game:GetService("ReplicatedStorage"):WaitForChild("Network"):WaitForChild("Respawn"):FireServer(unpack(args))
  59. end)
  60. Section:NewKeybind("Toggle UI", "", Enum.KeyCode.Z, function()
  61. Library:ToggleUI()
  62. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement