Lafyv23431

Untitled

Mar 25th, 2026
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.79 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local ScreenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  3.  
  4. -- خلفية
  5. local BG = Instance.new("Frame", ScreenGui)
  6. BG.Size = UDim2.new(1,0,1,0)
  7. BG.BackgroundColor3 = Color3.fromRGB(0,0,0)
  8.  
  9. -- Matrix
  10. for i = 1,60 do
  11. local line = Instance.new("Frame", BG)
  12. line.Size = UDim2.new(0,2,1,0)
  13. line.Position = UDim2.new(math.random(),0,0,0)
  14. line.BackgroundColor3 = Color3.fromRGB(0,255,0)
  15.  
  16. task.spawn(function()
  17. while ScreenGui.Parent do
  18. line.Position = UDim2.new(line.Position.X.Scale,0,math.random(),0)
  19. task.wait(0.05)
  20. end
  21. end)
  22. end
  23.  
  24. -- النص
  25. local Text = Instance.new("TextLabel", BG)
  26. Text.Size = UDim2.new(1,0,0,100)
  27. Text.Position = UDim2.new(0,0,0.4,0)
  28. Text.BackgroundTransparency = 1
  29. Text.Text = "تم تهكير الماب"
  30. Text.TextColor3 = Color3.fromRGB(0,255,0)
  31. Text.TextScaled = true
  32. Text.Font = Enum.Font.Code
  33.  
  34. task.wait(4)
  35. ScreenGui:Destroy()
  36.  
  37. --------------------------------------------------
  38.  
  39. -- 🔑 المفتاح
  40. local correctKey = "305511"
  41.  
  42. local KeyGui = Instance.new("ScreenGui", game.CoreGui)
  43.  
  44. local Frame = Instance.new("Frame", KeyGui)
  45. Frame.Size = UDim2.new(0, 300, 0, 150)
  46. Frame.Position = UDim2.new(0.5, -150, 0.5, -75)
  47.  
  48. local TextBox = Instance.new("TextBox", Frame)
  49. TextBox.Size = UDim2.new(1, -20, 0, 40)
  50. TextBox.Position = UDim2.new(0, 10, 0, 20)
  51. TextBox.PlaceholderText = "Enter Key..."
  52.  
  53. local Button = Instance.new("TextButton", Frame)
  54. Button.Size = UDim2.new(1, -20, 0, 40)
  55. Button.Position = UDim2.new(0, 10, 0, 80)
  56. Button.Text = "Check Key"
  57.  
  58. Button.MouseButton1Click:Connect(function()
  59. if TextBox.Text == correctKey then
  60. KeyGui:Destroy()
  61.  
  62. -- إشعار بدون صوت
  63. local NotiGui = Instance.new("ScreenGui", game.CoreGui)
  64. local Noti = Instance.new("TextLabel", NotiGui)
  65. Noti.Size = UDim2.new(0,250,0,50)
  66. Noti.Position = UDim2.new(0,10,0,10)
  67. Noti.BackgroundColor3 = Color3.fromRGB(0,0,0)
  68. Noti.TextColor3 = Color3.fromRGB(0,255,0)
  69. Noti.TextScaled = true
  70. Noti.Font = Enum.Font.Code
  71. Noti.Text = "تم التفعيل 🔥"
  72.  
  73. task.delay(3,function()
  74. NotiGui:Destroy()
  75. end)
  76.  
  77. -- Library
  78. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  79. _G.Window = Library.CreateLib("lafv305lavf", "BloodTheme")
  80.  
  81. --------------------------------------------------
  82. -- ➕➖ تحكم حقيقي
  83. local ToggleGui = Instance.new("ScreenGui", game.CoreGui)
  84.  
  85. local Minus = Instance.new("TextButton", ToggleGui)
  86. Minus.Size = UDim2.new(0,50,0,50)
  87. Minus.Position = UDim2.new(0,100,0,200)
  88. Minus.Text = "-"
  89. Minus.BackgroundColor3 = Color3.fromRGB(0,0,0)
  90. Minus.TextColor3 = Color3.fromRGB(255,0,0)
  91. Minus.TextScaled = true
  92.  
  93. local Plus = Instance.new("TextButton", ToggleGui)
  94. Plus.Size = UDim2.new(0,50,0,50)
  95. Plus.Position = UDim2.new(0,160,0,200)
  96. Plus.Text = "+"
  97. Plus.BackgroundColor3 = Color3.fromRGB(0,0,0)
  98. Plus.TextColor3 = Color3.fromRGB(0,255,0)
  99. Plus.TextScaled = true
  100.  
  101. -- 🎯 نحدد واجهة السكربت
  102. local ScriptUI
  103.  
  104. task.wait(1)
  105.  
  106. for _,v in pairs(game.CoreGui:GetChildren()) do
  107. if v:IsA("ScreenGui") and v ~= ToggleGui then
  108. ScriptUI = v
  109. end
  110. end
  111.  
  112. -- ➖ يخفي
  113. Minus.MouseButton1Click:Connect(function()
  114. if ScriptUI then
  115. ScriptUI.Enabled = false
  116. end
  117. end)
  118.  
  119. -- ➕ يظهر
  120. Plus.MouseButton1Click:Connect(function()
  121. if ScriptUI then
  122. ScriptUI.Enabled = true
  123. end
  124. end)
  125.  
  126. --------------------------------------------------
  127. -- 🎯 AIM
  128. local TabAim = _G.Window:NewTab("AIM")
  129. local SectionAim = TabAim:NewSection("AIM")
  130.  
  131. local aim = false
  132. local smoothness = 0.4
  133.  
  134. SectionAim:NewToggle("AIM Bot 🔥", "", function(state)
  135. aim = state
  136. end)
  137.  
  138. game:GetService("RunService").RenderStepped:Connect(function()
  139. if not aim then return end
  140. local camera = workspace.CurrentCamera
  141. local mouse = game:GetService("UserInputService"):GetMouseLocation()
  142.  
  143. local closest, dist = nil, math.huge
  144.  
  145. for _,v in pairs(game.Players:GetPlayers()) do
  146. if v ~= player and v.Character and v.Character:FindFirstChild("Head") then
  147. local pos, visible = camera:WorldToViewportPoint(v.Character.Head.Position)
  148. if visible then
  149. local diff = (Vector2.new(pos.X,pos.Y) - mouse).Magnitude
  150. if diff < dist then
  151. dist = diff
  152. closest = v
  153. end
  154. end
  155. end
  156. end
  157.  
  158. if closest then
  159. camera.CFrame = camera.CFrame:Lerp(
  160. CFrame.new(camera.CFrame.Position, closest.Character.Head.Position),
  161. smoothness
  162. )
  163. end
  164. end)
  165.  
  166. -- 👁️ ESP
  167. SectionAim:NewButton("ESP 🔴", "", function()
  168. for _,v in pairs(game.Players:GetPlayers()) do
  169. if v ~= player and v.Character then
  170. local h = Instance.new("Highlight")
  171. h.Parent = v.Character
  172. end
  173. end
  174. end)
  175.  
  176. -- ✈️ Fly
  177. local TabFly = _G.Window:NewTab("Fly")
  178. local SectionFly = TabFly:NewSection("Fly")
  179.  
  180. SectionFly:NewButton("Fly ✈️", "", function()
  181. loadstring("\108\111\97\100...")()
  182. end)
  183.  
  184. -- 👻 Invisible
  185. local TabInv = _G.Window:NewTab("Invisible")
  186. local SectionInv = TabInv:NewSection("Invisible")
  187.  
  188. local invisible = false
  189.  
  190. SectionInv:NewToggle("Invisible 👻", "", function(state)
  191. invisible = state
  192. end)
  193.  
  194. local function updateCharacter(char)
  195. for _,v in pairs(char:GetDescendants()) do
  196. if v:IsA("BasePart") then
  197. v.Transparency = invisible and 1 or 0
  198. end
  199. end
  200. end
  201.  
  202. game:GetService("RunService").RenderStepped:Connect(function()
  203. if player.Character then
  204. updateCharacter(player.Character)
  205. end
  206. end)
  207.  
  208. player.CharacterAdded:Connect(function(char)
  209. wait(1)
  210. updateCharacter(char)
  211. end)
  212.  
  213. -- 💀 Kill
  214. local TabKill = _G.Window:NewTab("Kill")
  215. local SectionKill = TabKill:NewSection("Kill")
  216.  
  217. local kill = false
  218.  
  219. SectionKill:NewToggle("Auto Kill 💀", "", function(state)
  220. kill = state
  221. end)
  222.  
  223. game:GetService("RunService").Stepped:Connect(function()
  224. if kill then
  225. for _,v in pairs(game.Players:GetPlayers()) do
  226. if v ~= player and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
  227. player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  228. end
  229. end
  230. end
  231. end)
  232.  
  233. -- Jump
  234. local TabJump = _G.Window:NewTab("Jump")
  235. local SectionJump = TabJump:NewSection("Jump")
  236.  
  237. SectionJump:NewSlider("Jump", "", 200, 50, function(v)
  238. player.Character.Humanoid.JumpPower = v
  239. end)
  240.  
  241. -- Speed
  242. local TabSpeed = _G.Window:NewTab("Speed")
  243. local SectionSpeed = TabSpeed:NewSection("Speed")
  244.  
  245. SectionSpeed:NewSlider("Speed", "", 200, 16, function(v)
  246. player.Character.Humanoid.WalkSpeed = v
  247. end)
  248.  
  249. else
  250. print("❌ المفتاح غلط")
  251. end
  252. end)
Advertisement
Add Comment
Please, Sign In to add comment