Advertisement
F6_youssef

Untitled

Jan 2nd, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua"))()
  2.  
  3. local GUI = Mercury:Create{
  4. Name = "Arsenal",
  5. Size = UDim2.fromOffset(600, 400),
  6. Theme = Mercury.Themes.Dark,
  7. Link = "https://github.com/deeeity/mercury-lib"
  8. }
  9.  
  10. local Tab = GUI:Tab{
  11. Name = "Combat",
  12. Icon = "rbxassetid://8569322835"
  13. }
  14.  
  15.  
  16. local Tamb = GUI:Tab{
  17. Name = "Credit",
  18. Icon = "rbxassetid://8569322835"
  19. }
  20.  
  21. Tab:Button{
  22. Name = "AimBot",
  23. Description = nil,
  24. Callback = function()
  25. function getplrsname() for i,v in pairs(game:GetChildren()) do if v.ClassName == "Players" then return v.Name end end end local players = getplrsname() local plr = game[players].LocalPlayer coroutine.resume(coroutine.create(function() while wait(1) do coroutine.resume(coroutine.create(function() for _,v in pairs(game[players]:GetPlayers()) do if v.Name ~= plr.Name and v.Character then v.Character.RightUpperLeg.CanCollide = false v.Character.RightUpperLeg.Transparency = 75 v.Character.RightUpperLeg.Size = Vector3.new(21,21,21) v.Character.LeftUpperLeg.CanCollide = false v.Character.LeftUpperLeg.Transparency = 75 v.Character.LeftUpperLeg.Size = Vector3.new(21,21,21) v.Character.HeadHB.CanCollide = false v.Character.HeadHB.Transparency = 75 v.Character.HeadHB.Size = Vector3.new(21,21,21) v.Character.HumanoidRootPart.CanCollide = false v.Character.HumanoidRootPart.Transparency = 75 v.Character.HumanoidRootPart.Size = Vector3.new(21,21,21) end end end)) end end))
  26. end
  27. }
  28.  
  29.  
  30. GUI:Notification{
  31. Title = "Alert",
  32. Text = "Hello user",
  33. Duration = 3,
  34. Callback = function() end
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement