Advertisement
ARY106_7

سكربت الربيع كشته

Aug 3rd, 2024
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.65 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("سكربت احلام العصر درجه اولى 🤤 / الربيع كشته", "BloodTheme")
  3.  
  4. local qTab = Window:NewTab("Player")
  5. local gTab = Window:NewTab("Money")
  6. local pTab = Window:NewTab("Players")
  7. local mTab = Window:NewTab("Hack")
  8. local tTab = Window:NewTab("Teleport")
  9. local zTab = Window:NewTab("Settings")
  10.  
  11. local Section = qTab:NewSection("player mod")
  12.  
  13. Section:NewSlider("speed", "", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  15. end)
  16.  
  17. Section:NewSlider("Jump", "", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  18. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  19. end)
  20.  
  21. Section:NewButton("afk", "", function()
  22. loadstring(game:HttpGet("https://pastebin.com/raw/sDXcYFhR", true))()
  23. end)
  24.  
  25.  
  26.  
  27. Section:NewButton("fly E", "", function()
  28. repeat wait()
  29. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  30. local mouse = game.Players.LocalPlayer:GetMouse()
  31. repeat wait() until mouse
  32. local plr = game.Players.LocalPlayer
  33. local torso = plr.Character.Head
  34. local flying = false
  35. local deb = true
  36. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  37. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  38. local maxspeed = 400
  39. local speed = 5000
  40.  
  41. function Fly()
  42. local bg = Instance.new("BodyGyro", torso)
  43. bg.P = 9e4
  44. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  45. bg.cframe = torso.CFrame
  46. local bv = Instance.new("BodyVelocity", torso)
  47. bv.velocity = Vector3.new(0,0.1,0)
  48. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  49. repeat wait()
  50. plr.Character.Humanoid.PlatformStand = true
  51. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  52. speed = speed+.5+(speed/maxspeed)
  53. if speed > maxspeed then
  54. speed = maxspeed
  55. end
  56. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  57. speed = speed-1
  58. if speed < 0 then
  59. speed = 0
  60. end
  61. end
  62. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  63. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  64. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  65. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  66. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  67. else
  68. bv.velocity = Vector3.new(0,0.1,0)
  69. end
  70. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  71. until not flying
  72. ctrl = {f = 0, b = 0, l = 0, r = 0}
  73. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  74. speed = 0
  75. bg:Destroy()
  76. bv:Destroy()
  77. plr.Character.Humanoid.PlatformStand = false
  78. end
  79. mouse.KeyDown:connect(function(key)
  80. if key:lower() == "e" then
  81. if flying then flying = false
  82. else
  83. flying = true
  84. Fly()
  85. end
  86. elseif key:lower() == "w" then
  87. ctrl.f = 1
  88. elseif key:lower() == "s" then
  89. ctrl.b = -1
  90. elseif key:lower() == "a" then
  91. ctrl.l = -1
  92. elseif key:lower() == "d" then
  93. ctrl.r = 1
  94. end
  95. end)
  96. mouse.KeyUp:connect(function(key)
  97. if key:lower() == "w" then
  98. ctrl.f = 0
  99. elseif key:lower() == "s" then
  100. ctrl.b = 0
  101. elseif key:lower() == "a" then
  102. ctrl.l = 0
  103. elseif key:lower() == "d" then
  104. ctrl.r = 0
  105. end
  106. end)
  107. Fly()
  108. end)
  109.  
  110. local Section = gTab:NewSection("money")
  111.  
  112. Section:NewTextBox("money", "", function(txt)
  113. local ohString1 = "NewCamel4"
  114. local ohNumber2 = -txt
  115.  
  116. game:GetService("ReplicatedStorage").Remotes.BuyAnimal:FireServer(ohString1, ohNumber2)
  117.  
  118.  
  119. end)
  120.  
  121. Section:NewButton("Whistling", "", function()
  122. local ohString1 = "NewCamel4"
  123. local ohNumber2 = game:GetService("Players").LocalPlayer.SavingData.Riyal.Value
  124.  
  125. game:GetService("ReplicatedStorage").Remotes.BuyAnimal:FireServer(ohString1, ohNumber2)
  126. end)
  127.  
  128. Section:NewButton("Drop Money", "", function()
  129. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  130. end)
  131.  
  132. Section:NewButton("leaderstats Riyal", "", function()
  133. local Players = game:GetService("Players")
  134. local LocalPlayer = Players.LocalPlayer
  135.  
  136. for _, player in ipairs(Players:GetPlayers()) do
  137. if player ~= LocalPlayer then
  138. if player:FindFirstChild("SavingData") and player.SavingData:FindFirstChild("Riyal") then
  139. player.SavingData.Riyal.Parent = player.leaderstats
  140. end
  141. end
  142. end
  143. end)
  144.  
  145. Section:NewToggle("Take money", "", function(state)
  146. if state then
  147. getgenv().Takemoney = true
  148. repeat wait (.1)
  149. local playerGui = workspace
  150. local foundCar = false
  151.  
  152. for _, child in pairs(playerGui:GetChildren()) do
  153. if child.Name:match("Cash") then
  154. foundCar = true
  155. local success, error = pcall(function()
  156. fireclickdetector(child.ClickDetector)
  157. end)
  158. end
  159. end
  160. until getgenv().Takemoney == false
  161. else
  162. getgenv().Takemoney = false
  163. end
  164. end)
  165.  
  166. local Section = pTab:NewSection("ToJail")
  167.  
  168.  
  169. Plr = {}
  170. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  171. table.insert(Plr,v.Name)
  172. end
  173. local drop = Section:NewDropdown("ToJail", "Click To Select", Plr, function(t)
  174. local text = t
  175.  
  176. game:GetService("ReplicatedStorage").CarbonEvents.ToJail:FireServer(text)
  177. end)
  178.  
  179.  
  180.  
  181.  
  182. Section:NewButton("All ToJail", "", function()
  183. for i,v in pairs(game.Players:GetPlayers()) do
  184. if v.Name ~= game.Players.LocalPlayer.Name then
  185. local text = v.Name
  186.  
  187. game:GetService("ReplicatedStorage").CarbonEvents.ToJail:FireServer(text)
  188. end
  189. end
  190. end)
  191.  
  192.  
  193. Section:NewToggle("loop All ToJail", "", function(state)
  194. if state then
  195. getgenv().ToJail = true
  196. repeat wait (2)
  197. for i,v in pairs(game.Players:GetPlayers()) do
  198. if v.Name ~= game.Players.LocalPlayer.Name then
  199. local text = v.Name
  200.  
  201. game:GetService("ReplicatedStorage").CarbonEvents.ToJail:FireServer(text)
  202. end
  203. end
  204.  
  205. until getgenv().ToJail == false
  206. else
  207. getgenv().ToJail = false
  208. end
  209. end)
  210.  
  211. local Section = pTab:NewSection("Kill")
  212.  
  213.  
  214. Section:NewButton("Important", "", function()
  215. local player = game.Players.LocalPlayer
  216. local rootPart = player.Character.HumanoidRootPart
  217.  
  218. local lastPosition = rootPart.CFrame.Position
  219. local lastRotation = rootPart.CFrame.Rotation
  220. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(307.558105, 11.9368887, 2144.99341, 0.112623386, 6.94125717e-08, 0.993637741, -4.17714183e-08, 1, -6.51224639e-08, -0.993637741, -3.41713466e-08, 0.112623386)
  221. wait(.3)
  222. fireclickdetector(workspace.GunSHop:GetChildren()[14].Model.gun6.ClickDetector)
  223. wait(.5)
  224. rootPart.CFrame = CFrame.fromEulerAngles(lastRotation.X, lastRotation.Y, lastRotation.Z) * CFrame.new(lastPosition)
  225. end)
  226.  
  227.  
  228. Section:NewButton("Kill all", "", function()
  229. for i,v in pairs(game.Players:GetPlayers()) do
  230. if v.Name ~= game.Players.LocalPlayer.Name then
  231.  
  232. local args = {
  233. [1] = game:GetService("Players").LocalPlayer.Character.Bazooka,
  234. [2] = {
  235. ["p"] = v.Character.HumanoidRootPart.Position,
  236. ["pid"] = 1,
  237. ["part"] = workspace.Terrain,
  238. ["d"] = 999999999999.13335418701172,
  239. ["maxDist"] = 99999999.9370231628418,
  240. ["h"] = workspace.Terrain,
  241. ["m"] = Enum.Material.Sand,
  242. ["sid"] = 3,
  243. ["t"] = 0.2933224643672304,
  244. ["n"] = Vector3.new(0, 1, 0)
  245. }
  246. }
  247.  
  248. game:GetService("ReplicatedStorage").WeaponsSystem.Network.WeaponHit:FireServer(unpack(args))
  249. end
  250. end
  251. end)
  252.  
  253.  
  254.  
  255. local Section = pTab:NewSection("Control players")
  256.  
  257.  
  258. Section:NewButton("Follow", "", function()
  259. for i,v in pairs(game.Players:GetPlayers()) do
  260. if v.Name ~= game.Players.LocalPlayer.Name then
  261. -- This script was generated by Hydroxide's RemoteSpy: https://github.com/Upbolt/Hydroxide
  262.  
  263. local ohNil1 = v
  264. local ohString2 = "Follow"
  265. local ohInstance3 = game:GetService("Players").LocalPlayer
  266.  
  267. game:GetService("ReplicatedStorage").CarbonEvents.TieEvent:FireServer(ohNil1, ohString2, ohInstance3)
  268. end
  269. end
  270. end)
  271.  
  272. Section:NewButton("Stop", "", function()
  273. for i,v in pairs(game.Players:GetPlayers()) do
  274. if v.Name ~= game.Players.LocalPlayer.Name then
  275. -- This script was generated by Hydroxide's RemoteSpy: https://github.com/Upbolt/Hydroxide
  276.  
  277. local ohNil1 = v
  278. local ohString2 = "Stop"
  279. local ohInstance3 = game:GetService("Players").LocalPlayer
  280.  
  281. game:GetService("ReplicatedStorage").CarbonEvents.TieEvent:FireServer(ohNil1, ohString2, ohInstance3)
  282. end
  283. end
  284. end)
  285.  
  286. Section:NewButton("Release", "", function()
  287. local ohInstance1 = game:GetService("Players").LocalPlayer
  288. local ohString2 = "Stop"
  289. local ohInstance3 = game:GetService("Players").LocalPlayer
  290.  
  291. game:GetService("ReplicatedStorage").CarbonEvents.TieEvent:FireServer(ohInstance1, ohString2, ohInstance3)
  292. end)
  293.  
  294. Section:NewToggle("loop Follow", "", function(state)
  295. if state then
  296. getgenv().Follow = true
  297. repeat wait (.1)
  298. for i,v in pairs(game.Players:GetPlayers()) do
  299. if v.Name ~= game.Players.LocalPlayer.Name then
  300. local ohNil1 = v
  301. local ohString2 = "Follow"
  302. local ohInstance3 = game:GetService("Players").LocalPlayer
  303.  
  304. game:GetService("ReplicatedStorage").CarbonEvents.TieEvent:FireServer(ohNil1, ohString2, ohInstance3)
  305. end
  306. end
  307.  
  308. until getgenv().Follow == false
  309. else
  310. getgenv().Follow = false
  311. end
  312. end)
  313.  
  314.  
  315. local Section = mTab:NewSection("Car")
  316.  
  317. Section:NewToggle("Car random", "", function(state)
  318. if state then
  319. getgenv().random = true
  320. repeat wait ()
  321.  
  322. for i = 0, 1, 0.01 do
  323. wait()
  324. local r = math.sin(i * math.pi * 2 + 0) * 0.5 + 0.5
  325. local g = math.sin(i * math.pi * 2 + 2) * 0.5 + 0.5
  326. local b = math.sin(i * math.pi * 2 + 4) * 0.5 + 0.5
  327. local color = Color3.new(r, g, b)
  328. game:GetService("ReplicatedStorage").Remotes.CarColor:FireServer(color)
  329. end
  330.  
  331.  
  332. until getgenv().random == false
  333. else
  334. getgenv().random = false
  335. end
  336. end)
  337.  
  338. Section:NewToggle("inf Fuel Car", "", function(state)
  339. if state then
  340. getgenv().infFuel = true
  341. repeat wait ()
  342. local playerGui = game:GetService("Players").LocalPlayer.PlayerGui
  343. local foundCar = false
  344.  
  345. for _, child in pairs(playerGui:GetChildren()) do
  346. if child.Name:match("Car") then
  347. foundCar = true
  348. local success, error = pcall(function()
  349. child.Driver.remote:Destroy()
  350. child.LocalVehicleGui.ActiveGui.CarFuel.fueltext.Text = "7yd7"
  351. end)
  352. end
  353. end
  354. until getgenv().infFuel == false
  355. else
  356. getgenv().infFuel = false
  357. end
  358. end)
  359.  
  360.  
  361.  
  362.  
  363. Section:NewToggle("Stuck", "ToggleInfo", function(state)
  364. if state then
  365.  
  366. local ohString1 = "Stuck"
  367. local ohBoolean2 = true
  368. game:GetService("ReplicatedStorage").Remotes.Car:FireServer(ohString1, ohBoolean2)
  369.  
  370. else
  371.  
  372. local ohString1 = "Stuck"
  373.  
  374. local ohBoolean2 = false
  375. game:GetService("ReplicatedStorage").Remotes.Car:FireServer(ohString1, ohBoolean2)
  376. end
  377.  
  378. end)
  379.  
  380. Section:NewButton("delete Stuck", "", function()
  381. workspace.CarStuck:Destroy()
  382. end)
  383.  
  384.  
  385. Section:NewTextBox("Music (Put ID Music)", "", function(txtMusic)
  386. local ohString1 = "Music"
  387. local ohNumber2 = txtMusic
  388.  
  389. game:GetService("ReplicatedStorage").Remotes.Car:FireServer(ohString1, ohNumber2)
  390. end)
  391.  
  392.  
  393.  
  394. local Section = mTab:NewSection("Mzad")
  395.  
  396. Section:NewTextBox("Sale Mzad", "", function(txt2)
  397. local player = game.Players.LocalPlayer
  398. local sellAnimalUI = player.PlayerGui.SellAnimal
  399. local animal = sellAnimalUI.animals.SF.frm.Template
  400.  
  401. for _, child in pairs(animal:GetChildren()) do
  402. if child:IsA("Model") then
  403. local ohString1 = (child.Name)
  404. local ohNumber2 = txt2:gsub("\"", "")
  405.  
  406. -- Remove the quotation marks from the ohNumber2 variable.
  407. ohNumber2 = tonumber(ohNumber2)
  408.  
  409. game:GetService("ReplicatedStorage").Remotes.AddMzad:FireServer(ohString1, ohNumber2)
  410. end
  411. end
  412. end)
  413.  
  414.  
  415. local Section = mTab:NewSection("Bank")
  416.  
  417.  
  418. Section:NewButton("Activate Alarms Bank", "", function()
  419. fireproximityprompt(workspace.Bank.VaultDoor.vault.ProximityPrompt)
  420. end)
  421.  
  422.  
  423.  
  424. Section:NewButton("Unlock door Bank", "", function()
  425. fireproximityprompt(workspace.Bank.DrillCellDoor1.Drill.PromptPart.PromptAttachment.PromptDrill)
  426. fireproximityprompt(workspace.Bank.DrillCellDoor2.Drill.PromptPart.PromptAttachment.PromptDrill)
  427. fireproximityprompt(workspace.Bank.DrillCellDoor3.Drill.PromptPart.PromptAttachment.PromptDrill)
  428. fireproximityprompt(workspace.Bank.DrillCellDoor4.Drill.PromptPart.PromptAttachment.PromptDrill)
  429. fireproximityprompt(workspace.Bank.DrillCellDoor5.Drill.PromptPart.PromptAttachment.PromptDrill)
  430. fireproximityprompt(workspace.Bank.DrillCellDoor6.Drill.PromptPart.PromptAttachment.PromptDrill)
  431.  
  432. end)
  433.  
  434. Section:NewToggle("loop Activate Alarms Bank", "", function(state)
  435. if state then
  436. getgenv().Bank = true
  437. repeat wait ()
  438. fireproximityprompt(workspace.Bank.VaultDoor.vault.ProximityPrompt)
  439. until getgenv().Bank == false
  440. else
  441. getgenv().Bank = false
  442. end
  443. end)
  444.  
  445. Section:NewToggle("loop Unlock door Bank", "", function(state)
  446. if state then
  447. getgenv().doorBank = true
  448. repeat wait ()
  449.  
  450. fireproximityprompt(workspace.Bank.DrillCellDoor1.Drill.PromptPart.PromptAttachment.PromptDrill)
  451. fireproximityprompt(workspace.Bank.DrillCellDoor2.Drill.PromptPart.PromptAttachment.PromptDrill)
  452. fireproximityprompt(workspace.Bank.DrillCellDoor3.Drill.PromptPart.PromptAttachment.PromptDrill)
  453. fireproximityprompt(workspace.Bank.DrillCellDoor4.Drill.PromptPart.PromptAttachment.PromptDrill)
  454. fireproximityprompt(workspace.Bank.DrillCellDoor5.Drill.PromptPart.PromptAttachment.PromptDrill)
  455. fireproximityprompt(workspace.Bank.DrillCellDoor6.Drill.PromptPart.PromptAttachment.PromptDrill)
  456. until getgenv().doorBank == false
  457. else
  458. getgenv().doorBank = false
  459. end
  460. end)
  461.  
  462. local Section = tTab:NewSection("Teleport")
  463.  
  464. Section:NewButton("Spawn", "", function()
  465. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-23.2105598, 6.21836066, -87.1106873, 0.766415417, 0, 0.64234525, 0, 1, 0, -0.64234525, 0, 0.766415417)
  466. end)
  467.  
  468. Section:NewButton("Jail", "", function()
  469. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1376.96667, 10.75135136, 1388.12231, 0.999848723, 1.19183161e-08, 0.0173928272, -1.32703519e-08, 1, 7.76198021e-08, -0.0173928272, -7.78388696e-08, 0.999848723)
  470. end)
  471.  
  472. Section:NewButton("Mzad", "", function()
  473. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(217.659241, 9.03695774, 867.042542, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  474. end)
  475.  
  476. Section:NewButton("Store", "", function()
  477. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(70.4862137, 6.04591656, 2107.81665, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  478. end)
  479.  
  480. Section:NewButton("Bank", "", function()
  481. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-724.656982, 9.97349596, 2166.24194, -0.999852777, 2.50152041e-08, -0.017157428, 2.42165203e-08, 1, 4.67580961e-08, 0.017157428, 4.63357175e-08, -0.999852777)
  482. end)
  483.  
  484. Section:NewButton("Camel Haraj", "", function()
  485. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6.82021332, 10.9343472, 1316.59961, -0.00560772419, 0, 0.999984264, 0, 1, 0, -0.999984264, 0, -0.00560772419)
  486. end)
  487.  
  488. local Section = zTab:NewSection("Settings")
  489.  
  490. Section:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.G, function()
  491. Library:ToggleUI()
  492. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement