Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local ScreenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
- -- خلفية
- local BG = Instance.new("Frame", ScreenGui)
- BG.Size = UDim2.new(1,0,1,0)
- BG.BackgroundColor3 = Color3.fromRGB(0,0,0)
- -- Matrix
- for i = 1,60 do
- local line = Instance.new("Frame", BG)
- line.Size = UDim2.new(0,2,1,0)
- line.Position = UDim2.new(math.random(),0,0,0)
- line.BackgroundColor3 = Color3.fromRGB(0,255,0)
- task.spawn(function()
- while ScreenGui.Parent do
- line.Position = UDim2.new(line.Position.X.Scale,0,math.random(),0)
- task.wait(0.05)
- end
- end)
- end
- -- النص
- local Text = Instance.new("TextLabel", BG)
- Text.Size = UDim2.new(1,0,0,100)
- Text.Position = UDim2.new(0,0,0.4,0)
- Text.BackgroundTransparency = 1
- Text.Text = "تم تهكير الماب"
- Text.TextColor3 = Color3.fromRGB(0,255,0)
- Text.TextScaled = true
- Text.Font = Enum.Font.Code
- task.wait(4)
- ScreenGui:Destroy()
- --------------------------------------------------
- -- 🔑 المفتاح
- local correctKey = "305511"
- local KeyGui = Instance.new("ScreenGui", game.CoreGui)
- local Frame = Instance.new("Frame", KeyGui)
- Frame.Size = UDim2.new(0, 300, 0, 150)
- Frame.Position = UDim2.new(0.5, -150, 0.5, -75)
- local TextBox = Instance.new("TextBox", Frame)
- TextBox.Size = UDim2.new(1, -20, 0, 40)
- TextBox.Position = UDim2.new(0, 10, 0, 20)
- TextBox.PlaceholderText = "Enter Key..."
- local Button = Instance.new("TextButton", Frame)
- Button.Size = UDim2.new(1, -20, 0, 40)
- Button.Position = UDim2.new(0, 10, 0, 80)
- Button.Text = "Check Key"
- Button.MouseButton1Click:Connect(function()
- if TextBox.Text == correctKey then
- KeyGui:Destroy()
- -- إشعار بدون صوت
- local NotiGui = Instance.new("ScreenGui", game.CoreGui)
- local Noti = Instance.new("TextLabel", NotiGui)
- Noti.Size = UDim2.new(0,250,0,50)
- Noti.Position = UDim2.new(0,10,0,10)
- Noti.BackgroundColor3 = Color3.fromRGB(0,0,0)
- Noti.TextColor3 = Color3.fromRGB(0,255,0)
- Noti.TextScaled = true
- Noti.Font = Enum.Font.Code
- Noti.Text = "تم التفعيل 🔥"
- task.delay(3,function()
- NotiGui:Destroy()
- end)
- -- Library
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- _G.Window = Library.CreateLib("lafv305lavf", "BloodTheme")
- --------------------------------------------------
- -- ➕➖ تحكم حقيقي
- local ToggleGui = Instance.new("ScreenGui", game.CoreGui)
- local Minus = Instance.new("TextButton", ToggleGui)
- Minus.Size = UDim2.new(0,50,0,50)
- Minus.Position = UDim2.new(0,100,0,200)
- Minus.Text = "-"
- Minus.BackgroundColor3 = Color3.fromRGB(0,0,0)
- Minus.TextColor3 = Color3.fromRGB(255,0,0)
- Minus.TextScaled = true
- local Plus = Instance.new("TextButton", ToggleGui)
- Plus.Size = UDim2.new(0,50,0,50)
- Plus.Position = UDim2.new(0,160,0,200)
- Plus.Text = "+"
- Plus.BackgroundColor3 = Color3.fromRGB(0,0,0)
- Plus.TextColor3 = Color3.fromRGB(0,255,0)
- Plus.TextScaled = true
- -- 🎯 نحدد واجهة السكربت
- local ScriptUI
- task.wait(1)
- for _,v in pairs(game.CoreGui:GetChildren()) do
- if v:IsA("ScreenGui") and v ~= ToggleGui then
- ScriptUI = v
- end
- end
- -- ➖ يخفي
- Minus.MouseButton1Click:Connect(function()
- if ScriptUI then
- ScriptUI.Enabled = false
- end
- end)
- -- ➕ يظهر
- Plus.MouseButton1Click:Connect(function()
- if ScriptUI then
- ScriptUI.Enabled = true
- end
- end)
- --------------------------------------------------
- -- 🎯 AIM
- local TabAim = _G.Window:NewTab("AIM")
- local SectionAim = TabAim:NewSection("AIM")
- local aim = false
- local smoothness = 0.4
- SectionAim:NewToggle("AIM Bot 🔥", "", function(state)
- aim = state
- end)
- game:GetService("RunService").RenderStepped:Connect(function()
- if not aim then return end
- local camera = workspace.CurrentCamera
- local mouse = game:GetService("UserInputService"):GetMouseLocation()
- local closest, dist = nil, math.huge
- for _,v in pairs(game.Players:GetPlayers()) do
- if v ~= player and v.Character and v.Character:FindFirstChild("Head") then
- local pos, visible = camera:WorldToViewportPoint(v.Character.Head.Position)
- if visible then
- local diff = (Vector2.new(pos.X,pos.Y) - mouse).Magnitude
- if diff < dist then
- dist = diff
- closest = v
- end
- end
- end
- end
- if closest then
- camera.CFrame = camera.CFrame:Lerp(
- CFrame.new(camera.CFrame.Position, closest.Character.Head.Position),
- smoothness
- )
- end
- end)
- -- 👁️ ESP
- SectionAim:NewButton("ESP 🔴", "", function()
- for _,v in pairs(game.Players:GetPlayers()) do
- if v ~= player and v.Character then
- local h = Instance.new("Highlight")
- h.Parent = v.Character
- end
- end
- end)
- -- ✈️ Fly
- local TabFly = _G.Window:NewTab("Fly")
- local SectionFly = TabFly:NewSection("Fly")
- SectionFly:NewButton("Fly ✈️", "", function()
- loadstring("\108\111\97\100...")()
- end)
- -- 👻 Invisible
- local TabInv = _G.Window:NewTab("Invisible")
- local SectionInv = TabInv:NewSection("Invisible")
- local invisible = false
- SectionInv:NewToggle("Invisible 👻", "", function(state)
- invisible = state
- end)
- local function updateCharacter(char)
- for _,v in pairs(char:GetDescendants()) do
- if v:IsA("BasePart") then
- v.Transparency = invisible and 1 or 0
- end
- end
- end
- game:GetService("RunService").RenderStepped:Connect(function()
- if player.Character then
- updateCharacter(player.Character)
- end
- end)
- player.CharacterAdded:Connect(function(char)
- wait(1)
- updateCharacter(char)
- end)
- -- 💀 Kill
- local TabKill = _G.Window:NewTab("Kill")
- local SectionKill = TabKill:NewSection("Kill")
- local kill = false
- SectionKill:NewToggle("Auto Kill 💀", "", function(state)
- kill = state
- end)
- game:GetService("RunService").Stepped:Connect(function()
- if kill then
- for _,v in pairs(game.Players:GetPlayers()) do
- if v ~= player and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
- player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
- end
- end
- end
- end)
- -- Jump
- local TabJump = _G.Window:NewTab("Jump")
- local SectionJump = TabJump:NewSection("Jump")
- SectionJump:NewSlider("Jump", "", 200, 50, function(v)
- player.Character.Humanoid.JumpPower = v
- end)
- -- Speed
- local TabSpeed = _G.Window:NewTab("Speed")
- local SectionSpeed = TabSpeed:NewSection("Speed")
- SectionSpeed:NewSlider("Speed", "", 200, 16, function(v)
- player.Character.Humanoid.WalkSpeed = v
- end)
- else
- print("❌ المفتاح غلط")
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment