ebayemployee

Untitled

Oct 20th, 2021 (edited)
77,407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Skidder-dot/roseware/main/ok"))()
  2.  
  3. local Window = library:AddWindow("Astolfo's Fixed Kittenassist | The best free one (i think)", {
  4. main_color = Color3.fromRGB(10, 10, 10),
  5. min_size = Vector2.new(450, 500),
  6. toggle_key = Enum.KeyCode.RightShift,
  7. can_resize = false,
  8. })
  9.  
  10. game.StarterGui:SetCore("SendNotification", {
  11. Title = "made by Astolfo#4267";
  12. Text = "old script was replaced to Astolfo's version of the KAC fix - ebay";
  13. Icon = "";
  14. Duration = 10;
  15. })
  16.  
  17. local Aiming = loadstring(game:HttpGet("https://gist.githubusercontent.com/keexers/97e6a306af29785093af138689cd9434/raw/54976d6e239a32eef876154d3f70f7717989d973/roblos"))()
  18. local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
  19. ESP:Toggle(false)
  20. ESP.Tracers = false
  21. ESP.Names = false
  22. ESP.Boxes = false
  23. Aiming.TeamCheck(false)
  24. Aiming.VisibleCheck = false
  25. -- // Dependencies
  26.  
  27. -- // Services
  28. local Workspace = game:GetService("Workspace")
  29. local Players = game:GetService("Players")
  30. local RunService = game:GetService("RunService")
  31. local UserInputService = game:GetService("UserInputService")
  32.  
  33. -- // Vars
  34. local LocalPlayer = Players.LocalPlayer
  35. local Mouse = LocalPlayer:GetMouse()
  36. local CurrentCamera = Workspace.CurrentCamera
  37.  
  38.  
  39. local themes = {
  40. Background = Color3.fromRGB(24, 24, 24),
  41. Glow = Color3.fromRGB(0, 0, 0),
  42. Accent = Color3.fromRGB(10, 10, 10),
  43. LightContrast = Color3.fromRGB(20, 20, 20),
  44. DarkContrast = Color3.fromRGB(14, 14, 14),
  45. TextColor = Color3.fromRGB(255, 255, 255)
  46. }
  47.  
  48. local DaHoodSettings = {
  49. SilentAim = true,
  50. AimLock = true,
  51. Prediction = 0.165,
  52. AimLockKeybind = Enum.KeyCode.Q
  53. }
  54.  
  55. getgenv().DaHoodSettings = DaHoodSettings
  56.  
  57. local RCTab = Window:AddTab("Rage Cheats")
  58. local ALTab = Window:AddTab("Aimlock")
  59. local ESPTab = Window:AddTab("Esp")
  60.  
  61. ESPTab:AddSwitch("Enable ESP", function(bool)
  62. ESP:Toggle(bool)
  63. end)
  64.  
  65. ESPTab:AddSwitch("Enable Tracers", function(bool)
  66. ESP.Tracers = bool
  67. end)
  68.  
  69. ESPTab:AddSwitch("Enable Names", function(bool)
  70. ESP.Names = bool
  71. end)
  72.  
  73. ESPTab:AddSwitch("Enable Boxes", function(bool)
  74. ESP.Boxes = bool
  75. end)
  76.  
  77. ALTab:AddSwitch("Silent Aim", function(bool)
  78. DaHoodSettings.SilentAim = bool
  79. end)
  80.  
  81. ALTab:AddSwitch("Aim Lock", function(bool)
  82. DaHoodSettings.AimLock = bool
  83. end)
  84.  
  85. ALTab:AddSwitch("FOV Circle", function(bool)
  86. Aiming.ShowFOV = bool
  87. end)
  88.  
  89. ALTab:AddSlider("FOV Size", function(value)
  90. Aiming.FOV = value
  91. end, {
  92. ["min"] = 0,
  93. ["max"] = 400,
  94. ["readonly"] = false,
  95. })
  96.  
  97.  
  98. ALTab:AddSwitch("Visible Check", function(bool)
  99. Aiming.VisibleCheck = bool
  100. end)
  101.  
  102. -- // Overwrite to account downed
  103. function Aiming.Check()
  104. -- // Check A
  105. if not (Aiming.Enabled == true and Aiming.Selected ~= LocalPlayer and Aiming.SelectedPart ~= nil) then
  106. return false
  107. end
  108.  
  109. -- // Check if downed
  110. local Character = Aiming.Character(Aiming.Selected)
  111. local KOd = Character:WaitForChild("BodyEffects")["K.O"].Value
  112. local Grabbed = Character:FindFirstChild("GRABBING_CONSTRAINT") ~= nil
  113.  
  114. -- // Check B
  115. if (KOd or Grabbed) then
  116. return false
  117. end
  118.  
  119. -- //
  120. return true
  121. end
  122.  
  123. -- // Hook
  124. local __index
  125. __index = hookmetamethod(game, "__index", function(t, k)
  126. -- // Check if it trying to get our mouse's hit or target and see if we can use it
  127. if (t:IsA("Mouse") and (k == "Hit" or k == "Target") and Aiming.Check()) then
  128. -- // Vars
  129. local SelectedPart = Aiming.SelectedPart
  130.  
  131. -- // Hit/Target
  132. if (DaHoodSettings.SilentAim and (k == "Hit" or k == "Target")) then
  133. -- // Hit to account prediction
  134. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  135.  
  136. -- // Return modded val
  137. return (k == "Hit" and Hit or SelectedPart)
  138. end
  139. end
  140.  
  141. -- // Return
  142. return __index(t, k)
  143. end)
  144.  
  145. -- // Aimlock
  146. RunService:BindToRenderStep("AimLock", 0, function()
  147. if (DaHoodSettings.AimLock and Aiming.Check() and UserInputService:IsKeyDown(DaHoodSettings.AimLockKeybind)) then
  148. -- // Vars
  149. local SelectedPart = Aiming.SelectedPart
  150.  
  151. -- // Hit to account prediction
  152. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  153.  
  154. -- // Set the camera to face towards the Hit
  155. CurrentCamera.CFrame = CFrame.lookAt(CurrentCamera.CFrame.Position, Hit.Position)
  156. end
  157. end)
Add Comment
Please, Sign In to add comment