Advertisement
Karap

เพื่อการศึกษา ep1

May 7th, 2023
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.06 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local Window = Library.CreateLib("Crack By KaGa X HUB", "Ocean")
  3. local Tab1 = Window:NewTab("Main")
  4. local Tab2 = Window:NewTab("Tracers")
  5.  
  6.  
  7. local Tab1Section = Tab1:NewSection("Main")
  8. local Tab2Section = Tab2:NewSection("Tracers")
  9.  
  10.  
  11. Tab1Section:NewButton("Kill aura + Aimbot", "imagine reading the info", function()
  12. local Camera = game:GetService("Workspace").CurrentCamera
  13. local Players = game:GetService("Players")
  14. local LocalPlayer = game:GetService("Players").LocalPlayer
  15.  
  16. local function GetClosestPlayer()
  17. local ClosestPlayer = nil
  18. local FarthestDistance = math.huge
  19.  
  20. for i, v in pairs(Players.GetPlayers(Players)) do
  21. if v ~= LocalPlayer and v.Character and v.Character.FindFirstChild(v.Character, "HumanoidRootPart") then
  22. local DistanceFromPlayer = (LocalPlayer.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).Magnitude
  23.  
  24. if DistanceFromPlayer < FarthestDistance then
  25. FarthestDistance = DistanceFromPlayer
  26. ClosestPlayer = v
  27. end
  28. end
  29. end
  30.  
  31. if ClosestPlayer then
  32. return ClosestPlayer
  33. end
  34. end
  35.  
  36. local GameMetaTable = getrawmetatable(game)
  37. local OldGameMetaTableNamecall = GameMetaTable.__namecall
  38. setreadonly(GameMetaTable, false)
  39.  
  40. GameMetaTable.__namecall = newcclosure(function(object, ...)
  41. local NamecallMethod = getnamecallmethod()
  42. local Arguments = {...}
  43.  
  44. if tostring(NamecallMethod) == "FindPartOnRayWithIgnoreList" then
  45. local ClosestPlayer = GetClosestPlayer()
  46.  
  47. if ClosestPlayer and ClosestPlayer.Character then
  48. Arguments[1] = Ray.new(Camera.CFrame.Position, (ClosestPlayer.Character.Head.Position - Camera.CFrame.Position).Unit * (Camera.CFrame.Position - ClosestPlayer.Character.Head.Position).Magnitude)
  49. end
  50. end
  51.  
  52. return OldGameMetaTableNamecall(object, unpack(Arguments))
  53. end)
  54.  
  55. setreadonly(GameMetaTable, true)
  56. end)
  57.  
  58. Tab1Section:NewSlider("Speed", "Speed", 100, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  59. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  60. end)
  61.  
  62. Tab1Section:NewButton("Inf jump", "Inf", function()
  63. --Subscribe To ArceusMODZ--
  64.  
  65. local InfiniteJumpEnabled = true
  66. game:GetService("UserInputService").JumpRequest:connect(function()
  67. if InfiniteJumpEnabled then
  68. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  69. end
  70. end)
  71. end)
  72.  
  73. Tab1Section:NewButton("Noclip", "backrooms rel", function()
  74. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  75. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  76. while true do
  77. game:GetService("RunService").Stepped:wait()
  78. game.Players.LocalPlayer.Character.Head.CanCollide = false
  79. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  80. end
  81. end)
  82.  
  83. Tab2Section:NewToggle("Tracers","Opens Tracers",function()
  84. local lplr = game.Players.LocalPlayer
  85. local camera = game:GetService("Workspace").CurrentCamera
  86. local CurrentCamera = workspace.CurrentCamera
  87. local worldToViewportPoint = CurrentCamera.worldToViewportPoint
  88.  
  89. _G.TeamCheck = false -- Use True or False to toggle TeamCheck
  90.  
  91. for i,v in pairs(game.Players:GetChildren()) do
  92. local Tracer = Drawing.new("Line")
  93. Tracer.Visible = false
  94. Tracer.Color = Color3.new(255, 0, 0)
  95. Tracer.Thickness = 1
  96. Tracer.Transparency = 1
  97.  
  98. function lineesp()
  99. game:GetService("RunService").RenderStepped:Connect(function()
  100. if v.Character ~= nil and v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("HumanoidRootPart") ~= nil and v ~= lplr and v.Character.Humanoid.Health > 0 then
  101. local Vector, OnScreen = camera:worldToViewportPoint(v.Character.HumanoidRootPart.Position)
  102.  
  103. if OnScreen then
  104. Tracer.From = Vector2.new(camera.ViewportSize.X / 2, camera.ViewportSize.Y / 1)
  105. Tracer.To = Vector2.new(Vector.X, Vector.Y)
  106.  
  107. if _G.TeamCheck and v.TeamColor == lplr.TeamColor then
  108. --//Teammates
  109. Tracer.Visible = false
  110. else
  111. --//Enemies
  112. Tracer.Visible = true
  113. end
  114. else
  115. Tracer.Visible = false
  116. end
  117. else
  118. Tracer.Visible = false
  119. end
  120. end)
  121. end
  122. coroutine.wrap(lineesp)()
  123. end
  124.  
  125. game.Players.PlayerAdded:Connect(function(v)
  126. local Tracer = Drawing.new("Line")
  127. Tracer.Visible = false
  128. Tracer.Color = Color3.new(1,1,1)
  129. Tracer.Thickness = 1
  130. Tracer.Transparency = 1
  131.  
  132. function lineesp()
  133. game:GetService("RunService").RenderStepped:Connect(function()
  134. if v.Character ~= nil and v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("HumanoidRootPart") ~= nil and v ~= lplr and v.Character.Humanoid.Health > 0 then
  135. local Vector, OnScreen = camera:worldToViewportPoint(v.Character.HumanoidRootPart.Position)
  136.  
  137. if OnScreen then
  138. Tracer.From = Vector2.new(camera.ViewportSize.X / 2, camera.ViewportSize.Y / 1)
  139. Tracer.To = Vector2.new(Vector.X, Vector.Y)
  140.  
  141. if _G.TeamCheck and v.TeamColor == lplr.TeamColor then
  142. --//Teammates
  143. Tracer.Visible = false
  144. else
  145. --//Enemies
  146. Tracer.Visible = true
  147. end
  148. else
  149. Tracer.Visible = false
  150. end
  151. else
  152. Tracer.Visible = false
  153. end
  154. end)
  155. end
  156. coroutine.wrap(lineesp)()
  157. end)
  158. end)
  159.  
  160. Tab1Section:NewToggle("Fov", "Changes Fov", function(state)
  161. if state then
  162. game.Workspace.CurrentCamera.FieldOfView = 120
  163. else
  164. game.Workspace.CurrentCamera.FieldOfView = 80
  165. end
  166. end)
  167.  
  168.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement