Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua"))()
- local GUI = Mercury:Create{
- Name = "Arsenal",
- Size = UDim2.fromOffset(600, 400),
- Theme = Mercury.Themes.Dark,
- Link = "https://github.com/deeeity/mercury-lib"
- }
- local Tab = GUI:Tab{
- Name = "Combat",
- Icon = "rbxassetid://8569322835"
- }
- local Tamb = GUI:Tab{
- Name = "Credit",
- Icon = "rbxassetid://8569322835"
- }
- Tab:Button{
- Name = "AimBot",
- Description = nil,
- Callback = function()
- 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))
- end
- }
- GUI:Notification{
- Title = "Alert",
- Text = "Hello user",
- Duration = 3,
- Callback = function() end
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement