Advertisement
jamkles

Untitled

May 4th, 2023
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.96 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("Jamkles world (iOS supported)", "Ocean")
  3. -- MAIN
  4. local Main = Window:NewTab("Main")
  5. local MainSection = Main:NewSection("Main")
  6.  
  7.  
  8. MainSection:NewButton("MoonUI", "Many hubs etc…", function()
  9. loadstring(game:HttpGet("https://raw.githubusercontent.com/IlikeyocutgHAH/MoonUI-v13-102-SCRIPTS/main/MoonUI%20v13!"))()
  10. end)
  11.  
  12. MainSection:NewToggle("Super-Human", "go fast and jump high", function(state)
  13. if state then
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  15. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  16. else
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  18. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  19. end
  20. end)
  21.  
  22. MainSection:NewButton("iOS Fly gui", "Flying", function()
  23. loadstring(game:HttpGet("https://pastebin.com/raw/VddKrfF4"))();
  24. end)
  25.  
  26. MainSection:NewButton("Btools scripts", "Btools (Clientsided)", function()
  27.  
  28. --[[
  29. A distribution of https://wearedevs.net/scripts
  30. Last updated August 2, 2021
  31.  
  32. Description: Gives your player the old system of building tools
  33.  
  34. Instruction: Inject this script into any game using a Lua executor like JJSploit.
  35. ]]
  36.  
  37. backpack = game:GetService("Players").LocalPlayer.Backpack
  38.  
  39. hammer = Instance.new("HopperBin")
  40. hammer.Name = "Hammer"
  41. hammer.BinType = 4
  42. hammer.Parent = backpack
  43.  
  44. cloneTool = Instance.new("HopperBin")
  45. cloneTool.Name = "Clone"
  46. cloneTool.BinType = 3
  47. cloneTool.Parent = backpack
  48.  
  49. grabTool = Instance.new("HopperBin")
  50. grabTool.Name = "Grab"
  51. grabTool.BinType = 2
  52. grabTool.Parent = Backpack
  53. end)
  54.  
  55. MainSection:NewButton("Click Teleport", "Click teleport (teleport, by clicking anywhere with the tool equipped", function()
  56. mouse = game.Players.LocalPlayer:GetMouse()
  57. tool = Instance.new("Tool")
  58. tool.RequiresHandle = false
  59. tool.Name = "Click Teleport by scriptworld"
  60. tool.Activated:connect(function()
  61. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  62. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  64. end)
  65. tool.Parent = game.Players.LocalPlayer.Backpack
  66. end)
  67.  
  68. --LOCAL PLAYER
  69. local Player = Window:NewTab("Player")
  70. local PlayerSection = Player:NewSection("Player")
  71.  
  72. PlayerSection:NewButton("Infinity Yield (Crashes)", "Admin", function()
  73. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  74. end)
  75.  
  76. PlayerSection:NewButton("Float script", "Im floating!!!", function()
  77. --[[
  78. A distribution of https://wearedevs.net/scripts
  79. Last updated August 2, 2021
  80.  
  81. Description: Makes your character float into the air
  82.  
  83. Instruction: Inject this script into any game using a Lua executor like JJSploit.
  84. Re-execute to toggle off and on.
  85. ]]
  86.  
  87. player = game:GetService("Players").LocalPlayer
  88.  
  89. --Remove BodyVelocity to remove float
  90. if player.Character.HumanoidRootPart:FindFirstChild("WRDBodyVelocity") then
  91. player.Character.HumanoidRootPart.WRDBodyVelocity:Destroy()
  92. --Insert BodyVelocity to add float
  93. else
  94. local bodyVelocity = Instance.new("BodyVelocity")
  95. --So we know what specific instance to remove when toggle off
  96. bodyVelocity.Name = "WRDBodyVelocity"
  97. bodyVelocity.Parent = player.Character.HumanoidRootPart
  98. end
  99. end)
  100.  
  101. PlayerSection:NewButton("Animation gui (r15)", "Animation gui", function()
  102. loadstring(game:HttpGet('https://pastebin.com/raw/0MLPL32f'))()
  103. end)
  104.  
  105. PlayerSection:NewButton("No legs script", "No legs script", function()
  106. --[[
  107. A distribution of https://wearedevs.net/scripts
  108. Last updated August 2, 2021
  109.  
  110. Description: Removes your characters legs
  111.  
  112. Instruction: Inject this script into any game using a Lua executor like JJSploit.
  113. ]]
  114.  
  115. character = game:GetService("Players").LocalPlayer.Character
  116.  
  117. --R6 Rigs
  118. leftLeg = character:FindFirstChild("Left Leg")
  119. if leftLeg then leftLeg:Destroy() end
  120. rightLeg = character:FindFirstChild("Right Leg")
  121. if rightLeg then rightLeg:Destroy() end
  122.  
  123. --R15 Rigs
  124. leftUpperLeg = character:FindFirstChild("LeftUpperLeg")
  125. if leftUpperLeg then leftUpperLeg:Destroy() end
  126. leftLowerLeg = character:FindFirstChild("LeftLowerLeg")
  127. if leftLowerLeg then leftLowerLeg:Destroy() end
  128. leftFoot = character:FindFirstChild("LeftFoot")
  129. if leftFoot then leftFoot:Destroy() end
  130. rightUpperLeg = character:FindFirstChild("RightUpperLeg")
  131. if rightUpperLeg then rightUpperLeg:Destroy() end
  132. rightLowerLeg = character:FindFirstChild("RightLowerLeg")
  133. if rightLowerLeg then rightLowerLeg:Destroy() end
  134. rightFoot = character:FindFirstChild("RightFoot")
  135. if rightFoot then rightFoot:Destroy() end
  136. end)
  137.  
  138. PlayerSection:NewButton("No arms script", "No arms script", function()
  139. --[[
  140. A distribution of https://wearedevs.net/scripts
  141. Last updated August 2, 2021
  142.  
  143. Description: Removes your characters arms
  144.  
  145. Instruction: Inject this script into any game using a Lua executor like JJSploit.
  146. ]]
  147.  
  148. character = game:GetService("Players").LocalPlayer.Character
  149.  
  150. --R6 Rigs
  151. leftArm = character:FindFirstChild("Left Arm")
  152. if leftArm then leftArm:Destroy() end
  153. rightArm = character:FindFirstChild("Right Arm")
  154. if rightArm then rightArm:Destroy() end
  155.  
  156. --R15 Rigs
  157. leftUpperArm = character:FindFirstChild("LeftUpperArm")
  158. if leftUpperArm then leftUpperArm:Destroy() end
  159. leftLowerArm = character:FindFirstChild("LeftLowerArm")
  160. if leftLowerArm then leftLowerArm:Destroy() end
  161. leftFoot = character:FindFirstChild("LeftFoot")
  162. if leftFoot then leftFoot:Destroy() end
  163. rightUpperArm = character:FindFirstChild("RightUpperArm")
  164. if rightUpperArm then rightUpperArm:Destroy() end
  165. rightLowerArm = character:FindFirstChild("RightLowerArm")
  166. if rightLowerArm then rightLowerArm:Destroy() end
  167. rightFoot = character:FindFirstChild("RightFoot")
  168. if rightFoot then rightFoot:Destroy() end
  169. end)
  170.  
  171. PlayerSection:NewButton("invisible script", "be invisible", function()
  172. --[[
  173. A distribution of https://wearedevs.net/scripts
  174. Last updated August 2, 2021
  175.  
  176. Description: Makes all of your body parts invisible. Only you can see this effect.
  177.  
  178. Instruction: Inject this script into any game using a Lua executor like JJSploit.
  179.  
  180. I wrote this while off the boof and realized at the end that I'm a goof for not
  181. simply looping through for BaseParts...
  182. ]]
  183.  
  184. character = game:GetService("Players").LocalPlayer.Character
  185.  
  186. character.Head.Transparency = 1
  187.  
  188. --R6 Rigs
  189. torso = character:FindFirstChild("Torso")
  190. if torso then torso.Transparency = 1 end
  191.  
  192. leftArm = character:FindFirstChild("Left Arm")
  193. if leftArm then leftArm.Transparency = 1 end
  194. rightArm = character:FindFirstChild("Right Arm")
  195. if rightArm then rightArm.Transparency = 1 end
  196.  
  197. leftLeg = character:FindFirstChild("Left Leg")
  198. if leftLeg then leftLeg.Transparency = 1 end
  199. rightLeg = character:FindFirstChild("Right Leg")
  200. if rightLeg then rightLeg.Transparency = 1 end
  201.  
  202. --R15 Rigs
  203. upperTorso = character:FindFirstChild("UpperTorso")
  204. if upperTorso then upperTorso.Transparency = 1 end
  205. lowerTorso = character:FindFirstChild("LowerTorso")
  206. if lowerTorso then lowerTorso.Transparency = 1 end
  207.  
  208. leftUpperArm = character:FindFirstChild("LeftUpperArm")
  209. if leftUpperArm then leftUpperArm.Transparency = 1 end
  210. leftLowerArm = character:FindFirstChild("LeftLowerArm")
  211. if leftLowerArm then leftLowerArm.Transparency = 1 end
  212. leftFoot = character:FindFirstChild("LeftFoot")
  213. if leftFoot then leftFoot.Transparency = 1 end
  214. rightUpperArm = character:FindFirstChild("RightUpperArm")
  215. if rightUpperArm then rightUpperArm.Transparency = 1 end
  216. rightLowerArm = character:FindFirstChild("RightLowerArm")
  217. if rightLowerArm then rightLowerArm.Transparency = 1 end
  218. rightFoot = character:FindFirstChild("RightFoot")
  219. if rightFoot then rightFoot.Transparency = 1 end
  220.  
  221. leftUpperLeg = character:FindFirstChild("LeftUpperLeg")
  222. if leftUpperLeg then leftUpperLeg.Transparency = 1 end
  223. leftLowerLeg = character:FindFirstChild("LeftLowerLeg")
  224. if leftLowerLeg then leftLowerLeg.Transparency = 1 end
  225. leftFoot = character:FindFirstChild("LeftFoot")
  226. if leftFoot then leftFoot.Transparency = 1 end
  227. rightUpperLeg = character:FindFirstChild("RightUpperLeg")
  228. if rightUpperLeg then rightUpperLeg.Transparency = 1 end
  229. rightLowerLeg = character:FindFirstChild("RightLowerLeg")
  230. if rightLowerLeg then rightLowerLeg.Transparency = 1 end
  231. rightFoot = character:FindFirstChild("RightFoot")
  232. if rightFoot then rightFoot.Transparency = 1 end
  233. end)
  234.  
  235. PlayerSection:NewButton("Tall script (r15)", "All scales need to be 100%", function()
  236. --Shit ass script made by failedmite57926
  237.  
  238. local LocalPlayer = game:GetService("Players").LocalPlayer
  239. local Character = LocalPlayer.Character
  240. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  241.  
  242. function rm()
  243. for i,v in pairs(Character:GetDescendants()) do
  244. if v:IsA("BasePart") then
  245. if v.Name == "Handle" or v.Name == "Head" then
  246. if Character.Head:FindFirstChild("OriginalSize") then
  247. Character.Head.OriginalSize:Destroy()
  248. end
  249. else
  250. for i,cav in pairs(v:GetDescendants()) do
  251. if cav:IsA("Attachment") then
  252. if cav:FindFirstChild("OriginalPosition") then
  253. cav.OriginalPosition:Destroy()
  254. end
  255. end
  256. end
  257. v:FindFirstChild("OriginalSize"):Destroy()
  258. if v:FindFirstChild("AvatarPartScaleType") then
  259. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  260. end
  261. end
  262. end
  263. end
  264. end
  265.  
  266. rm()
  267. wait(0.5)
  268. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  269. wait(1)
  270.  
  271. rm()
  272. wait(0.5)
  273. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  274. wait(1)
  275.  
  276. rm()
  277. wait(0.5)
  278. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  279. wait(1)
  280.  
  281. rm()
  282. wait(0.5)
  283. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  284. wait(1)
  285.  
  286. rm()
  287. wait(0.5)
  288. Humanoid:FindFirstChild("HeadScale"):Destroy()
  289. wait(1)
  290.  
  291. end)
  292.  
  293. PlayerSection:NewButton("Night toggle script", "Night", function()
  294. --[[
  295. A distribution of https://wearedevs.net/scripts
  296. Last updated August 2, 2021
  297.  
  298. Description: Toggles the time of day between night and morning.
  299.  
  300. Instruction: Inject this script into any game using a Lua executor like JJSploit.
  301. ]]
  302.  
  303. lighting = game:GetService("Lighting")
  304. if lighting.TimeOfDay == "00:00:00" then
  305. lighting.TimeOfDay = 11
  306. else
  307. lighting.TimeOfDay = 24
  308. end
  309. end)
  310.  
  311. --Other
  312. local Other = Window:NewTab("Games")
  313. local OtherSection = Other:NewSection("Games")
  314.  
  315. OtherSection:NewButton("Faded", "Faded gui for dahood", function()
  316. loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded/main/YesEpic", true))()
  317. end)
  318.  
  319. OtherSection:NewButton("Aimlock", "Aimlock", function()
  320. loadstring(game:HttpGet("https://pastebin.com/raw/1Gp9c57U"))()
  321. end)
  322.  
  323. OtherSection:NewButton("Shazam fly (needs keyboard)", "Shazam fly", function()
  324. -- Da Hood Shazam Fly
  325.  
  326. --// Settings
  327. _G.ShazamFlySpeed = 3
  328.  
  329. --// Script
  330. loadstring(game:HttpGet(("https://raw.githubusercontent.com/Raycodex/Exploiting/main/Roblox/DaHoodShazamFly"), true))()
  331. end)
  332.  
  333. OtherSection:NewButton("Keyboard script", "Keyboard script", function()
  334. loadstring(game:HttpGet(('https://pastefy.ga/QNqILuWb/raw'),true))()
  335. end)
  336.  
  337. OtherSection:NewButton("ESP Script", "Highlight players", function()
  338. loadstring(game:HttpGet("https://raw.githubusercontent.com/Ghsstx/Main-Lua/main/Script"))()
  339. end)
  340.  
  341. OtherSection:NewButton("Headless script", "Headless being", function()
  342. game.Players.LocalPlayer.Character.Head.Transparency = 1
  343. game.Players.LocalPlayer.Character.Head.Transparency = 1
  344. for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  345. if (v:IsA("Decal")) then
  346. v.Transparency = 1
  347. end
  348. end
  349. end)
  350.  
  351. OtherSection:NewButton("Korblox script", "Needs korblox recolor", function()
  352. -- hats https://www.roblox.com/catalog?Category=1&CreatorName=DuckXander&CreatorType=Group&salesTypeFilter=1
  353.  
  354. -- script below
  355. -- | Made by GROUD
  356.  
  357. function Align(Part0,Part1,Position,Angle)
  358. local AlignPos = Instance.new('AlignPosition', Part1);
  359. AlignPos.Parent.CanCollide = false;
  360. AlignPos.ApplyAtCenterOfMass = true;
  361. AlignPos.MaxForce = 67752;
  362. AlignPos.MaxVelocity = math.huge/9e110;
  363. AlignPos.ReactionForceEnabled = false;
  364. AlignPos.Responsiveness = 200;
  365. AlignPos.RigidityEnabled = false;
  366. local AlignOri = Instance.new('AlignOrientation', Part1);
  367. AlignOri.MaxAngularVelocity = math.huge/9e110;
  368. AlignOri.MaxTorque = 67752;
  369. AlignOri.PrimaryAxisOnly = false;
  370. AlignOri.ReactionTorqueEnabled = false;
  371. AlignOri.Responsiveness = 200;
  372. AlignOri.RigidityEnabled = false;
  373. local AttachmentA=Instance.new('Attachment',Part1);
  374. local AttachmentB=Instance.new('Attachment',Part0);
  375. AttachmentA.Name = "BruhA"
  376. AttachmentB.Name = "BruhB"
  377. AttachmentB.Orientation = Angle
  378. AttachmentB.Position = Position
  379. AlignPos.Attachment0 = AttachmentA;
  380. AlignPos.Attachment1 = AttachmentB;
  381. AlignOri.Attachment0 = AttachmentA;
  382. AlignOri.Attachment1 = AttachmentB;
  383. end
  384.  
  385. User = game:GetService("Players").LocalPlayer
  386. Body = User.Character
  387. Soul = Body.Humanoid
  388.  
  389. FakeLeg = Body.RightUpperLeg:Clone()
  390. FakeLeg.Transparency = 1
  391. Body.RightUpperLeg:Destroy()
  392. FakeLeg.Parent = Body
  393. Body.RightUpperLeg.RightUpperLeg:Destroy()
  394.  
  395. local Korblox = Body["Recolor (For Korblox)"]
  396. Korblox.Handle.Massless = true
  397. Korblox.Handle:BreakJoints()
  398.  
  399. Align(FakeLeg,Korblox.Handle,Vector3.new(0,.25,0),Vector3.new(0,0,0))
  400.  
  401. game:GetService("RunService").Heartbeat:connect(function(t)
  402. if Korblox:FindFirstChild("Handle", true) then
  403. Korblox.Handle.Velocity = Vector3.new(0, 30,0)
  404. end;
  405. end)
  406. end)
  407.  
  408. OtherSection:NewButton("Brookhaven car script", "fly with your car", function()
  409. loadstring (game: HttpGet ("https://pastebin.com/raw/MHE1cbWF")) ()
  410. end)
  411.  
  412. OtherSection:NewButton("Jenga script", "Jenga", function()
  413. loadstring(game:HttpGet("https://pastebin.com/raw/Z46FpSD0"))();
  414. end)
  415.  
  416. OtherSection:NewButton("OP Arsenal aimlock", "aimbot", function()
  417. loadstring(game:HttpGet("https://pastebin.com/raw/2naF10wC"))()
  418. end)
  419.  
  420. OtherSection:NewButton("Project Mutgetsu", "PM", function()
  421. loadstring(game:HttpGet("https://raw.githubusercontent.com/TrickyAH/Scripts/main/loader.lua"))()
  422. end)
  423.  
  424. OtherSection:NewButton("Bloxfruits", "script", function()
  425. Loadstring(game:HttpGet("https://raw.githubusercontent.com/Augustzyzx/UraniumX/main/URANIUMMOBILE_V2.3.lua.txt", true))()
  426. end)
  427.  
  428. OtherSection:NewButton("MM2, Madcity, Prisonlife", "script", function()
  429. loadstring(game:HttpGet(('https://raw.githubusercontent.com/kiko200000000/idka/main/BaconDux%20Hub'),true))()
  430. --This is for multiple games, Madcity, prison life and murder mystery 2
  431. end)
  432.  
  433. OtherSection:NewButton("Faded grid (dahood)", "script", function()
  434. loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded-Grid/main/YesEpic", true))()
  435. end)
  436.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement