JannickP8

Ultimate Character GUI by Axtra

Jan 23rd, 2022 (edited)
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.50 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("Ultimate Character GUI by Axtra", "Sentinel")
  3.  
  4. print("Loading Script...")
  5. local A_1 = "Loaded Ultimate Character GUI succsessful...! GUI by: AxtraXploits/ProxodionDev"
  6. local A_2 = "All"
  7. local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  8. Event:FireServer(A_1, A_2)
  9.  
  10.  
  11. --Tab and Section 1: Main!
  12. local Tab = Window:NewTab("Main!")
  13. local Section = Tab:NewSection("Main!")
  14.  
  15. --Respawn Method 1! Button
  16. Section:NewButton("Reset Method 1!", "Works!", function()
  17.     print("Reset...")
  18. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  19. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  20. end)
  21.  
  22. --Respawn Method 2! Button
  23. Section:NewButton("Reset Method 2!", "Works!", function()
  24.     print("Reset...")
  25. game.Players.LocalPlayer.Character.Head:Destroy()
  26. end)
  27.  
  28. --Health! Slider
  29. Section:NewSlider("Health!", "Works!", 100, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  30.     game.Players.LocalPlayer.Character.Humanoid.Health = s
  31. end)
  32.  
  33. --Walkspeed! Slider
  34. Section:NewSlider("WalkSpeed!", "Works!", 250, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  35.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  36. end)
  37.  
  38. --JumpPower! Slider
  39. Section:NewSlider("JumpPower!", "Works!", 400, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  40.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  41. end)
  42.  
  43. --Freeze! Toggle
  44. Section:NewToggle("Freeze/Anchor!", "Works", function(state)
  45.     if state then
  46.         print("Freeze On...")
  47.         game.Players.LocalPlayer.Character.Head["Anchored"] = true
  48.     else
  49.         print("Freeze Off...")
  50.         game.Players.LocalPlayer.Character.Head["Anchored"] = false
  51.     end
  52. end)
  53.  
  54. --Legless! R15 Button
  55. Section:NewButton("Legless! r15 [Server Sided]", "Works!", function()
  56.     print("Making Avatar Leglees...")
  57. game.Players.LocalPlayer.Character.RightUpperLeg:Destroy()
  58. game.Players.LocalPlayer.Character.RightLowerLeg:Destroy()
  59. game.Players.LocalPlayer.Character.RightFoot:Destroy()
  60. game.Players.LocalPlayer.Character.LeftUpperLeg:Destroy()
  61. game.Players.LocalPlayer.Character.LeftLowerLeg:Destroy()
  62. game.Players.LocalPlayer.Character.LeftFoot:Destroy()
  63. end)
  64.  
  65. --Legless! R6 Button
  66. Section:NewButton("Legless! r6 [Server Sided]", "Works!", function()
  67.     print("Making Avatar Leglees...")
  68. game.Players.LocalPlayer.Character.Humanoid.LeftLeg:Destroy()
  69. game.Players.LocalPlayer.Character.Humanoid.RightLeg:Destroy()
  70. end)
  71.  
  72. --Armless! R15 Button
  73. Section:NewButton("Armless! r15 [Server Sided]", "Works!", function()
  74.     print("Making Avatar Armlees...")
  75. game.Players.LocalPlayer.Character.RightUpperArm:Destroy()
  76. game.Players.LocalPlayer.Character.RightLowerArm:Destroy()
  77. game.Players.LocalPlayer.Character.RightHand:Destroy()
  78. game.Players.LocalPlayer.Character.LeftUpperArm:Destroy()
  79. game.Players.LocalPlayer.Character.LeftLowerArm:Destroy()
  80. game.Players.LocalPlayer.Character.LeftHand:Destroy()
  81. end)
  82.  
  83. --Armless! R6 Button
  84. Section:NewButton("Armless! r6 [Server Sided]", "Works!", function()
  85.     print("Making Avatar Armlees...")
  86. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  87. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  88. end)
  89.  
  90. --Fake Korblox R15! Button
  91. Section:NewButton("Delete Right Leg! r15 [Server Sided]", "Works!", function()
  92.     print("Deleting RightLeg...")
  93. game.Players.LocalPlayer.Character.RightUpperLeg:Destroy()
  94. game.Players.LocalPlayer.Character.RightLowerLeg:Destroy()
  95. game.Players.LocalPlayer.Character.RightFoot:Destroy()
  96. end)
  97.  
  98. --Fake Korblox R6! Button
  99. Section:NewButton("Delete Right Leg! r6 [Server Sided]", "Works!", function()
  100.     print("Deleting RightLeg...")
  101. game.Players.LocalPlayer.Character.Humanoid.RightLeg:Destroy()
  102. end)
  103.  
  104. --Fake Korblox R15! Button
  105. Section:NewButton("Delete Left Leg! r15 [Server Sided]", "Works!", function()
  106.     print("Deleting LeftLeg...")
  107. game.Players.LocalPlayer.Character.LeftUpperLeg:Destroy()
  108. game.Players.LocalPlayer.Character.LeftLowerLeg:Destroy()
  109. game.Players.LocalPlayer.Character.LeftFoot:Destroy()
  110. end)
  111.  
  112. --Fake Korblox R6! Button
  113. Section:NewButton("Delete Left Leg! r6 [Server Sided]", "Works!", function()
  114.     print("Deleting LeftLeg...")
  115. game.Players.LocalPlayer.Character.Humanoid.LeftLeg:Destroy()
  116. end)
  117.  
  118. --Delete Arm! Button
  119. Section:NewButton("Delete Right Arm! r6 [Server Sided]", "Works!", function()
  120.     print("Deleting RightArm...")
  121. game.Players.LocalPlayer.Character["Right Arm"] : Destroy()
  122. end)
  123.  
  124. --Delete Arm! Button
  125. Section:NewButton("Delete Left Arm! r6 [Server Sided]", "Works!", function()
  126.     print("Deleting LeftArm...")
  127. game.Players.LocalPlayer.Character["Left Arm"] : Destroy()
  128. end)
  129.  
  130. --Delete Arm! Button
  131. Section:NewButton("Delete Right Arm! r15 [Server Sided]", "Works!", function()
  132.     print("Deleting RightArm...")
  133. game.Players.LocalPlayer.Character["RightLowerArm"] : Destroy()
  134. game.Players.LocalPlayer.Character["RightUpperArm"] : Destroy()
  135. game.Players.LocalPlayer.Character["RightHand"] : Destroy()
  136. end)
  137.  
  138. --Delete Arm! Button
  139. Section:NewButton("Delete Left Arm! r15 [Server Sided]", "Works!", function()
  140.     print("Deleting LeftArm...")
  141. game.Players.LocalPlayer.Character["LeftLowerArm"] : Destroy()
  142. game.Players.LocalPlayer.Character["LeftUpperArm"] : Destroy()
  143. game.Players.LocalPlayer.Character["LeftHand"] : Destroy()
  144. end)
  145.  
  146. --No Animation R15 R6! Button
  147. Section:NewButton("No Animation! r15 and r6 [Server Sided]", "Works!", function()
  148.     print("Deleting Animation...")
  149. game.Players.LocalPlayer.Character.Animate:Destroy()
  150. end)
  151.  
  152. --No Mesh r6! Button
  153. Section:NewButton("No Mesh! r6 [Server Sided]", "Works!", function()
  154.     print("Deleting Mesh...")
  155. game.Players.LocalPlayer.Character.Head["Mesh"] : Destroy()
  156. end)
  157.  
  158. --Faceless! Button
  159. Section:NewButton("Faceless! r15 and r6 [Server Sided]", "Works!", function()
  160.     print("Deleting Face...")
  161. game.Players.LocalPlayer.Character.Head["face"] : Destroy()
  162. end)
  163.  
  164. --Delete Shirt! Button
  165. Section:NewButton("Delete Shirt! r15 and r6 [Server Sided]", "Works!", function()
  166.     print("Deleting Shirt...")
  167. game.Players.LocalPlayer.Character["Shirt"] : Destroy()
  168. end)
  169.  
  170. --Delete T-Shirt! Button
  171. Section:NewButton("Delete T-Shirt! r15 and r6 [Server Sided]", "Works!", function()
  172.     print("Deleting T-Shirt...")
  173. game.Players.LocalPlayer.Character["Shirt Graphic"] : Destroy()
  174. end)
  175.  
  176. --Delete Pants! Button
  177. Section:NewButton("Delete Pants! r15 and r6 [Server Sided]", "Works!", function()
  178.     print("Deleting Pants...")
  179. game.Players.LocalPlayer.Character["Pants"] : Destroy()
  180. end)
  181.  
  182.  
  183.  
  184. --Tab and Section 2: Fun Stuff/Characters!
  185. local Tab = Window:NewTab("Fun Stuff/Characters!")
  186. local Section = Tab:NewSection("Fun Stuff/Characters!")
  187.  
  188. --Fe Crepper R6 Button
  189. Section:NewButton("[FE] Creeper r6 [Server Sided]", "use this for work: https://pastebin.com/zZugRyqu", function()
  190.     print("Loading Crepper...")
  191. game.Players.LocalPlayer.Character["Right Arm"] : Destroy()
  192. game.Players.LocalPlayer.Character["Left Arm"] : Destroy()
  193. game.Players.LocalPlayer.Character.Head["Mesh"] : Destroy()
  194. game.Players.LocalPlayer.Character.Head["face"] : Destroy()
  195. game.Players.LocalPlayer.Character["Shirt"] : Destroy()
  196. game.Players.LocalPlayer.Character["Pants"] : Destroy()
  197. game.Players.LocalPlayer.Character["Shirt Graphic"] : Destroy()
  198. end)
  199.  
  200. --Fe Crepper R15 Button
  201. Section:NewButton("[FE] Creeper r15 [Server Sided]", "use this for work: https://pastebin.com/zZugRyqu", function()
  202.     print("Loading Crepper...")
  203. game.Players.LocalPlayer.Character["RightUpperArm"] : Destroy()
  204. game.Players.LocalPlayer.Character["LeftUpperArm"] : Destroy()
  205. game.Players.LocalPlayer.Character["RightLowerArm"] : Destroy()
  206. game.Players.LocalPlayer.Character["LeftLowerArm"] : Destroy()
  207. game.Players.LocalPlayer.Character["RightHand"] : Destroy()
  208. game.Players.LocalPlayer.Character["LeftHand"] : Destroy()
  209. game.Players.LocalPlayer.Character.Head["face"] : Destroy()
  210. game.Players.LocalPlayer.Character["Shirt"] : Destroy()
  211. game.Players.LocalPlayer.Character["Pants"] : Destroy()
  212. game.Players.LocalPlayer.Character["Shirt Graphic"] : Destroy()
  213.  
  214. end)
  215.  
  216. -- Naked R15 and r6 Button
  217. Section:NewButton("Naked! r15 and r6 [Server Sided]", "Works!", function()
  218.     print("Deleting Shirt, Pants and T-Shirt...")
  219. game.Players.LocalPlayer.Character["Shirt"] : Destroy()
  220. game.Players.LocalPlayer.Character["Pants"] : Destroy()
  221. game.Players.LocalPlayer.Character["Shirt Graphic"] : Destroy()
  222.  
  223. end)
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231. print("Script Loaded succsessful!")
  232.  
Add Comment
Please, Sign In to add comment