Advertisement
ARY106_7

سكربت ايم المهري ماب Ninja Legends

Jan 19th, 2025 (edited)
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.46 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://pastebin.com/raw/PjkY8zj0')))()
  2.  
  3. OrionLib:MakeNotification({
  4. Name = "انتظر ...",
  5. Content = "اصبر",
  6. Image = "rbxassetid://4483345998",
  7. Time = 3
  8. })
  9.  
  10.  
  11. local Window = OrionLib:MakeWindow({Name = "سكربت ايم المهري | Ninja Legends", SearchBar = { Default = 'بحث قوائم في السكربت', ClearTextOnFocus = true }, HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  12. local Players = game:GetService("Players")
  13.  
  14. local AutoClicking = false
  15. local AutoSelling = false
  16. local BuyingSwords = false
  17. local BuyingBelts = false
  18. local ClickInterval = 0.1 -- Intervalo entre swings em segundos
  19.  
  20. -- Funções de Auto Click
  21. local function swingKatana()
  22. local args = { [1] = "swingKatana" }
  23. Players.LocalPlayer.ninjaEvent:FireServer(unpack(args))
  24. end
  25.  
  26. local function startAutoClick()
  27. AutoClicking = true
  28. while AutoClicking do
  29. swingKatana()
  30. wait(ClickInterval)
  31. end
  32. end
  33.  
  34. local function stopAutoClick()
  35. AutoClicking = false
  36. end
  37.  
  38. -- Funções de Auto Sell
  39. local function autoSell()
  40. AutoSelling = true
  41. local player = Players.LocalPlayer
  42. local character = player.Character or player.CharacterAdded:Wait()
  43. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  44. local humanoid = character:WaitForChild("Humanoid")
  45.  
  46. humanoid.PlatformStand = true -- Desativa movimento do jogador
  47.  
  48. while AutoSelling do
  49. humanoidRootPart.CFrame = CFrame.new(98.59016418457031, 91245.5546875, 124.98483276367188)
  50. wait(0.01)
  51. end
  52.  
  53. humanoid.PlatformStand = false -- Reativa movimento do jogador
  54. end
  55.  
  56. local function stopAutoSell()
  57. AutoSelling = false
  58. end
  59.  
  60. -- Funções de Compra de Espadas
  61. local function buySwords()
  62. local islands = {
  63. "Blazing Vortex Island",
  64. "Inner Peace Island",
  65. "Dark Elements Island",
  66. "Soul Fusion Island",
  67. "Chaos Legends Island",
  68. "Skystorm Ultraus Island",
  69. "Cybernetic Legends Island",
  70. "Dragon Legend Island",
  71. "Golden Master Island",
  72. "Winter Wonder Island",
  73. "Mythical Souls Island",
  74. "Midnight Shadow Island",
  75. "Ancient Inferno Island",
  76. "Thunderstorm",
  77. "Sandstorm",
  78. "Eternal Island",
  79. "Tundra Island",
  80. "Space Island",
  81. "Astral Island",
  82. "Ground"
  83. }
  84.  
  85. for _, island in ipairs(islands) do
  86. if not BuyingSwords then break end -- Para a compra se o toggle for desativado
  87. local args = { [1] = "buyAllSwords", [2] = island }
  88. Players.LocalPlayer.ninjaEvent:FireServer(unpack(args))
  89. wait(1) -- Espera 1 segundo entre as compras
  90. end
  91. end
  92.  
  93. local function startBuyingSwords()
  94. BuyingSwords = true
  95. while BuyingSwords do
  96. buySwords() -- Chama a função de compra de espadas
  97. wait(1) -- Espera 1 segundo antes de repetir
  98. end
  99. end
  100.  
  101. local function stopBuyingSwords()
  102. BuyingSwords = false
  103. end
  104.  
  105. -- Funções de Compra de Cintos
  106. local function buyBelts()
  107. local islands = {
  108. "Blazing Vortex Island",
  109. "Inner Peace Island",
  110. "Dark Elements Island",
  111. "Soul Fusion Island",
  112. "Chaos Legends Island",
  113. "Skystorm Ultraus Island",
  114. "Cybernetic Legends Island",
  115. "Dragon Legend Island",
  116. "Golden Master Island",
  117. "Winter Wonder Island",
  118. "Mythical Souls Island",
  119. "Midnight Shadow Island",
  120. "Ancient Inferno Island",
  121. "Thunderstorm",
  122. "Sandstorm",
  123. "Eternal Island",
  124. "Tundra Island",
  125. "Space Island",
  126. "Astral Island",
  127. "Ground"
  128. }
  129.  
  130. for _, island in ipairs(islands) do
  131. if not BuyingBelts then break end -- Para a compra se o toggle for desativado
  132. local args = { [1] = "buyAllBelts", [2] = island }
  133. Players.LocalPlayer.ninjaEvent:FireServer(unpack(args))
  134. wait(1) -- Espera 1 segundo entre as compras
  135. end
  136. end
  137.  
  138. local function startBuyingBelts()
  139. BuyingBelts = true
  140. while BuyingBelts do
  141. buyBelts() -- Chama a função de compra de cintos
  142. wait(1) -- Espera 1 segundo antes de repetir
  143. end
  144. end
  145.  
  146. local function stopBuyingBelts()
  147. BuyingBelts = false
  148. end
  149.  
  150. -- Função para reiniciar as funcionalidades após respawn
  151. local function onCharacterAdded(character)
  152. if AutoSelling then autoSell() end
  153. if AutoClicking then startAutoClick() end
  154. if BuyingSwords then startBuyingSwords() end
  155. if BuyingBelts then startBuyingBelts() end
  156. end
  157.  
  158. -- Conecta o evento de respawn
  159. Players.LocalPlayer.CharacterAdded:Connect(onCharacterAdded)
  160.  
  161. --[[
  162. Name = <string> - The name of the UI.
  163. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  164. SaveConfig = <bool> - Toggles the config saving in the UI.
  165. ConfigFolder = <string> - The name of the folder where the configs are saved.
  166. IntroEnabled = <bool> - Whether or not to show the intro animation.
  167. IntroText = <string> - Text to show in the intro animation.
  168. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  169. Icon = <string> - URL to the image you want displayed on the window.
  170. CloseCallback = <function> - Function to execute when the window is closed.
  171. ]]local Tab = Window:MakeTab({
  172. Name = "تفريم",
  173. Icon = "rbxassetid://16862721430",
  174. PremiumOnly = false
  175. })
  176.  
  177. --[[
  178. Name = <string> - The name of the tab.
  179. Icon = <string> - The icon of the tab.
  180. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  181. ]]local Section = Tab:AddSection({
  182. Name = "تفريم"
  183. })
  184.  
  185. Tab:AddToggle({
  186. Name = "تفريم ب سيف",
  187. Default = false,
  188. Callback = function(Value)
  189. if Value then
  190. startAutoClick()
  191. else
  192. stopAutoClick()
  193. end
  194. end
  195. })
  196.  
  197. Tab:AddToggle({
  198. Name = "ريبيث",
  199. Default = false,
  200. Callback = function(Value)
  201. if Value then
  202. autoSell()
  203. else
  204. stopAutoSell()
  205. end
  206. end
  207. })
  208.  
  209. local Tab = Window:MakeTab({
  210. Name = "شرا",
  211. Icon = "rbxassetid://4483345998",
  212. PremiumOnly = false
  213. })
  214.  
  215. --[[
  216. Name = <string> - The name of the tab.
  217. Icon = <string> - The icon of the tab.
  218. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  219. ]]local Section = Tab:AddSection({
  220. Name = "شرا"
  221. })
  222.  
  223. Tab:AddToggle({
  224. Name = "شرا سيوف",
  225. Default = false,
  226. Callback = function(Value)
  227. if Value then
  228. startBuyingSwords()
  229. else
  230. stopBuyingSwords()
  231. end
  232. end
  233. })
  234.  
  235.  
  236. Tab:AddToggle({
  237. Name = "شرا بيلتس",
  238. Default = false,
  239. Callback = function(Value)
  240. if Value then
  241. startBuyingBelts()
  242. else
  243. stopBuyingBelts()
  244. end
  245. end
  246. })
  247.  
  248. local Tab = Window:MakeTab({
  249. Name = "ثاني",
  250. Icon = "rbxassetid://4483345998",
  251. PremiumOnly = false
  252. })
  253.  
  254. Tab:AddToggle({
  255. Name = "عدم الموت",
  256. Default = false,
  257. Callback = function(value)
  258. getgenv().God = (value)
  259. while getgenv().God == true do
  260. game.Players.LocalPlayer.Character.Humanoid:Remove()
  261. Instance.new('Humanoid', game.Players.LocalPlayer.Character)
  262. game:GetService("Workspace")[game.Players.LocalPlayer.Name]:FindFirstChildOfClass(
  263. 'Humanoid').HipHeight = 2
  264. wait(10)
  265. end
  266. end
  267. })
  268.  
  269.  
  270. Tab:AddButton({
  271. Name = "سكربت طيران",
  272. Callback = function()
  273. loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
  274. end
  275. })
  276.  
  277. Tab:AddButton({
  278. Name = "راس مخفي",
  279. Callback = function()
  280. game.Players.localPlayer.Character.Head.Size = Vector3.new(0,0,0)
  281. end
  282. })
  283.  
  284. Tab:AddButton({
  285. Name = "سكربت ادمن",
  286. Callback = function()
  287. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  288. end
  289. })
  290.  
  291. Tab:AddButton({
  292. Name = "سكربت ادمن 2",
  293. Callback = function()
  294. loadstring(game:HttpGet('https://raw.githubusercontent.com/BloodyBurns/Hex/main/Iv%20Admin%20v3.lua'))()
  295. end
  296. })
  297.  
  298. local Tab = Window:MakeTab({
  299. Name = "التخريب",
  300. Icon = "rbxassetid://4483345998",
  301. PremiumOnly = false
  302. })
  303.  
  304. Tab:AddButton({
  305. Name = "تحديد الشخص الي تبي تطيره",
  306. Callback = function()
  307. loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Auto%20Fling%20Player'))()
  308. end
  309. })
  310.  
  311. Tab:AddButton({
  312. Name = "سكربت تنقل",
  313. Callback = function()
  314. -- Load the Kavo UI Library
  315. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  316.  
  317. -- Create a new window with the DarkTheme
  318. local Window = Library.CreateLib("التنقل", "BloodTheme")
  319.  
  320. -- Create a new tab in the window
  321. local Tab = Window:NewTab("التنقل")
  322.  
  323. -- Create a new section in the tab
  324. local Section = Tab:NewSection("الانتقال الى اللاعب")
  325.  
  326. -- Create a textbox for the player's username
  327. Section:NewTextBox("اسم اللاعب", "Enter the username of the player you want to teleport to", function(username)
  328. -- Store the entered username for later use
  329. _G.targetUsername = username
  330. end)
  331.  
  332. -- Create a button that will teleport the player when clicked
  333. Section:NewButton("تنقل | TELEPORT", "Teleport to the entered player", function()
  334. -- Get the Players service
  335. local Players = game:GetService("Players")
  336.  
  337. -- Get the local player
  338. local player = Players.LocalPlayer
  339.  
  340. -- Find the target player in the game
  341. local targetPlayer = Players:FindFirstChild(_G.targetUsername)
  342.  
  343. -- Check that the target player exists and has a character
  344. if targetPlayer and targetPlayer.Character then
  345. -- Teleport the player to the target player
  346. player.Character.HumanoidRootPart.CFrame = targetPlayer.Character.HumanoidRootPart.CFrame
  347. else
  348. print("Target player not found or does not have a character.")
  349. end
  350. end)
  351. end
  352. })
  353.  
  354. Tab:AddButton({
  355. Name = "طيران الكل",
  356. Callback = function()
  357. print("Before the while loop")
  358.  
  359.  
  360.  
  361. local Targets = {"All"} -- "All", "Target Name", "Target name can be shortened"
  362.  
  363. local Players = game:GetService("Players")
  364. local Player = Players.LocalPlayer
  365.  
  366. local AllBool = falseasa
  367.  
  368. local GetPlayer = function(Name)
  369. Name = Name:lower()
  370. if Name == "all" or Name == "others" then
  371. AllBool = true
  372. return
  373. elseif Name == "random" then
  374. local GetPlayers = Players:GetPlayers()
  375. if table.find(GetPlayers,Player) then table.remove(GetPlayers,table.find(GetPlayers,Player)) end
  376. return GetPlayers[math.random(#GetPlayers)]
  377. elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
  378. for _,x in next, Players:GetPlayers() do
  379. if x ~= Player then
  380. if x.Name:lower():match("^"..Name) then
  381. return x;
  382. elseif x.DisplayName:lower():match("^"..Name) then
  383. return x;
  384. end
  385. end
  386. end
  387. else
  388. return
  389. end
  390. end
  391.  
  392. local Message = function(_Title, _Text, Time)
  393. game:GetService("StarterGui"):SetCore("SendNotification", {Title = _Title, Text = _Text, Duration = Time})
  394. end
  395.  
  396. local SkidFling = function(TargetPlayer)
  397. local Character = Player.Character
  398. local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid")
  399. local RootPart = Humanoid and Humanoid.RootPart
  400.  
  401. local TCharacter = TargetPlayer.Character
  402. local THumanoid
  403. local TRootPart
  404. local THead
  405. local Accessory
  406. local Handle
  407.  
  408. if TCharacter:FindFirstChildOfClass("Humanoid") then
  409. THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
  410. end
  411. if THumanoid and THumanoid.RootPart then
  412. TRootPart = THumanoid.RootPart
  413. end
  414. if TCharacter:FindFirstChild("Head") then
  415. THead = TCharacter.Head
  416. end
  417. if TCharacter:FindFirstChildOfClass("Accessory") then
  418. Accessory = TCharacter:FindFirstChildOfClass("Accessory")
  419. end
  420. if Accessoy and Accessory:FindFirstChild("Handle") then
  421. Handle = Accessory.Handle
  422. end
  423.  
  424. if Character and Humanoid and RootPart then
  425. if RootPart.Velocity.Magnitude < 50 then
  426. getgenv().OldPos = RootPart.CFrame
  427. end
  428. if THumanoid and THumanoid.Sit and not AllBool then
  429. return Message("Error Occurred", "Targeting is sitting", 5) -- u can remove dis part if u want lol
  430. end
  431. if THead then
  432. workspace.CurrentCamera.CameraSubject = THead
  433. elseif not THead and Handle then
  434. workspace.CurrentCamera.CameraSubject = Handle
  435. elseif THumanoid and TRootPart then
  436. workspace.CurrentCamera.CameraSubject = THumanoid
  437. end
  438. if not TCharacter:FindFirstChildWhichIsA("BasePart") then
  439. return
  440. end
  441.  
  442. local FPos = function(BasePart, Pos, Ang)
  443. RootPart.CFrame = CFrame.new(BasePart.Position) * Pos * Ang
  444. Character:SetPrimaryPartCFrame(CFrame.new(BasePart.Position) * Pos * Ang)
  445. RootPart.Velocity = Vector3.new(9e7, 9e7 * 10, 9e7)
  446. RootPart.RotVelocity = Vector3.new(9e8, 9e8, 9e8)
  447. end
  448.  
  449. local SFBasePart = function(BasePart)
  450. local TimeToWait = 0.1
  451. local Time = tick()
  452. local Angle = 0
  453.  
  454. repeat
  455. if RootPart and THumanoid then
  456. if BasePart.Velocity.Magnitude < 50 then
  457. Angle = Angle + 100
  458.  
  459. FPos(BasePart, CFrame.new(0, 1.5, 0) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle),0 ,0))
  460. task.wait()
  461.  
  462. FPos(BasePart, CFrame.new(0, -1.5, 0) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
  463. task.wait()
  464.  
  465. FPos(BasePart, CFrame.new(2.25, 1.5, -2.25) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
  466. task.wait()
  467.  
  468. FPos(BasePart, CFrame.new(-2.25, -1.5, 2.25) + THumanoid.MoveDirection * BasePart.Velocity.Magnitude / 1.25, CFrame.Angles(math.rad(Angle), 0, 0))
  469. task.wait()
  470.  
  471. FPos(BasePart, CFrame.new(0, 1.5, 0) + THumanoid.MoveDirection,CFrame.Angles(math.rad(Angle), 0, 0))
  472. task.wait()
  473.  
  474. FPos(BasePart, CFrame.new(0, -1.5, 0) + THumanoid.MoveDirection,CFrame.Angles(math.rad(Angle), 0, 0))
  475. task.wait()
  476. else
  477. FPos(BasePart, CFrame.new(0, 1.5, THumanoid.WalkSpeed), CFrame.Angles(math.rad(90), 0, 0))
  478. task.wait()
  479.  
  480. FPos(BasePart, CFrame.new(0, -1.5, -THumanoid.WalkSpeed), CFrame.Angles(0, 0, 0))
  481. task.wait()
  482.  
  483. FPos(BasePart, CFrame.new(0, 1.5, THumanoid.WalkSpeed), CFrame.Angles(math.rad(90), 0, 0))
  484. task.wait()
  485.  
  486. FPos(BasePart, CFrame.new(0, 1.5, TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(math.rad(90), 0, 0))
  487. task.wait()
  488.  
  489. FPos(BasePart, CFrame.new(0, -1.5, -TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(0, 0, 0))
  490. task.wait()
  491.  
  492. FPos(BasePart, CFrame.new(0, 1.5, TRootPart.Velocity.Magnitude / 1.25), CFrame.Angles(math.rad(90), 0, 0))
  493. task.wait()
  494.  
  495. FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(math.rad(90), 0, 0))
  496. task.wait()
  497.  
  498. FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(0, 0, 0))
  499. task.wait()
  500.  
  501. FPos(BasePart, CFrame.new(0, -1.5 ,0), CFrame.Angles(math.rad(-90), 0, 0))
  502. task.wait()
  503.  
  504. FPos(BasePart, CFrame.new(0, -1.5, 0), CFrame.Angles(0, 0, 0))
  505. task.wait()
  506. end
  507. else
  508. break
  509. end
  510. until BasePart.Velocity.Magnitude > 500 or BasePart.Parent ~= TargetPlayer.Character or TargetPlayer.Parent ~= Players or not TargetPlayer.Character == TCharacter or THumanoid.Sit or Humanoid.Health <= 0 or tick() > Time + TimeToWait
  511. end
  512.  
  513. workspace.FallenPartsDestroyHeight = 0/0
  514.  
  515. local BV = Instance.new("BodyVelocity")
  516. BV.Name = "EpixVel"
  517. BV.Parent = RootPart
  518. BV.Velocity = Vector3.new(9e8, 9e8, 9e8)
  519. BV.MaxForce = Vector3.new(1/0, 1/0, 1/0)
  520.  
  521. Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, false)
  522.  
  523. if TRootPart and THead then
  524. if (TRootPart.CFrame.p - THead.CFrame.p).Magnitude > 5 then
  525. SFBasePart(THead)
  526. else
  527. SFBasePart(TRootPart)
  528. end
  529. elseif TRootPart and not THead then
  530. SFBasePart(TRootPart)
  531. elseif not TRootPart and THead then
  532. SFBasePart(THead)
  533. elseif not TRootPart and not THead and Accessory and Handle then
  534. SFBasePart(Handle)
  535. else
  536. return Message("Error Occurred", "Target is missing everything", 5)
  537. end
  538.  
  539. BV:Destroy()
  540. Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated, true)
  541. workspace.CurrentCamera.CameraSubject = Humanoid
  542.  
  543. repeat
  544. RootPart.CFrame = getgenv().OldPos * CFrame.new(0, .5, 0)
  545. Character:SetPrimaryPartCFrame(getgenv().OldPos * CFrame.new(0, .5, 0))
  546. Humanoid:ChangeState("GettingUp")
  547. table.foreach(Character:GetChildren(), function(_, x)
  548. if x:IsA("BasePart") then
  549. x.Velocity, x.RotVelocity = Vector3.new(), Vector3.new()
  550. end
  551. end)
  552. task.wait()
  553. until (RootPart.Position - getgenv().OldPos.p).Magnitude < 25
  554. workspace.FallenPartsDestroyHeight = getgenv().FPDH
  555. else
  556. return Message("Error Occurred", "Random error", 5)
  557. end
  558. end
  559.  
  560. if not Welcome then Message("Script by DranghetaSm0ke", "Enjoy!", 5) end
  561. getgenv().Welcome = true
  562. if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return end
  563.  
  564. if AllBool then
  565. for _,x in next, Players:GetPlayers() do
  566. SkidFling(x)
  567. end
  568. end
  569.  
  570. for _,x in next, Targets do
  571. if GetPlayer(x) and GetPlayer(x) ~= Player then
  572. if GetPlayer(x).UserId ~= 1414978355 then
  573. local TPlayer = GetPlayer(x)
  574. if TPlayer then
  575. SkidFling(TPlayer)
  576. end
  577. else
  578. Message("Error Occurred", "This user is whitelisted! (Owner)", 5)
  579. end
  580. elseif not GetPlayer(x) and not AllBool then
  581. Message("Error Occurred", "Username Invalid", 5)
  582. end
  583. end
  584. local WhitelistedPlayers = {
  585. [123456789] = true, -- Replace with the actual UserId of whitelisted players
  586. [987654321] = true,
  587. }
  588.  
  589. local function IsPlayerWhitelisted(player)
  590. local userId = player.UserId
  591. return WhitelistedPlayers[userId] or false
  592. end
  593.  
  594. return IsPlayerWhitelisted
  595. end
  596. })
  597.  
  598. --[[
  599. Name = <string> - The name of the button.
  600. Callback = <function> - The function of the button.
  601. ]]
  602. local Tab = Window:MakeTab({
  603. Name = "الاعدادات",
  604. Icon = "rbxassetid://4483345998",
  605. PremiumOnly = false
  606. })
  607.  
  608. --[[
  609. Name = <string> - The name of the tab.
  610. Icon = <string> - The icon of the tab.
  611. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  612. ]]local Section = Tab:AddSection({
  613. Name = "الاعدادات"
  614. })
  615.  
  616. Tab:AddColorpicker({
  617. Name = "اختار لون السكربت",
  618. Default = Color3.fromRGB(255, 0, 0),
  619. Callback = function(Value)
  620. print(Value)
  621. end
  622. })
  623.  
  624. Tab:AddSlider({
  625. Name = "سرعه",
  626. Min = 0,
  627. Max = 400,
  628. Default = 16,
  629. Color = Color3.fromRGB(255,255,255),
  630. Increment = 1,
  631. ValueName = "حدد السرعه",
  632. Callback = function(Value)
  633. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  634. end
  635. })
  636. Tab:AddSlider({
  637. Name = "قفز",
  638. Min = 0,
  639. Max = 400,
  640. Default = 16,
  641. Color = Color3.fromRGB(255,255,255),
  642. Increment = 1,
  643. ValueName = "حدد القفز",
  644. Callback = function(Value)
  645. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Value)
  646. end
  647. })
  648.  
  649. --[[
  650. Name = <string> - The name of the slider.
  651. Min = <number> - The minimal value of the slider.
  652. Max = <number> - The maxium value of the slider.
  653. Increment = <number> - How much the slider will change value when dragging.
  654. Default = <number> - The default value of the slider.
  655. ValueName = <string> - The text after the value number.
  656. Callback = <function> - The function of the slider.
  657. ]]
  658.  
  659. --[[
  660. Name = <string> - The name of the colorpicker.
  661. Default = <color3> - The default value of the colorpicker.
  662. Callback = <function> - The function of the colorpicker.
  663. ]]local Tab = Window:MakeTab({
  664. Name = "التحديثات",
  665. Icon = "rbxassetid://4483345998",
  666. PremiumOnly = false
  667. })
  668.  
  669. --[[
  670. Name = <string> - The name of the section.
  671. ]]local Section = Tab:AddSection({
  672. Name = "تحديث رقم0.1"
  673. })
  674.  
  675. local Tab = Window:MakeTab({
  676. Name = "الحقوق",
  677. Icon = "rbxassetid://4483345998",
  678. PremiumOnly = false
  679. })
  680.  
  681. local Section = Tab:AddSection({
  682. Name = "المطورين : محمد و ايوب"
  683. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement