Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/Arceus-X-UI-Library/main/source.lua"))()
- lib:SetTitle(" سكربت احلام العصر درجه اولى | ⚔️حرب الوقت ")
- lib:AddButton("الضرب التلقائي مع القتل التلقائي", function()
- local range = 1000
- --// Variable \--
- local player = game:GetService("Players").LocalPlayer
- --// Script \--
- game:GetService("RunService").RenderStepped:Connect(function()
- local p = game.Players:GetPlayers()
- for i = 2, #p do local v = p[i].Character
- if v and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and v:FindFirstChild("HumanoidRootPart") and player:DistanceFromCharacter(v.HumanoidRootPart.Position) <= range then
- local tool = player.Character and player.Character:FindFirstChildOfClass("Tool")
- if tool and tool:FindFirstChild("Handle") then
- tool:Activate()
- for i,v in next, v:GetChildren() do
- if v:IsA("BasePart") then
- firetouchinterest(tool.Handle,v,0)
- firetouchinterest(tool.Handle,v,1)
- end
- end
- end
- end
- end
- end)
- end)
- lib:AddButton("سرعة", function()
- function isNumber(str)
- if tonumber(str) ~= nil or str == 'inf' then
- return true
- end
- end
- local tspeed = 1
- local hb = game:GetService("RunService").Heartbeat
- local tpwalking = true
- local player = game:GetService("Players")
- local lplr = player.LocalPlayer
- local chr = lplr.Character
- local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
- while tpwalking and hb:Wait() and chr and hum and hum.Parent do
- if hum.MoveDirection.Magnitude > 0 then
- if tspeed and isNumber(tspeed) then
- chr:TranslateBy(hum.MoveDirection * tonumber(tspeed))
- else
- chr:TranslateBy(hum.MoveDirection)
- end
- end
- end
- end)
Advertisement
Advertisement