Advertisement
NeverCords

Untitled

Jan 20th, 2022
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. -- Made by A_Mystery#0110 and not me!
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3.  
  4. local Window = Library.CreateLib("A_Mystery#0110 | A Bizarre Journey", "DarkTheme")
  5.  
  6. --Windows
  7. local Tab = Window:NewTab("Character")
  8. local Fun = Window:NewTab("FunStuff")
  9. local Other = Window:NewTab("Others")
  10. local Info = Window:NewTab("Information")
  11.  
  12.  
  13. --Cosmetics tab (Character)
  14.  
  15. local Cosmetics = Tab:NewSection("Walkspeed & Jumppower")
  16.  
  17. Cosmetics:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.RightAlt, function()
  18. Library:ToggleUI()
  19. end)
  20.  
  21. Cosmetics:NewSlider("WalkSpeed", "Set's users walkspeed", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  22. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  23. end)
  24.  
  25. Cosmetics:NewSlider("JumpPower", "Set's users jumppower", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  26. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  27. end)
  28.  
  29. Cosmetics:NewButton("SCR Outfit", "Gives SCR Outfit To LocalPlayer", function()
  30. game:GetService("ReplicatedStorage").SCR:FireServer()
  31. print("SCR Worn")
  32. end)
  33.  
  34. Cosmetics:NewButton("Sakuya Earrape", "Spam this multiple times for earrape, once for normal music.", function()
  35. game:GetService("ReplicatedStorage").SakuyaIzayoi:FireServer()
  36. end)
  37.  
  38. Cosmetics:NewButton("Weird Hat", "Gives the hat for One More Time.", function()
  39. game:GetService("ReplicatedStorage").OneMoreTime:FireServer()
  40. end)
  41.  
  42. Cosmetics:NewButton("Gaster Effect", "Gives you a pretty cool Gaster effect.", function()
  43. local args = {
  44. [1] = true,
  45. }
  46. game:GetService("ReplicatedStorage").gastereffect:FireServer(unpack(args))
  47. end)
  48.  
  49. Cosmetics:NewButton("Oni", "Gives the Oni outfit.", function()
  50. game:GetService("ReplicatedStorage").Oni:FireServer()
  51. end)
  52.  
  53. --Funstuff
  54. local Fun = Fun:NewSection("FunStuff")
  55.  
  56. Fun:NewButton("Invis All", "Make people go invisible.", function()
  57. local plr = game.Players.LocalPlayer
  58. local plrs = game.Players:getChildren()
  59. local ch = plr.Character
  60. for _, c in pairs(plrs) do
  61. for i, v in pairs(c.Character:GetDescendants()) do
  62. game.ReplicatedStorage.Transparency:FireServer(v, 1)
  63. if v.Name == "Stand" then
  64. for _, p in pairs(v:GetDescendants()) do
  65. game.ReplicatedStorage.Transparency:FireServer(0, 1)
  66. end
  67. end
  68. end
  69. end
  70. end)
  71.  
  72. Fun:NewButton("God Mode", "Makes you unkillable.", function(god)
  73. game:GetService("ReplicatedStorage").Stand:FireServer("GoldExperienceRequiemStand", math.huge, math.huge)
  74. end)
  75.  
  76. --Others
  77.  
  78. local Stuff = Other:NewSection("Stuff")
  79.  
  80. Stuff:NewButton("Rejoin", "Rejoins", function()
  81. local tp = game:GetService("TeleportService")
  82. local plr = game:GetService("Players").LocalPlayer
  83. local Id = game.PlaceId
  84. tp:Teleport(Id, p)
  85. end)
  86.  
  87. Stuff:NewButton("Chat Translator", "Translates Chat.", function()
  88. loadstring(game:HttpGet("https://pastebin.com/raw/w5k3WvXH",true))()
  89. end)
  90.  
  91. Stuff:NewButton("Remote Spy", "Feel free to use idk.", function()
  92. loadstring(game:HttpGet("https://pastebin.com/raw/s82p7XX6",true))()
  93. end)
  94.  
  95. --Info
  96.  
  97. local Inf = Info:NewSection("Information")
  98.  
  99. Inf:NewButton("Commands (Console)", "Prints commands.", function()
  100. print("!kill plr, !kill me, !kill others, !kill all")
  101. print("!heal plr, !heal me, !heal others, !heal all")
  102. print("!goto plr, !goto me, !goto others, !goto all")
  103. print("!invis plr, !invis me, !invis others, !invis all")
  104. print("!vis plr, !vis me, !vis others, !vis all")
  105. print("!ghostify plr, !ghostify me, !ghostify others, !ghostify all")
  106. print("!god me")
  107. print("!explode plr")
  108. print("!superexplode plr")
  109. print("!void plr")
  110. print("!fling plr")
  111. print("!freeze plr, !freeze me, !freeze others, !freeze all")
  112. print("!unfreeze plr, !unfreeze me, !unfreeze others, !unfreeze all")
  113. print("!admin plr Only gives plrs admin - heal plr, kill plr, invis plr, vis plr, ghostify plr, freeze plr,unfreeze plr")
  114. print("note give player admin is slightly buggy.")
  115. print("!crash NEEDS ROCKET LAUNCHER SPEC")
  116. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement