ARY106_7

سكربت ايم المهري | ماب راقدول

Mar 29th, 2025 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 142.39 KB | None | 0 0
  1. --RELOAD GUI
  2. if game.CoreGui:FindFirstChild("SysBroker") then
  3. game:GetService("StarterGui"):SetCore("SendNotification", {Title = "سكربت ايم المهري | ماب راقدول",Text = "GUI Already loaded, rejoin to re-execute",Duration = 5;})
  4. return
  5. end
  6. local version = 2
  7. --VARIABLES
  8. _G.AntiFlingToggled = false
  9. local Players = game:GetService("Players")
  10. local plr = Players.LocalPlayer
  11. local TweenService = game:GetService("TweenService")
  12. local RunService = game:GetService("RunService")
  13. local Light = game:GetService("Lighting")
  14. local HttpService = game:GetService("HttpService")
  15. local httprequest = (syn and syn.request) or (http and http.request) or http_request or (fluxus and fluxus.request) or request
  16. local mouse = plr:GetMouse()
  17. local ScriptWhitelist = {}
  18. local ForceWhitelist = {}
  19. local TargetedPlayer = nil
  20. local FlySpeed = 50
  21. local PotionTool = nil
  22. local SavedCheckpoint = nil
  23. local MinesFolder = nil
  24. local FreeEmotesEnabled = false
  25. local CannonsFolders = {}
  26.  
  27. pcall(function()
  28. MinesFolder = game:GetService("Workspace").Landmines
  29. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  30. if v.Name == "Cannons" then
  31. table.insert(CannonsFolders, v)
  32. end
  33. end
  34. end)
  35. --FUNCTIONS
  36. _G.shield = function(id)
  37. if not table.find(ForceWhitelist,id) then
  38. table.insert(ForceWhitelist, id)
  39. end
  40. end
  41.  
  42. local function RandomChar()
  43. local length = math.random(1,5)
  44. local array = {}
  45. for i = 1, length do
  46. array[i] = string.char(math.random(32, 126))
  47. end
  48. return table.concat(array)
  49. end
  50.  
  51. local function ChangeToggleColor(Button)
  52. led = Button.Ticket_Asset
  53. if led.ImageColor3 == Color3.fromRGB(255, 0, 0) then
  54. led.ImageColor3 = Color3.fromRGB(0, 255, 0)
  55. else
  56. led.ImageColor3 = Color3.fromRGB(255, 0, 0)
  57. end
  58. end
  59.  
  60. local function GetPing()
  61. return (game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValue())/1000
  62. end
  63.  
  64. local function GetPlayer(UserDisplay)
  65. if UserDisplay ~= "" then
  66. for i,v in pairs(Players:GetPlayers()) do
  67. if v.Name:lower():match(UserDisplay) or v.DisplayName:lower():match(UserDisplay) then
  68. return v
  69. end
  70. end
  71. return nil
  72. else
  73. return nil
  74. end
  75. end
  76.  
  77. local function GetCharacter(Player)
  78. if Player.Character then
  79. return Player.Character
  80. end
  81. end
  82.  
  83. local function GetRoot(Player)
  84. if GetCharacter(Player):FindFirstChild("HumanoidRootPart") then
  85. return GetCharacter(Player).HumanoidRootPart
  86. end
  87. end
  88.  
  89. local function TeleportTO(posX,posY,posZ,player,method)
  90. pcall(function()
  91. if method == "safe" then
  92. task.spawn(function()
  93. for i = 1,30 do
  94. task.wait()
  95. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  96. if player == "pos" then
  97. GetRoot(plr).CFrame = CFrame.new(posX,posY,posZ)
  98. else
  99. GetRoot(plr).CFrame = CFrame.new(GetRoot(player).Position)+Vector3.new(0,2,0)
  100. end
  101. end
  102. end)
  103. else
  104. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  105. if player == "pos" then
  106. GetRoot(plr).CFrame = CFrame.new(posX,posY,posZ)
  107. else
  108. GetRoot(plr).CFrame = CFrame.new(GetRoot(player).Position)+Vector3.new(0,2,0)
  109. end
  110. end
  111. end)
  112. end
  113.  
  114. local function PredictionTP(player,method)
  115. local root = GetRoot(player)
  116. local pos = root.Position
  117. local vel = root.Velocity
  118. GetRoot(plr).CFrame = CFrame.new((pos.X)+(vel.X)*(GetPing()*3.5),(pos.Y)+(vel.Y)*(GetPing()*2),(pos.Z)+(vel.Z)*(GetPing()*3.5))
  119. if method == "safe" then
  120. task.wait()
  121. GetRoot(plr).CFrame = CFrame.new(pos)
  122. task.wait()
  123. GetRoot(plr).CFrame = CFrame.new((pos.X)+(vel.X)*(GetPing()*3.5),(pos.Y)+(vel.Y)*(GetPing()*2),(pos.Z)+(vel.Z)*(GetPing()*3.5))
  124. end
  125. end
  126.  
  127. local function Touch(x,root)
  128. pcall(function()
  129. x = x:FindFirstAncestorWhichIsA("Part")
  130. if x then
  131. if firetouchinterest then
  132. task.spawn(function()
  133. firetouchinterest(x, root, 1)
  134. task.wait()
  135. firetouchinterest(x, root, 0)
  136. end)
  137. end
  138. end
  139. end)
  140. end
  141.  
  142.  
  143. local function GetPush()
  144. local TempPush = nil
  145. pcall(function()
  146. if plr.Backpack:FindFirstChild("Push") then
  147. PushTool = plr.Backpack.Push
  148. PushTool.Parent = plr.Character
  149. TempPush = PushTool
  150. end
  151. for i,v in pairs(Players:GetPlayers()) do
  152. if v.Character:FindFirstChild("Push") then
  153. TempPush = v.Character.Push
  154. end
  155. end
  156. end)
  157. return TempPush
  158. end
  159.  
  160. local function CheckPotion()
  161. if plr.Backpack:FindFirstChild("potion") then
  162. PotionTool = plr.Backpack:FindFirstChild("potion")
  163. return true
  164. elseif plr.Character:FindFirstChild("potion") then
  165. PotionTool = plr.Character:FindFirstChild("potion")
  166. return true
  167. else
  168. return false
  169. end
  170. end
  171.  
  172. local function Push(Target)
  173. local Push = GetPush()
  174. local FixTool = nil
  175. if Push ~= nil then
  176. local args = {[1] = Target.Character}
  177. GetPush().PushTool:FireServer(unpack(args))
  178. end
  179. if plr.Character:FindFirstChild("Push") then
  180. plr.Character.Push.Parent = plr.Backpack
  181. end
  182. if plr.Character:FindFirstChild("ModdedPush") then
  183. FixTool = plr.Character:FindFirstChild("ModdedPush")
  184. FixTool.Parent = plr.Backpack
  185. FixTool.Parent = plr.Character
  186. end
  187. if plr.Character:FindFirstChild("ClickTarget") then
  188. FixTool = plr.Character:FindFirstChild("ClickTarget")
  189. FixTool.Parent = plr.Backpack
  190. FixTool.Parent = plr.Character
  191. end
  192. if plr.Character:FindFirstChild("potion") then
  193. FixTool = plr.Character:FindFirstChild("potion")
  194. FixTool.Parent = plr.Backpack
  195. FixTool.Parent = plr.Character
  196. end
  197. end
  198.  
  199. local function ToggleRagdoll(bool)
  200. pcall(function()
  201. plr.Character["Falling down"].Disabled = bool
  202. plr.Character["Swimming"].Disabled = bool
  203. plr.Character["StartRagdoll"].Disabled = bool
  204. plr.Character["Pushed"].Disabled = bool
  205. plr.Character["RagdollMe"].Disabled = bool
  206. end)
  207. end
  208.  
  209. local function ToggleVoidProtection(bool)
  210. if bool then
  211. game.Workspace.FallenPartsDestroyHeight = 0/0
  212. else
  213. game.Workspace.FallenPartsDestroyHeight = -500
  214. end
  215. end
  216.  
  217. local function PlayAnim(id,time,speed)
  218. pcall(function()
  219. plr.Character.Animate.Disabled = false
  220. local hum = plr.Character.Humanoid
  221. local animtrack = hum:GetPlayingAnimationTracks()
  222. for i,track in pairs(animtrack) do
  223. track:Stop()
  224. end
  225. plr.Character.Animate.Disabled = true
  226. local Anim = Instance.new("Animation")
  227. Anim.AnimationId = "rbxassetid://"..id
  228. local loadanim = hum:LoadAnimation(Anim)
  229. loadanim:Play()
  230. loadanim.TimePosition = time
  231. loadanim:AdjustSpeed(speed)
  232. loadanim.Stopped:Connect(function()
  233. plr.Character.Animate.Disabled = false
  234. for i, track in pairs (animtrack) do
  235. track:Stop()
  236. end
  237. end)
  238. end)
  239. end
  240.  
  241. local function StopAnim()
  242. plr.Character.Animate.Disabled = false
  243. local animtrack = plr.Character.Humanoid:GetPlayingAnimationTracks()
  244. for i, track in pairs (animtrack) do
  245. track:Stop()
  246. end
  247. end
  248.  
  249. local function SendNotify(title, message, duration)
  250. game:GetService("StarterGui"):SetCore("SendNotification", {Title = title,Text = message,Duration = duration;})
  251. end
  252.  
  253. --LOAD GUI
  254. task.wait(0.1)
  255. local SysBroker = Instance.new("ScreenGui")
  256. local Background = Instance.new("ImageLabel")
  257. local TitleBarLabel = Instance.new("TextLabel")
  258. local SectionList = Instance.new("Frame")
  259. local Home_Section_Button = Instance.new("TextButton")
  260. local Game_Section_Button = Instance.new("TextButton")
  261. local Character_Section_Button = Instance.new("TextButton")
  262. local Target_Section_Button = Instance.new("TextButton")
  263. local Animations_Section_Button = Instance.new("TextButton")
  264. local Misc_Section_Button = Instance.new("TextButton")
  265. local Credits_Section_Button = Instance.new("TextButton")
  266. local Game_Section = Instance.new("ScrollingFrame")
  267. local AntiRagdoll_Button = Instance.new("TextButton")
  268. local PotionFling_Button = Instance.new("TextButton")
  269. local SpamMines_Button = Instance.new("TextButton")
  270. local PushAura_Button = Instance.new("TextButton")
  271. local BreakCannons_Button = Instance.new("TextButton")
  272. local LethalCannons_Button = Instance.new("TextButton")
  273. local ChatAlert_Button = Instance.new("TextButton")
  274. local PotionDi_Button = Instance.new("TextButton")
  275. local VoidProtection_Button = Instance.new("TextButton")
  276. local PushAll_Button = Instance.new("TextButton")
  277. local TouchFling_Button = Instance.new("TextButton")
  278. local CMDBar = Instance.new("TextBox")
  279. local CannonTP1_Button = Instance.new("TextButton")
  280. local CannonTP2_Button = Instance.new("TextButton")
  281. local CannonTP3_Button = Instance.new("TextButton")
  282. local MinefieldTP_Button = Instance.new("TextButton")
  283. local BallonTP_Button = Instance.new("TextButton")
  284. local NormalStairsTP_Button = Instance.new("TextButton")
  285. local MovingStairsTP_Button = Instance.new("TextButton")
  286. local SpiralStairsTP_Button = Instance.new("TextButton")
  287. local SkyscraperTP_Button = Instance.new("TextButton")
  288. local PoolTP_Button = Instance.new("TextButton")
  289. local FreePushTool_Button = Instance.new("TextButton")
  290. local Home_Section = Instance.new("ScrollingFrame")
  291. local Profile_Image = Instance.new("ImageLabel")
  292. local Welcome_Label = Instance.new("TextLabel")
  293. local Announce_Label = Instance.new("TextLabel")
  294. local Character_Section = Instance.new("ScrollingFrame")
  295. local WalkSpeed_Button = Instance.new("TextButton")
  296. local WalkSpeed_Input = Instance.new("TextBox")
  297. local ClearCheckpoint_Button = Instance.new("TextButton")
  298. local JumpPower_Input = Instance.new("TextBox")
  299. local JumpPower_Button = Instance.new("TextButton")
  300. local SaveCheckpoint_Button = Instance.new("TextButton")
  301. local Respawn_Button = Instance.new("TextButton")
  302. local FlySpeed_Button = Instance.new("TextButton")
  303. local FlySpeed_Input = Instance.new("TextBox")
  304. local Fly_Button = Instance.new("TextButton")
  305. local Target_Section = Instance.new("ScrollingFrame")
  306. local TargetImage = Instance.new("ImageLabel")
  307. local ClickTargetTool_Button = Instance.new("ImageButton")
  308. local TargetName_Input = Instance.new("TextBox")
  309. local UserIDTargetLabel = Instance.new("TextLabel")
  310. local ViewTarget_Button = Instance.new("TextButton")
  311. local FlingTarget_Button = Instance.new("TextButton")
  312. local FocusTarget_Button = Instance.new("TextButton")
  313. local BenxTarget_Button = Instance.new("TextButton")
  314. local PushTarget_Button = Instance.new("TextButton")
  315. local WhitelistTarget_Button = Instance.new("TextButton")
  316. local TeleportTarget_Button = Instance.new("TextButton")
  317. local HeadsitTarget_Button = Instance.new("TextButton")
  318. local StandTarget_Button = Instance.new("TextButton")
  319. local BackpackTarget_Button = Instance.new("TextButton")
  320. local DoggyTarget_Button = Instance.new("TextButton")
  321. local DragTarget_Button = Instance.new("TextButton")
  322. local Animations_Section = Instance.new("ScrollingFrame")
  323. local VampireAnim_Button = Instance.new("TextButton")
  324. local HeroAnim_Button = Instance.new("TextButton")
  325. local ZombieClassicAnim_Button = Instance.new("TextButton")
  326. local MageAnim_Button = Instance.new("TextButton")
  327. local GhostAnim_Button = Instance.new("TextButton")
  328. local ElderAnim_Button = Instance.new("TextButton")
  329. local LevitationAnim_Button = Instance.new("TextButton")
  330. local AstronautAnim_Button = Instance.new("TextButton")
  331. local NinjaAnim_Button = Instance.new("TextButton")
  332. local WerewolfAnim_Button = Instance.new("TextButton")
  333. local CartoonAnim_Button = Instance.new("TextButton")
  334. local PirateAnim_Button = Instance.new("TextButton")
  335. local SneakyAnim_Button = Instance.new("TextButton")
  336. local ToyAnim_Button = Instance.new("TextButton")
  337. local KnightAnim_Button = Instance.new("TextButton")
  338. --NEWS
  339. local ConfidentAnim_Button = Instance.new("TextButton")
  340. local PopstarAnim_Button = Instance.new("TextButton")
  341. local PrincessAnim_Button = Instance.new("TextButton")
  342. local CowboyAnim_Button = Instance.new("TextButton")
  343. local PatrolAnim_Button = Instance.new("TextButton")
  344. local ZombieFEAnim_Button = Instance.new("TextButton")
  345. --NEWS
  346. local Misc_Section = Instance.new("ScrollingFrame")
  347. local AntiFling_Button = Instance.new("TextButton")
  348. local AntiChatSpy_Button = Instance.new("TextButton")
  349. local AntiAFK_Button = Instance.new("TextButton")
  350. local Shaders_Button = Instance.new("TextButton")
  351. local Day_Button = Instance.new("TextButton")
  352. local Night_Button = Instance.new("TextButton")
  353. local Rejoin_Button = Instance.new("TextButton")
  354. local CMDX_Button = Instance.new("TextButton")
  355. local InfYield_Button = Instance.new("TextButton")
  356. local Serverhop_Button = Instance.new("TextButton")
  357. local Explode_Button = Instance.new("TextButton")
  358. local FreeEmotes_Button = Instance.new("TextButton")
  359. local ChatBox_Input = Instance.new("TextBox")
  360. local Credits_Section = Instance.new("ScrollingFrame")
  361. local Credits_Label = Instance.new("TextLabel")
  362. local Crown = Instance.new("ImageLabel")
  363. local Assets = Instance.new("Folder")
  364. local Ticket_Asset = Instance.new("ImageButton")
  365. local Click_Asset = Instance.new("ImageButton")
  366. local Velocity_Asset = Instance.new("BodyAngularVelocity")
  367. local Fly_Pad = Instance.new("ImageButton")
  368. local UIGradient = Instance.new("UIGradient")
  369. local FlyAButton = Instance.new("TextButton")
  370. local FlyDButton = Instance.new("TextButton")
  371. local FlyWButton = Instance.new("TextButton")
  372. local FlySButton = Instance.new("TextButton")
  373. local OpenClose = Instance.new("ImageButton")
  374. local UICornerOC = Instance.new("UICorner")
  375.  
  376. local function CreateToggle(Button)
  377. local NewToggle = Ticket_Asset:Clone()
  378. NewToggle.Parent = Button
  379. end
  380.  
  381. local function CreateClicker(Button)
  382. local NewClicker = Click_Asset:Clone()
  383. NewClicker.Parent = Button
  384. end
  385.  
  386. SysBroker.Name = "SysBroker"
  387. SysBroker.Parent = game.CoreGui
  388. SysBroker.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  389.  
  390. Background.Name = "Background"
  391. Background.Parent = SysBroker
  392. Background.AnchorPoint = Vector2.new(0.5, 0.5)
  393. Background.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  394. Background.BorderColor3 = Color3.fromRGB(0, 255, 255)
  395. Background.Position = UDim2.new(0.5, 0, 0.5, 0)
  396. Background.Size = UDim2.new(0, 500, 0, 350)
  397. Background.ZIndex = 9
  398. Background.Image = "rbxassetid://159991693"
  399. Background.ImageColor3 = Color3.fromRGB(0, 255, 255)
  400. Background.ImageTransparency = 0.600
  401. Background.ScaleType = Enum.ScaleType.Tile
  402. Background.SliceCenter = Rect.new(0, 256, 0, 256)
  403. Background.TileSize = UDim2.new(0, 30, 0, 30)
  404. Background.Active = true
  405. Background.Draggable = true
  406.  
  407. TitleBarLabel.Name = "TitleBarLabel"
  408. TitleBarLabel.Parent = Background
  409. TitleBarLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  410. TitleBarLabel.BackgroundTransparency = 0.250
  411. TitleBarLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  412. TitleBarLabel.BorderSizePixel = 0
  413. TitleBarLabel.Size = UDim2.new(1, 0, 0, 30)
  414. TitleBarLabel.Font = Enum.Font.Unknown
  415. TitleBarLabel.Text = "سكربت ايم المهري | ماب راقدول"
  416. TitleBarLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  417. TitleBarLabel.TextScaled = true
  418. TitleBarLabel.TextSize = 14.000
  419. TitleBarLabel.TextWrapped = true
  420. TitleBarLabel.TextXAlignment = Enum.TextXAlignment.Left
  421.  
  422. SectionList.Name = "SectionList"
  423. SectionList.Parent = Background
  424. SectionList.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  425. SectionList.BackgroundTransparency = 0.500
  426. SectionList.BorderColor3 = Color3.fromRGB(0, 0, 0)
  427. SectionList.BorderSizePixel = 0
  428. SectionList.Position = UDim2.new(0, 0, 0, 30)
  429. SectionList.Size = UDim2.new(0, 105, 0, 320)
  430.  
  431. Home_Section_Button.Name = "Home_Section_Button"
  432. Home_Section_Button.Parent = SectionList
  433. Home_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  434. Home_Section_Button.BackgroundTransparency = 0.500
  435. Home_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  436. Home_Section_Button.BorderSizePixel = 0
  437. Home_Section_Button.Position = UDim2.new(0, 0, 0, 25)
  438. Home_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  439. Home_Section_Button.Font = Enum.Font.Oswald
  440. Home_Section_Button.Text = "الصفحه الرئيسيه | Home"
  441. Home_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  442. Home_Section_Button.TextScaled = true
  443. Home_Section_Button.TextSize = 14.000
  444. Home_Section_Button.TextWrapped = true
  445.  
  446. Game_Section_Button.Name = "Game_Section_Button"
  447. Game_Section_Button.Parent = SectionList
  448. Game_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  449. Game_Section_Button.BackgroundTransparency = 0.500
  450. Game_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  451. Game_Section_Button.BorderSizePixel = 0
  452. Game_Section_Button.Position = UDim2.new(0, 0, 0, 65)
  453. Game_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  454. Game_Section_Button.Font = Enum.Font.Oswald
  455. Game_Section_Button.Text = "التخريب | Game "
  456. Game_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  457. Game_Section_Button.TextScaled = true
  458. Game_Section_Button.TextSize = 14.000
  459. Game_Section_Button.TextWrapped = true
  460.  
  461. Character_Section_Button.Name = "Character_Section_Button"
  462. Character_Section_Button.Parent = SectionList
  463. Character_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  464. Character_Section_Button.BackgroundTransparency = 0.500
  465. Character_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  466. Character_Section_Button.BorderSizePixel = 0
  467. Character_Section_Button.Position = UDim2.new(0, 0, 0, 105)
  468. Character_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  469. Character_Section_Button.Font = Enum.Font.Oswald
  470. Character_Section_Button.Text = "الشخصيه | Character"
  471. Character_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  472. Character_Section_Button.TextScaled = true
  473. Character_Section_Button.TextSize = 14.000
  474. Character_Section_Button.TextWrapped = true
  475.  
  476. Target_Section_Button.Name = "Target_Section_Button"
  477. Target_Section_Button.Parent = SectionList
  478. Target_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  479. Target_Section_Button.BackgroundTransparency = 0.500
  480. Target_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  481. Target_Section_Button.BorderSizePixel = 0
  482. Target_Section_Button.Position = UDim2.new(0, 0, 0, 145)
  483. Target_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  484. Target_Section_Button.Font = Enum.Font.Oswald
  485. Target_Section_Button.Text = "الاستهداف | Target"
  486. Target_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  487. Target_Section_Button.TextScaled = true
  488. Target_Section_Button.TextSize = 14.000
  489. Target_Section_Button.TextWrapped = true
  490.  
  491. Animations_Section_Button.Name = "Animations_Section_Button"
  492. Animations_Section_Button.Parent = SectionList
  493. Animations_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  494. Animations_Section_Button.BackgroundTransparency = 0.500
  495. Animations_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  496. Animations_Section_Button.BorderSizePixel = 0
  497. Animations_Section_Button.Position = UDim2.new(0, 0, 0, 185)
  498. Animations_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  499. Animations_Section_Button.Font = Enum.Font.Oswald
  500. Animations_Section_Button.Text = "المشيات | Animations"
  501. Animations_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  502. Animations_Section_Button.TextScaled = true
  503. Animations_Section_Button.TextSize = 14.000
  504. Animations_Section_Button.TextWrapped = true
  505.  
  506. Misc_Section_Button.Name = "Misc_Section_Button"
  507. Misc_Section_Button.Parent = SectionList
  508. Misc_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  509. Misc_Section_Button.BackgroundTransparency = 0.500
  510. Misc_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  511. Misc_Section_Button.BorderSizePixel = 0
  512. Misc_Section_Button.Position = UDim2.new(0, 0, 0, 225)
  513. Misc_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  514. Misc_Section_Button.Font = Enum.Font.Oswald
  515. Misc_Section_Button.Text = "اخرى | Misc"
  516. Misc_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  517. Misc_Section_Button.TextScaled = true
  518. Misc_Section_Button.TextSize = 14.000
  519. Misc_Section_Button.TextWrapped = true
  520.  
  521. Credits_Section_Button.Name = "Credits_Section_Button"
  522. Credits_Section_Button.Parent = SectionList
  523. Credits_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  524. Credits_Section_Button.BackgroundTransparency = 0.500
  525. Credits_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  526. Credits_Section_Button.BorderSizePixel = 0
  527. Credits_Section_Button.Position = UDim2.new(0, 0, 0, 265)
  528. Credits_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  529. Credits_Section_Button.Font = Enum.Font.Oswald
  530. Credits_Section_Button.Text = "الحقوق | Credits"
  531. Credits_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  532. Credits_Section_Button.TextScaled = true
  533. Credits_Section_Button.TextSize = 14.000
  534. Credits_Section_Button.TextWrapped = true
  535.  
  536. Game_Section.Name = "Game_Section"
  537. Game_Section.Parent = Background
  538. Game_Section.Active = true
  539. Game_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  540. Game_Section.BackgroundTransparency = 1.000
  541. Game_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  542. Game_Section.BorderSizePixel = 0
  543. Game_Section.Position = UDim2.new(0, 105, 0, 30)
  544. Game_Section.Size = UDim2.new(0, 395, 0, 320)
  545. Game_Section.Visible = false
  546. Game_Section.CanvasSize = UDim2.new(0, 0, 1.85, 0)
  547. Game_Section.ScrollBarThickness = 5
  548.  
  549. AntiRagdoll_Button.Name = "AntiRagdoll_Button"
  550. AntiRagdoll_Button.Parent = Game_Section
  551. AntiRagdoll_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  552. AntiRagdoll_Button.BackgroundTransparency = 0.500
  553. AntiRagdoll_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  554. AntiRagdoll_Button.BorderSizePixel = 0
  555. AntiRagdoll_Button.Position = UDim2.new(0, 25, 0, 25)
  556. AntiRagdoll_Button.Size = UDim2.new(0, 150, 0, 30)
  557. AntiRagdoll_Button.Font = Enum.Font.Oswald
  558. AntiRagdoll_Button.Text = "محد يقدر يدفك"
  559. AntiRagdoll_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  560. AntiRagdoll_Button.TextScaled = true
  561. AntiRagdoll_Button.TextSize = 14.000
  562. AntiRagdoll_Button.TextWrapped = true
  563.  
  564. PotionFling_Button.Name = "PotionFling_Button"
  565. PotionFling_Button.Parent = Game_Section
  566. PotionFling_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  567. PotionFling_Button.BackgroundTransparency = 0.500
  568. PotionFling_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  569. PotionFling_Button.BorderSizePixel = 0
  570. PotionFling_Button.Position = UDim2.new(0, 210, 0, 75)
  571. PotionFling_Button.Size = UDim2.new(0, 150, 0, 30)
  572. PotionFling_Button.Font = Enum.Font.Oswald
  573. PotionFling_Button.Text = "بوشن فلينق"
  574. PotionFling_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  575. PotionFling_Button.TextScaled = true
  576. PotionFling_Button.TextSize = 14.000
  577. PotionFling_Button.TextWrapped = true
  578.  
  579. SpamMines_Button.Name = "SpamMines_Button"
  580. SpamMines_Button.Parent = Game_Section
  581. SpamMines_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  582. SpamMines_Button.BackgroundTransparency = 0.500
  583. SpamMines_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  584. SpamMines_Button.BorderSizePixel = 0
  585. SpamMines_Button.Position = UDim2.new(0, 25, 0, 75)
  586. SpamMines_Button.Size = UDim2.new(0, 150, 0, 30)
  587. SpamMines_Button.Font = Enum.Font.Oswald
  588. SpamMines_Button.Text = "سبام mines"
  589. SpamMines_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  590. SpamMines_Button.TextScaled = true
  591. SpamMines_Button.TextSize = 14.000
  592. SpamMines_Button.TextWrapped = true
  593.  
  594. PushAura_Button.Name = "PushAura_Button"
  595. PushAura_Button.Parent = Game_Section
  596. PushAura_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  597. PushAura_Button.BackgroundTransparency = 0.500
  598. PushAura_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  599. PushAura_Button.BorderSizePixel = 0
  600. PushAura_Button.Position = UDim2.new(0, 210, 0, 25)
  601. PushAura_Button.Size = UDim2.new(0, 150, 0, 30)
  602. PushAura_Button.Font = Enum.Font.Oswald
  603. PushAura_Button.Text = "بوشن Aura"
  604. PushAura_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  605. PushAura_Button.TextScaled = true
  606. PushAura_Button.TextSize = 14.000
  607. PushAura_Button.TextWrapped = true
  608.  
  609. BreakCannons_Button.Name = "BreakCannons_Button"
  610. BreakCannons_Button.Parent = Game_Section
  611. BreakCannons_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  612. BreakCannons_Button.BackgroundTransparency = 0.500
  613. BreakCannons_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  614. BreakCannons_Button.BorderSizePixel = 0
  615. BreakCannons_Button.Position = UDim2.new(0, 25, 0, 225)
  616. BreakCannons_Button.Size = UDim2.new(0, 150, 0, 30)
  617. BreakCannons_Button.Font = Enum.Font.Oswald
  618. BreakCannons_Button.Text = "كسر المدافع "
  619. BreakCannons_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  620. BreakCannons_Button.TextScaled = true
  621. BreakCannons_Button.TextSize = 14.000
  622. BreakCannons_Button.TextWrapped = true
  623.  
  624. LethalCannons_Button.Name = "LethalCannons_Button"
  625. LethalCannons_Button.Parent = Game_Section
  626. LethalCannons_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  627. LethalCannons_Button.BackgroundTransparency = 0.500
  628. LethalCannons_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  629. LethalCannons_Button.BorderSizePixel = 0
  630. LethalCannons_Button.Position = UDim2.new(0, 25, 0, 275)
  631. LethalCannons_Button.Size = UDim2.new(0, 150, 0, 30)
  632. LethalCannons_Button.Font = Enum.Font.Oswald
  633. LethalCannons_Button.Text = "المدافع القاتلة "
  634. LethalCannons_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  635. LethalCannons_Button.TextScaled = true
  636. LethalCannons_Button.TextSize = 14.000
  637. LethalCannons_Button.TextWrapped = true
  638.  
  639. ChatAlert_Button.Name = "ChatAlert_Button"
  640. ChatAlert_Button.Parent = Game_Section
  641. ChatAlert_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  642. ChatAlert_Button.BackgroundTransparency = 0.500
  643. ChatAlert_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  644. ChatAlert_Button.BorderSizePixel = 0
  645. ChatAlert_Button.Position = UDim2.new(0, 210, 0, 275)
  646. ChatAlert_Button.Size = UDim2.new(0, 150, 0, 30)
  647. ChatAlert_Button.Font = Enum.Font.Oswald
  648. ChatAlert_Button.Text = "تنبيه الدردشة "
  649. ChatAlert_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  650. ChatAlert_Button.TextScaled = true
  651. ChatAlert_Button.TextSize = 14.000
  652. ChatAlert_Button.TextWrapped = true
  653.  
  654. PotionDi_Button.Name = "PotionDi_Button"
  655. PotionDi_Button.Parent = Game_Section
  656. PotionDi_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  657. PotionDi_Button.BackgroundTransparency = 0.500
  658. PotionDi_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  659. PotionDi_Button.BorderSizePixel = 0
  660. PotionDi_Button.Position = UDim2.new(0, 210, 0, 125)
  661. PotionDi_Button.Size = UDim2.new(0, 150, 0, 30)
  662. PotionDi_Button.Font = Enum.Font.Oswald
  663. PotionDi_Button.Text = "بوشن الحنتكور"
  664. PotionDi_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  665. PotionDi_Button.TextScaled = true
  666. PotionDi_Button.TextSize = 14.000
  667. PotionDi_Button.TextWrapped = true
  668.  
  669. VoidProtection_Button.Name = "VoidProtection_Button"
  670. VoidProtection_Button.Parent = Game_Section
  671. VoidProtection_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  672. VoidProtection_Button.BackgroundTransparency = 0.500
  673. VoidProtection_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  674. VoidProtection_Button.BorderSizePixel = 0
  675. VoidProtection_Button.Position = UDim2.new(0, 25, 0, 175)
  676. VoidProtection_Button.Size = UDim2.new(0, 150, 0, 30)
  677. VoidProtection_Button.Font = Enum.Font.Oswald
  678. VoidProtection_Button.Text = "Void protection"
  679. VoidProtection_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  680. VoidProtection_Button.TextScaled = true
  681. VoidProtection_Button.TextSize = 14.000
  682. VoidProtection_Button.TextWrapped = true
  683.  
  684. PushAll_Button.Name = "PushAll_Button"
  685. PushAll_Button.Parent = Game_Section
  686. PushAll_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  687. PushAll_Button.BackgroundTransparency = 0.500
  688. PushAll_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  689. PushAll_Button.BorderSizePixel = 0
  690. PushAll_Button.Position = UDim2.new(0, 210, 0, 225)
  691. PushAll_Button.Size = UDim2.new(0, 150, 0, 30)
  692. PushAll_Button.Font = Enum.Font.Oswald
  693. PushAll_Button.Text = "دف الكل"
  694. PushAll_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  695. PushAll_Button.TextScaled = true
  696. PushAll_Button.TextSize = 14.000
  697. PushAll_Button.TextWrapped = true
  698.  
  699. TouchFling_Button.Name = "TouchFling_Button"
  700. TouchFling_Button.Parent = Game_Section
  701. TouchFling_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  702. TouchFling_Button.BackgroundTransparency = 0.500
  703. TouchFling_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  704. TouchFling_Button.BorderSizePixel = 0
  705. TouchFling_Button.Position = UDim2.new(0, 25, 0, 125)
  706. TouchFling_Button.Size = UDim2.new(0, 150, 0, 30)
  707. TouchFling_Button.Font = Enum.Font.Oswald
  708. TouchFling_Button.Text = "طير اي شخص بس اضغط عليه"
  709. TouchFling_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  710. TouchFling_Button.TextScaled = true
  711. TouchFling_Button.TextSize = 14.000
  712. TouchFling_Button.TextWrapped = true
  713.  
  714. CMDBar.Name = "CMDBar"
  715. CMDBar.Parent = Game_Section
  716. CMDBar.AnchorPoint = Vector2.new(0.5, 0.5)
  717. CMDBar.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  718. CMDBar.BackgroundTransparency = 0.300
  719. CMDBar.BorderColor3 = Color3.fromRGB(0, 255, 255)
  720. CMDBar.Position = UDim2.new(0.5, 0, 0, 350)
  721. CMDBar.Size = UDim2.new(0, 275, 0, 40)
  722. CMDBar.Font = Enum.Font.Gotham
  723. CMDBar.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  724. CMDBar.PlaceholderText = "CMD BAR..."
  725. CMDBar.Text = ""
  726. CMDBar.TextColor3 = Color3.fromRGB(20, 20, 20)
  727. CMDBar.TextSize = 14.000
  728. CMDBar.TextWrapped = true
  729.  
  730. CannonTP1_Button.Name = "CannonTP1_Button"
  731. CannonTP1_Button.Parent = Game_Section
  732. CannonTP1_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  733. CannonTP1_Button.BackgroundTransparency = 0.500
  734. CannonTP1_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  735. CannonTP1_Button.BorderSizePixel = 0
  736. CannonTP1_Button.Position = UDim2.new(0, 25, 0, 400)
  737. CannonTP1_Button.Size = UDim2.new(0, 150, 0, 30)
  738. CannonTP1_Button.Font = Enum.Font.Oswald
  739. CannonTP1_Button.Text = "التنقل الى المدفع 1"
  740. CannonTP1_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  741. CannonTP1_Button.TextScaled = true
  742. CannonTP1_Button.TextSize = 14.000
  743. CannonTP1_Button.TextWrapped = true
  744.  
  745. CannonTP2_Button.Name = "CannonTP2_Button"
  746. CannonTP2_Button.Parent = Game_Section
  747. CannonTP2_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  748. CannonTP2_Button.BackgroundTransparency = 0.500
  749. CannonTP2_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  750. CannonTP2_Button.BorderSizePixel = 0
  751. CannonTP2_Button.Position = UDim2.new(0, 210, 0, 400)
  752. CannonTP2_Button.Size = UDim2.new(0, 150, 0, 30)
  753. CannonTP2_Button.Font = Enum.Font.Oswald
  754. CannonTP2_Button.Text = "التنقل الى المدفع 2"
  755. CannonTP2_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  756. CannonTP2_Button.TextScaled = true
  757. CannonTP2_Button.TextSize = 14.000
  758. CannonTP2_Button.TextWrapped = true
  759.  
  760. CannonTP3_Button.Name = "CannonTP3_Button"
  761. CannonTP3_Button.Parent = Game_Section
  762. CannonTP3_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  763. CannonTP3_Button.BackgroundTransparency = 0.500
  764. CannonTP3_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  765. CannonTP3_Button.BorderSizePixel = 0
  766. CannonTP3_Button.Position = UDim2.new(0, 25, 0, 450)
  767. CannonTP3_Button.Size = UDim2.new(0, 150, 0, 30)
  768. CannonTP3_Button.Font = Enum.Font.Oswald
  769. CannonTP3_Button.Text = "التنقل الى المدفع 3"
  770. CannonTP3_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  771. CannonTP3_Button.TextScaled = true
  772. CannonTP3_Button.TextSize = 14.000
  773. CannonTP3_Button.TextWrapped = true
  774.  
  775. MinefieldTP_Button.Name = "MinefieldTP_Button"
  776. MinefieldTP_Button.Parent = Game_Section
  777. MinefieldTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  778. MinefieldTP_Button.BackgroundTransparency = 0.500
  779. MinefieldTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  780. MinefieldTP_Button.BorderSizePixel = 0
  781. MinefieldTP_Button.Position = UDim2.new(0, 210, 0, 450)
  782. MinefieldTP_Button.Size = UDim2.new(0, 150, 0, 30)
  783. MinefieldTP_Button.Font = Enum.Font.Oswald
  784. MinefieldTP_Button.Text = "التنقل الى مكان تفجيرات "
  785. MinefieldTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  786. MinefieldTP_Button.TextScaled = true
  787. MinefieldTP_Button.TextSize = 14.000
  788. MinefieldTP_Button.TextWrapped = true
  789.  
  790. BallonTP_Button.Name = "BallonTP_Button"
  791. BallonTP_Button.Parent = Game_Section
  792. BallonTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  793. BallonTP_Button.BackgroundTransparency = 0.500
  794. BallonTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  795. BallonTP_Button.BorderSizePixel = 0
  796. BallonTP_Button.Position = UDim2.new(0, 25, 0, 500)
  797. BallonTP_Button.Size = UDim2.new(0, 150, 0, 30)
  798. BallonTP_Button.Font = Enum.Font.Oswald
  799. BallonTP_Button.Text = "التنقل الى المنطاد"
  800. BallonTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  801. BallonTP_Button.TextScaled = true
  802. BallonTP_Button.TextSize = 14.000
  803. BallonTP_Button.TextWrapped = true
  804.  
  805. NormalStairsTP_Button.Name = "NormalStairsTP_Button"
  806. NormalStairsTP_Button.Parent = Game_Section
  807. NormalStairsTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  808. NormalStairsTP_Button.BackgroundTransparency = 0.500
  809. NormalStairsTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  810. NormalStairsTP_Button.BorderSizePixel = 0
  811. NormalStairsTP_Button.Position = UDim2.new(0, 210, 0, 500)
  812. NormalStairsTP_Button.Size = UDim2.new(0, 150, 0, 30)
  813. NormalStairsTP_Button.Font = Enum.Font.Oswald
  814. NormalStairsTP_Button.Text = "التنقل الى السلالم"
  815. NormalStairsTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  816. NormalStairsTP_Button.TextScaled = true
  817. NormalStairsTP_Button.TextSize = 14.000
  818. NormalStairsTP_Button.TextWrapped = true
  819.  
  820. MovingStairsTP_Button.Name = "MovingStairsTP_Button"
  821. MovingStairsTP_Button.Parent = Game_Section
  822. MovingStairsTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  823. MovingStairsTP_Button.BackgroundTransparency = 0.500
  824. MovingStairsTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  825. MovingStairsTP_Button.BorderSizePixel = 0
  826. MovingStairsTP_Button.Position = UDim2.new(0, 25, 0, 550)
  827. MovingStairsTP_Button.Size = UDim2.new(0, 150, 0, 30)
  828. MovingStairsTP_Button.Font = Enum.Font.Oswald
  829. MovingStairsTP_Button.Text = "التنقل للسلالم المتحركه "
  830. MovingStairsTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  831. MovingStairsTP_Button.TextScaled = true
  832. MovingStairsTP_Button.TextSize = 14.000
  833. MovingStairsTP_Button.TextWrapped = true
  834.  
  835. SpiralStairsTP_Button.Name = "SpiralStairsTP_Button"
  836. SpiralStairsTP_Button.Parent = Game_Section
  837. SpiralStairsTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  838. SpiralStairsTP_Button.BackgroundTransparency = 0.500
  839. SpiralStairsTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  840. SpiralStairsTP_Button.BorderSizePixel = 0
  841. SpiralStairsTP_Button.Position = UDim2.new(0, 210, 0, 550)
  842. SpiralStairsTP_Button.Size = UDim2.new(0, 150, 0, 30)
  843. SpiralStairsTP_Button.Font = Enum.Font.Oswald
  844. SpiralStairsTP_Button.Text = "التنقل الى السلالم الحلزونيه "
  845. SpiralStairsTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  846. SpiralStairsTP_Button.TextScaled = true
  847. SpiralStairsTP_Button.TextSize = 14.000
  848. SpiralStairsTP_Button.TextWrapped = true
  849.  
  850. SkyscraperTP_Button.Name = "SkyscraperTP_Button"
  851. SkyscraperTP_Button.Parent = Game_Section
  852. SkyscraperTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  853. SkyscraperTP_Button.BackgroundTransparency = 0.500
  854. SkyscraperTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  855. SkyscraperTP_Button.BorderSizePixel = 0
  856. SkyscraperTP_Button.Position = UDim2.new(0, 25, 0, 600)
  857. SkyscraperTP_Button.Size = UDim2.new(0, 150, 0, 30)
  858. SkyscraperTP_Button.Font = Enum.Font.Oswald
  859. SkyscraperTP_Button.Text = "التنقل للبرج"
  860. SkyscraperTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  861. SkyscraperTP_Button.TextScaled = true
  862. SkyscraperTP_Button.TextSize = 14.000
  863. SkyscraperTP_Button.TextWrapped = true
  864.  
  865. PoolTP_Button.Name = "PoolTP_Button"
  866. PoolTP_Button.Parent = Game_Section
  867. PoolTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  868. PoolTP_Button.BackgroundTransparency = 0.500
  869. PoolTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  870. PoolTP_Button.BorderSizePixel = 0
  871. PoolTP_Button.Position = UDim2.new(0, 210, 0, 600)
  872. PoolTP_Button.Size = UDim2.new(0, 150, 0, 30)
  873. PoolTP_Button.Font = Enum.Font.Oswald
  874. PoolTP_Button.Text = "التنقل الى المسبح"
  875. PoolTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  876. PoolTP_Button.TextScaled = true
  877. PoolTP_Button.TextSize = 14.000
  878. PoolTP_Button.TextWrapped = true
  879.  
  880. FreePushTool_Button.Name = "FreePushTool_Button"
  881. FreePushTool_Button.Parent = Game_Section
  882. FreePushTool_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  883. FreePushTool_Button.BackgroundTransparency = 0.500
  884. FreePushTool_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  885. FreePushTool_Button.BorderSizePixel = 0
  886. FreePushTool_Button.Position = UDim2.new(0, 210, 0, 175)
  887. FreePushTool_Button.Size = UDim2.new(0, 150, 0, 30)
  888. FreePushTool_Button.Font = Enum.Font.Oswald
  889. FreePushTool_Button.Text = "بوشن معدل "
  890. FreePushTool_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  891. FreePushTool_Button.TextScaled = true
  892. FreePushTool_Button.TextSize = 14.000
  893. FreePushTool_Button.TextWrapped = true
  894.  
  895. Home_Section.Name = "Home_Section"
  896. Home_Section.Parent = Background
  897. Home_Section.Active = true
  898. Home_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  899. Home_Section.BackgroundTransparency = 1.000
  900. Home_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  901. Home_Section.BorderSizePixel = 0
  902. Home_Section.Position = UDim2.new(0, 105, 0, 30)
  903. Home_Section.Size = UDim2.new(0, 395, 0, 320)
  904. Home_Section.CanvasSize = UDim2.new(0, 0, 0, 0)
  905. Home_Section.ScrollBarThickness = 5
  906.  
  907. Profile_Image.Name = "Profile_Image"
  908. Profile_Image.Parent = Home_Section
  909. Profile_Image.BackgroundColor3 = Color3.fromRGB(30,30,30)
  910. Profile_Image.BorderColor3 = Color3.fromRGB(0, 0, 0)
  911. Profile_Image.BorderSizePixel = 0
  912. Profile_Image.Position = UDim2.new(0, 25, 0, 25)
  913. Profile_Image.Size = UDim2.new(0, 100, 0, 100)
  914. Profile_Image.Image = Players:GetUserThumbnailAsync(plr.UserId,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size420x420)
  915.  
  916. Welcome_Label.Name = "Welcome_Label"
  917. Welcome_Label.Parent = Home_Section
  918. Welcome_Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  919. Welcome_Label.BackgroundTransparency = 1.000
  920. Welcome_Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
  921. Welcome_Label.BorderSizePixel = 0
  922. Welcome_Label.Position = UDim2.new(0, 150, 0, 25)
  923. Welcome_Label.Size = UDim2.new(0, 200, 0, 100)
  924. Welcome_Label.Font = Enum.Font.SourceSans
  925. Welcome_Label.Text = ("مرحبا @"..plr.Name.."!\اذا بغيت تقفل القائمة او تفتحها اضغط على [B] .")
  926. Welcome_Label.TextColor3 = Color3.fromRGB(0, 255, 255)
  927. Welcome_Label.TextSize = 24.000
  928. Welcome_Label.TextWrapped = true
  929. Welcome_Label.TextXAlignment = Enum.TextXAlignment.Left
  930. Welcome_Label.TextYAlignment = Enum.TextYAlignment.Top
  931.  
  932. Announce_Label.Name = "Announce_Label"
  933. Announce_Label.Parent = Home_Section
  934. Announce_Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  935. Announce_Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
  936. Announce_Label.BorderSizePixel = 0
  937. Announce_Label.Position = UDim2.new(0, 25, 0, 150)
  938. Announce_Label.Size = UDim2.new(0, 350, 0, 150)
  939. Announce_Label.Font = Enum.Font.SourceSans
  940. Announce_Label.Text = "مطورين السكربت غير مسوؤل عن سوء الاستخدام و انشاء الله يعجبك السكربت | TEAM c0ol107"
  941. Announce_Label.TextColor3 = Color3.fromRGB(0, 255, 255)
  942. Announce_Label.TextSize = 24.000
  943. Announce_Label.TextWrapped = true
  944. Announce_Label.TextXAlignment = Enum.TextXAlignment.Left
  945. Announce_Label.TextYAlignment = Enum.TextYAlignment.Top
  946.  
  947. Character_Section.Name = "Character_Section"
  948. Character_Section.Parent = Background
  949. Character_Section.Active = true
  950. Character_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  951. Character_Section.BackgroundTransparency = 1.000
  952. Character_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  953. Character_Section.BorderSizePixel = 0
  954. Character_Section.Position = UDim2.new(0, 105, 0, 30)
  955. Character_Section.Size = UDim2.new(0, 395, 0, 320)
  956. Character_Section.Visible = false
  957. Character_Section.CanvasSize = UDim2.new(0, 0, 1, 0)
  958. Character_Section.ScrollBarThickness = 5
  959.  
  960. WalkSpeed_Button.Name = "WalkSpeed_Button"
  961. WalkSpeed_Button.Parent = Character_Section
  962. WalkSpeed_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  963. WalkSpeed_Button.BackgroundTransparency = 0.500
  964. WalkSpeed_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  965. WalkSpeed_Button.BorderSizePixel = 0
  966. WalkSpeed_Button.Position = UDim2.new(0, 25, 0, 25)
  967. WalkSpeed_Button.Size = UDim2.new(0, 150, 0, 30)
  968. WalkSpeed_Button.Font = Enum.Font.Oswald
  969. WalkSpeed_Button.Text = "السرعه"
  970. WalkSpeed_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  971. WalkSpeed_Button.TextScaled = true
  972. WalkSpeed_Button.TextSize = 14.000
  973. WalkSpeed_Button.TextWrapped = true
  974.  
  975. WalkSpeed_Input.Name = "WalkSpeed_Input"
  976. WalkSpeed_Input.Parent = Character_Section
  977. WalkSpeed_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  978. WalkSpeed_Input.BackgroundTransparency = 0.300
  979. WalkSpeed_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  980. WalkSpeed_Input.Position = UDim2.new(0, 210, 0, 25)
  981. WalkSpeed_Input.Size = UDim2.new(0, 175, 0, 30)
  982. WalkSpeed_Input.Font = Enum.Font.Gotham
  983. WalkSpeed_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  984. WalkSpeed_Input.PlaceholderText = "Number [1-99999]"
  985. WalkSpeed_Input.Text = ""
  986. WalkSpeed_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  987. WalkSpeed_Input.TextSize = 14.000
  988. WalkSpeed_Input.TextWrapped = true
  989.  
  990. ClearCheckpoint_Button.Name = "ClearCheckpoint_Button"
  991. ClearCheckpoint_Button.Parent = Character_Section
  992. ClearCheckpoint_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  993. ClearCheckpoint_Button.BackgroundTransparency = 0.500
  994. ClearCheckpoint_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  995. ClearCheckpoint_Button.BorderSizePixel = 0
  996. ClearCheckpoint_Button.Position = UDim2.new(0, 210, 0, 225)
  997. ClearCheckpoint_Button.Size = UDim2.new(0, 150, 0, 30)
  998. ClearCheckpoint_Button.Font = Enum.Font.Oswald
  999. ClearCheckpoint_Button.Text = "ازاله الشيك بوينت"
  1000. ClearCheckpoint_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1001. ClearCheckpoint_Button.TextScaled = true
  1002. ClearCheckpoint_Button.TextSize = 14.000
  1003. ClearCheckpoint_Button.TextWrapped = true
  1004.  
  1005. JumpPower_Input.Name = "JumpPower_Input"
  1006. JumpPower_Input.Parent = Character_Section
  1007. JumpPower_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  1008. JumpPower_Input.BackgroundTransparency = 0.300
  1009. JumpPower_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1010. JumpPower_Input.Position = UDim2.new(0, 210, 0, 75)
  1011. JumpPower_Input.Size = UDim2.new(0, 175, 0, 30)
  1012. JumpPower_Input.Font = Enum.Font.Gotham
  1013. JumpPower_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1014. JumpPower_Input.PlaceholderText = "Number [1-99999]"
  1015. JumpPower_Input.Text = ""
  1016. JumpPower_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  1017. JumpPower_Input.TextSize = 14.000
  1018. JumpPower_Input.TextWrapped = true
  1019.  
  1020. JumpPower_Button.Name = "JumpPower_Button"
  1021. JumpPower_Button.Parent = Character_Section
  1022. JumpPower_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1023. JumpPower_Button.BackgroundTransparency = 0.500
  1024. JumpPower_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1025. JumpPower_Button.BorderSizePixel = 0
  1026. JumpPower_Button.Position = UDim2.new(0, 25, 0, 75)
  1027. JumpPower_Button.Size = UDim2.new(0, 150, 0, 30)
  1028. JumpPower_Button.Font = Enum.Font.Oswald
  1029. JumpPower_Button.Text = "النط | Jump"
  1030. JumpPower_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1031. JumpPower_Button.TextScaled = true
  1032. JumpPower_Button.TextSize = 14.000
  1033. JumpPower_Button.TextWrapped = true
  1034.  
  1035. SaveCheckpoint_Button.Name = "SaveCheckpoint_Button"
  1036. SaveCheckpoint_Button.Parent = Character_Section
  1037. SaveCheckpoint_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1038. SaveCheckpoint_Button.BackgroundTransparency = 0.500
  1039. SaveCheckpoint_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1040. SaveCheckpoint_Button.BorderSizePixel = 0
  1041. SaveCheckpoint_Button.Position = UDim2.new(0, 210, 0, 175)
  1042. SaveCheckpoint_Button.Size = UDim2.new(0, 150, 0, 30)
  1043. SaveCheckpoint_Button.Font = Enum.Font.Oswald
  1044. SaveCheckpoint_Button.Text = "حفظ الشيك بوينت"
  1045. SaveCheckpoint_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1046. SaveCheckpoint_Button.TextScaled = true
  1047. SaveCheckpoint_Button.TextSize = 14.000
  1048. SaveCheckpoint_Button.TextWrapped = true
  1049.  
  1050. Respawn_Button.Name = "Respawn_Button"
  1051. Respawn_Button.Parent = Character_Section
  1052. Respawn_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1053. Respawn_Button.BackgroundTransparency = 0.500
  1054. Respawn_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1055. Respawn_Button.BorderSizePixel = 0
  1056. Respawn_Button.Position = UDim2.new(0, 25, 0, 225)
  1057. Respawn_Button.Size = UDim2.new(0, 150, 0, 30)
  1058. Respawn_Button.Font = Enum.Font.Oswald
  1059. Respawn_Button.Text = "ريسبون"
  1060. Respawn_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1061. Respawn_Button.TextScaled = true
  1062. Respawn_Button.TextSize = 14.000
  1063. Respawn_Button.TextWrapped = true
  1064.  
  1065. FlySpeed_Button.Name = "FlySpeed_Button"
  1066. FlySpeed_Button.Parent = Character_Section
  1067. FlySpeed_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1068. FlySpeed_Button.BackgroundTransparency = 0.500
  1069. FlySpeed_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1070. FlySpeed_Button.BorderSizePixel = 0
  1071. FlySpeed_Button.Position = UDim2.new(0, 25, 0, 125)
  1072. FlySpeed_Button.Size = UDim2.new(0, 150, 0, 30)
  1073. FlySpeed_Button.Font = Enum.Font.Oswald
  1074. FlySpeed_Button.Text = "سرعه الطيران"
  1075. FlySpeed_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1076. FlySpeed_Button.TextScaled = true
  1077. FlySpeed_Button.TextSize = 14.000
  1078. FlySpeed_Button.TextWrapped = true
  1079.  
  1080. FlySpeed_Input.Name = "FlySpeed_Input"
  1081. FlySpeed_Input.Parent = Character_Section
  1082. FlySpeed_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  1083. FlySpeed_Input.BackgroundTransparency = 0.300
  1084. FlySpeed_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1085. FlySpeed_Input.Position = UDim2.new(0, 210, 0, 125)
  1086. FlySpeed_Input.Size = UDim2.new(0, 175, 0, 30)
  1087. FlySpeed_Input.Font = Enum.Font.Gotham
  1088. FlySpeed_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1089. FlySpeed_Input.PlaceholderText = "Number [1-99999]"
  1090. FlySpeed_Input.Text = ""
  1091. FlySpeed_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  1092. FlySpeed_Input.TextSize = 14.000
  1093. FlySpeed_Input.TextWrapped = true
  1094.  
  1095. Fly_Button.Name = "Fly_Button"
  1096. Fly_Button.Parent = Character_Section
  1097. Fly_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1098. Fly_Button.BackgroundTransparency = 0.500
  1099. Fly_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1100. Fly_Button.BorderSizePixel = 0
  1101. Fly_Button.Position = UDim2.new(0, 25, 0, 175)
  1102. Fly_Button.Size = UDim2.new(0, 150, 0, 30)
  1103. Fly_Button.Font = Enum.Font.Oswald
  1104. Fly_Button.Text = "سكربت طيران"
  1105. Fly_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1106. Fly_Button.TextScaled = true
  1107. Fly_Button.TextSize = 14.000
  1108. Fly_Button.TextWrapped = true
  1109.  
  1110. Target_Section.Name = "Target_Section"
  1111. Target_Section.Parent = Background
  1112. Target_Section.Active = true
  1113. Target_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1114. Target_Section.BackgroundTransparency = 1.000
  1115. Target_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1116. Target_Section.BorderSizePixel = 0
  1117. Target_Section.Position = UDim2.new(0, 105, 0, 30)
  1118. Target_Section.Size = UDim2.new(0, 395, 0, 320)
  1119. Target_Section.Visible = false
  1120. Target_Section.CanvasSize = UDim2.new(0, 0, 1.25, 0)
  1121. Target_Section.ScrollBarThickness = 5
  1122.  
  1123. TargetImage.Name = "TargetImage"
  1124. TargetImage.Parent = Target_Section
  1125. TargetImage.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1126. TargetImage.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1127. TargetImage.Position = UDim2.new(0, 25, 0, 25)
  1128. TargetImage.Size = UDim2.new(0, 100, 0, 100)
  1129. TargetImage.Image = "rbxassetid://10818605405"
  1130.  
  1131. TargetName_Input.Name = "TargetName_Input"
  1132. TargetName_Input.Parent = Target_Section
  1133. TargetName_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  1134. TargetName_Input.BackgroundTransparency = 0.300
  1135. TargetName_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1136. TargetName_Input.Position = UDim2.new(0, 150, 0, 30)
  1137. TargetName_Input.Size = UDim2.new(0, 175, 0, 30)
  1138. TargetName_Input.Font = Enum.Font.Gotham
  1139. TargetName_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1140. TargetName_Input.PlaceholderText = "@target... اكتب ثلاث اسماء من الاعب"
  1141. TargetName_Input.Text = ""
  1142. TargetName_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  1143. TargetName_Input.TextSize = 14.000
  1144. TargetName_Input.TextWrapped = true
  1145.  
  1146. ClickTargetTool_Button.Name = "ClickTargetTool_Button"
  1147. ClickTargetTool_Button.Parent = TargetName_Input
  1148. ClickTargetTool_Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1149. ClickTargetTool_Button.BackgroundTransparency = 1.000
  1150. ClickTargetTool_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1151. ClickTargetTool_Button.BorderSizePixel = 0
  1152. ClickTargetTool_Button.Position = UDim2.new(0, 180, 0, 0)
  1153. ClickTargetTool_Button.Size = UDim2.new(0, 30, 0, 30)
  1154. ClickTargetTool_Button.Image = "rbxassetid://2716591855"
  1155.  
  1156. UserIDTargetLabel.Name = "UserIDTargetLabel"
  1157. UserIDTargetLabel.Parent = Target_Section
  1158. UserIDTargetLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1159. UserIDTargetLabel.BackgroundTransparency = 1.000
  1160. UserIDTargetLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1161. UserIDTargetLabel.BorderSizePixel = 0
  1162. UserIDTargetLabel.Position = UDim2.new(0, 150, 0, 70)
  1163. UserIDTargetLabel.Size = UDim2.new(0, 300, 0, 75)
  1164. UserIDTargetLabel.Font = Enum.Font.Oswald
  1165. UserIDTargetLabel.Text = "UserID: \nDisplay: \nJoined: "
  1166. UserIDTargetLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  1167. UserIDTargetLabel.TextSize = 18.000
  1168. UserIDTargetLabel.TextWrapped = true
  1169. UserIDTargetLabel.TextXAlignment = Enum.TextXAlignment.Left
  1170. UserIDTargetLabel.TextYAlignment = Enum.TextYAlignment.Top
  1171.  
  1172. ViewTarget_Button.Name = "ViewTarget_Button"
  1173. ViewTarget_Button.Parent = Target_Section
  1174. ViewTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1175. ViewTarget_Button.BackgroundTransparency = 0.500
  1176. ViewTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1177. ViewTarget_Button.BorderSizePixel = 0
  1178. ViewTarget_Button.Position = UDim2.new(0, 210, 0, 150)
  1179. ViewTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1180. ViewTarget_Button.Font = Enum.Font.Oswald
  1181. ViewTarget_Button.Text = "مشاهده"
  1182. ViewTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1183. ViewTarget_Button.TextScaled = true
  1184. ViewTarget_Button.TextSize = 14.000
  1185. ViewTarget_Button.TextWrapped = true
  1186.  
  1187. FlingTarget_Button.Name = "FlingTarget_Button"
  1188. FlingTarget_Button.Parent = Target_Section
  1189. FlingTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1190. FlingTarget_Button.BackgroundTransparency = 0.500
  1191. FlingTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1192. FlingTarget_Button.BorderSizePixel = 0
  1193. FlingTarget_Button.Position = UDim2.new(0, 25, 0, 150)
  1194. FlingTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1195. FlingTarget_Button.Font = Enum.Font.Oswald
  1196. FlingTarget_Button.Text = "طيران"
  1197. FlingTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1198. FlingTarget_Button.TextScaled = true
  1199. FlingTarget_Button.TextSize = 14.000
  1200. FlingTarget_Button.TextWrapped = true
  1201.  
  1202. FocusTarget_Button.Name = "FocusTarget_Button"
  1203. FocusTarget_Button.Parent = Target_Section
  1204. FocusTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1205. FocusTarget_Button.BackgroundTransparency = 0.500
  1206. FocusTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1207. FocusTarget_Button.BorderSizePixel = 0
  1208. FocusTarget_Button.Position = UDim2.new(0, 25, 0, 200)
  1209. FocusTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1210. FocusTarget_Button.Font = Enum.Font.Oswald
  1211. FocusTarget_Button.Text = "تركيز"
  1212. FocusTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1213. FocusTarget_Button.TextScaled = true
  1214. FocusTarget_Button.TextSize = 14.000
  1215. FocusTarget_Button.TextWrapped = true
  1216.  
  1217. BenxTarget_Button.Name = "BenxTarget_Button"
  1218. BenxTarget_Button.Parent = Target_Section
  1219. BenxTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1220. BenxTarget_Button.BackgroundTransparency = 0.500
  1221. BenxTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1222. BenxTarget_Button.BorderSizePixel = 0
  1223. BenxTarget_Button.Position = UDim2.new(0, 210, 0, 200)
  1224. BenxTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1225. BenxTarget_Button.Font = Enum.Font.Oswald
  1226. BenxTarget_Button.Text = "بانق"
  1227. BenxTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1228. BenxTarget_Button.TextScaled = true
  1229. BenxTarget_Button.TextSize = 14.000
  1230. BenxTarget_Button.TextWrapped = true
  1231.  
  1232. PushTarget_Button.Name = "PushTarget_Button"
  1233. PushTarget_Button.Parent = Target_Section
  1234. PushTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1235. PushTarget_Button.BackgroundTransparency = 0.500
  1236. PushTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1237. PushTarget_Button.BorderSizePixel = 0
  1238. PushTarget_Button.Position = UDim2.new(0, 25, 0, 400)
  1239. PushTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1240. PushTarget_Button.Font = Enum.Font.Oswald
  1241. PushTarget_Button.Text = "دف"
  1242. PushTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1243. PushTarget_Button.TextScaled = true
  1244. PushTarget_Button.TextSize = 14.000
  1245. PushTarget_Button.TextWrapped = true
  1246.  
  1247. WhitelistTarget_Button.Name = "WhitelistTarget_Button"
  1248. WhitelistTarget_Button.Parent = Target_Section
  1249. WhitelistTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1250. WhitelistTarget_Button.BackgroundTransparency = 0.500
  1251. WhitelistTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1252. WhitelistTarget_Button.BorderSizePixel = 0
  1253. WhitelistTarget_Button.Position = UDim2.new(0, 210, 0, 400)
  1254. WhitelistTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1255. WhitelistTarget_Button.Font = Enum.Font.Oswald
  1256. WhitelistTarget_Button.Text = "وايت ليست"
  1257. WhitelistTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1258. WhitelistTarget_Button.TextScaled = true
  1259. WhitelistTarget_Button.TextSize = 14.000
  1260. WhitelistTarget_Button.TextWrapped = true
  1261.  
  1262. TeleportTarget_Button.Name = "TeleportTarget_Button"
  1263. TeleportTarget_Button.Parent = Target_Section
  1264. TeleportTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1265. TeleportTarget_Button.BackgroundTransparency = 0.500
  1266. TeleportTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1267. TeleportTarget_Button.BorderSizePixel = 0
  1268. TeleportTarget_Button.Position = UDim2.new(0, 210, 0, 350)
  1269. TeleportTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1270. TeleportTarget_Button.Font = Enum.Font.Oswald
  1271. TeleportTarget_Button.Text = "تنقل"
  1272. TeleportTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1273. TeleportTarget_Button.TextScaled = true
  1274. TeleportTarget_Button.TextSize = 14.000
  1275. TeleportTarget_Button.TextWrapped = true
  1276.  
  1277. HeadsitTarget_Button.Name = "HeadsitTarget_Button"
  1278. HeadsitTarget_Button.Parent = Target_Section
  1279. HeadsitTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1280. HeadsitTarget_Button.BackgroundTransparency = 0.500
  1281. HeadsitTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1282. HeadsitTarget_Button.BorderSizePixel = 0
  1283. HeadsitTarget_Button.Position = UDim2.new(0, 210, 0, 250)
  1284. HeadsitTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1285. HeadsitTarget_Button.Font = Enum.Font.Oswald
  1286. HeadsitTarget_Button.Text = "جلوس في راسه"
  1287. HeadsitTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1288. HeadsitTarget_Button.TextScaled = true
  1289. HeadsitTarget_Button.TextSize = 14.000
  1290. HeadsitTarget_Button.TextWrapped = true
  1291.  
  1292. StandTarget_Button.Name = "StandTarget_Button"
  1293. StandTarget_Button.Parent = Target_Section
  1294. StandTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1295. StandTarget_Button.BackgroundTransparency = 0.500
  1296. StandTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1297. StandTarget_Button.BorderSizePixel = 0
  1298. StandTarget_Button.Position = UDim2.new(0, 25, 0, 250)
  1299. StandTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1300. StandTarget_Button.Font = Enum.Font.Oswald
  1301. StandTarget_Button.Text = "ستاند"
  1302. StandTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1303. StandTarget_Button.TextScaled = true
  1304. StandTarget_Button.TextSize = 14.000
  1305. StandTarget_Button.TextWrapped = true
  1306.  
  1307. BackpackTarget_Button.Name = "BackpackTarget_Button"
  1308. BackpackTarget_Button.Parent = Target_Section
  1309. BackpackTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1310. BackpackTarget_Button.BackgroundTransparency = 0.500
  1311. BackpackTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1312. BackpackTarget_Button.BorderSizePixel = 0
  1313. BackpackTarget_Button.Position = UDim2.new(0, 210, 0, 300)
  1314. BackpackTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1315. BackpackTarget_Button.Font = Enum.Font.Oswald
  1316. BackpackTarget_Button.Text = "حقيبة الظهر "
  1317. BackpackTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1318. BackpackTarget_Button.TextScaled = true
  1319. BackpackTarget_Button.TextSize = 14.000
  1320. BackpackTarget_Button.TextWrapped = true
  1321.  
  1322. DoggyTarget_Button.Name = "DoggyTarget_Button"
  1323. DoggyTarget_Button.Parent = Target_Section
  1324. DoggyTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1325. DoggyTarget_Button.BackgroundTransparency = 0.500
  1326. DoggyTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1327. DoggyTarget_Button.BorderSizePixel = 0
  1328. DoggyTarget_Button.Position = UDim2.new(0, 25, 0, 300)
  1329. DoggyTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1330. DoggyTarget_Button.Font = Enum.Font.Oswald
  1331. DoggyTarget_Button.Text = "تصير كلب عنده"
  1332. DoggyTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1333. DoggyTarget_Button.TextScaled = true
  1334. DoggyTarget_Button.TextSize = 14.000
  1335. DoggyTarget_Button.TextWrapped = true
  1336.  
  1337. DragTarget_Button.Name = "DragTarget_Button"
  1338. DragTarget_Button.Parent = Target_Section
  1339. DragTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1340. DragTarget_Button.BackgroundTransparency = 0.500
  1341. DragTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1342. DragTarget_Button.BorderSizePixel = 0
  1343. DragTarget_Button.Position = UDim2.new(0, 25, 0, 350)
  1344. DragTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1345. DragTarget_Button.Font = Enum.Font.Oswald
  1346. DragTarget_Button.Text = "يجر"
  1347. DragTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1348. DragTarget_Button.TextScaled = true
  1349. DragTarget_Button.TextSize = 14.000
  1350. DragTarget_Button.TextWrapped = true
  1351.  
  1352. Animations_Section.Name = "Animations_Section"
  1353. Animations_Section.Parent = Background
  1354. Animations_Section.Active = true
  1355. Animations_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1356. Animations_Section.BackgroundTransparency = 1.000
  1357. Animations_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1358. Animations_Section.BorderSizePixel = 0
  1359. Animations_Section.Position = UDim2.new(0, 105, 0, 30)
  1360. Animations_Section.Size = UDim2.new(0, 395, 0, 320)
  1361. Animations_Section.Visible = false
  1362. Animations_Section.CanvasSize = UDim2.new(0, 0, 1.6, 0)
  1363. Animations_Section.ScrollBarThickness = 5
  1364.  
  1365. VampireAnim_Button.Name = "VampireAnim_Button"
  1366. VampireAnim_Button.Parent = Animations_Section
  1367. VampireAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1368. VampireAnim_Button.BackgroundTransparency = 0.500
  1369. VampireAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1370. VampireAnim_Button.BorderSizePixel = 0
  1371. VampireAnim_Button.Position = UDim2.new(0, 25, 0, 25)
  1372. VampireAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1373. VampireAnim_Button.Font = Enum.Font.Oswald
  1374. VampireAnim_Button.Text = "مشيه فامبير . مصاص دماء "
  1375. VampireAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1376. VampireAnim_Button.TextScaled = true
  1377. VampireAnim_Button.TextSize = 14.000
  1378. VampireAnim_Button.TextWrapped = true
  1379.  
  1380. HeroAnim_Button.Name = "HeroAnim_Button"
  1381. HeroAnim_Button.Parent = Animations_Section
  1382. HeroAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1383. HeroAnim_Button.BackgroundTransparency = 0.500
  1384. HeroAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1385. HeroAnim_Button.BorderSizePixel = 0
  1386. HeroAnim_Button.Position = UDim2.new(0, 210, 0, 25)
  1387. HeroAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1388. HeroAnim_Button.Font = Enum.Font.Oswald
  1389. HeroAnim_Button.Text = "مشيه هيرو"
  1390. HeroAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1391. HeroAnim_Button.TextScaled = true
  1392. HeroAnim_Button.TextSize = 14.000
  1393. HeroAnim_Button.TextWrapped = true
  1394.  
  1395. ZombieClassicAnim_Button.Name = "ZombieClassicAnim_Button"
  1396. ZombieClassicAnim_Button.Parent = Animations_Section
  1397. ZombieClassicAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1398. ZombieClassicAnim_Button.BackgroundTransparency = 0.500
  1399. ZombieClassicAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1400. ZombieClassicAnim_Button.BorderSizePixel = 0
  1401. ZombieClassicAnim_Button.Position = UDim2.new(0, 25, 0, 75)
  1402. ZombieClassicAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1403. ZombieClassicAnim_Button.Font = Enum.Font.Oswald
  1404. ZombieClassicAnim_Button.Text = "مشيه زومبي كلاسيك"
  1405. ZombieClassicAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1406. ZombieClassicAnim_Button.TextScaled = true
  1407. ZombieClassicAnim_Button.TextSize = 14.000
  1408. ZombieClassicAnim_Button.TextWrapped = true
  1409.  
  1410. MageAnim_Button.Name = "MageAnim_Button"
  1411. MageAnim_Button.Parent = Animations_Section
  1412. MageAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1413. MageAnim_Button.BackgroundTransparency = 0.500
  1414. MageAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1415. MageAnim_Button.BorderSizePixel = 0
  1416. MageAnim_Button.Position = UDim2.new(0, 210, 0, 75)
  1417. MageAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1418. MageAnim_Button.Font = Enum.Font.Oswald
  1419. MageAnim_Button.Text = "مشيه بركه "
  1420. MageAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1421. MageAnim_Button.TextScaled = true
  1422. MageAnim_Button.TextSize = 14.000
  1423. MageAnim_Button.TextWrapped = true
  1424.  
  1425. GhostAnim_Button.Name = "GhostAnim_Button"
  1426. GhostAnim_Button.Parent = Animations_Section
  1427. GhostAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1428. GhostAnim_Button.BackgroundTransparency = 0.500
  1429. GhostAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1430. GhostAnim_Button.BorderSizePixel = 0
  1431. GhostAnim_Button.Position = UDim2.new(0, 25, 0, 125)
  1432. GhostAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1433. GhostAnim_Button.Font = Enum.Font.Oswald
  1434. GhostAnim_Button.Text = "مشيه قوست"
  1435. GhostAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1436. GhostAnim_Button.TextScaled = true
  1437. GhostAnim_Button.TextSize = 14.000
  1438. GhostAnim_Button.TextWrapped = true
  1439.  
  1440. ElderAnim_Button.Name = "ElderAnim_Button"
  1441. ElderAnim_Button.Parent = Animations_Section
  1442. ElderAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1443. ElderAnim_Button.BackgroundTransparency = 0.500
  1444. ElderAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1445. ElderAnim_Button.BorderSizePixel = 0
  1446. ElderAnim_Button.Position = UDim2.new(0, 210, 0, 125)
  1447. ElderAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1448. ElderAnim_Button.Font = Enum.Font.Oswald
  1449. ElderAnim_Button.Text = "مشيه المسنين "
  1450. ElderAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1451. ElderAnim_Button.TextScaled = true
  1452. ElderAnim_Button.TextSize = 14.000
  1453. ElderAnim_Button.TextWrapped = true
  1454.  
  1455. LevitationAnim_Button.Name = "LevitationAnim_Button"
  1456. LevitationAnim_Button.Parent = Animations_Section
  1457. LevitationAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1458. LevitationAnim_Button.BackgroundTransparency = 0.500
  1459. LevitationAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1460. LevitationAnim_Button.BorderSizePixel = 0
  1461. LevitationAnim_Button.Position = UDim2.new(0, 25, 0, 175)
  1462. LevitationAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1463. LevitationAnim_Button.Font = Enum.Font.Oswald
  1464. LevitationAnim_Button.Text = "مشيه الإرتفاع "
  1465. LevitationAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1466. LevitationAnim_Button.TextScaled = true
  1467. LevitationAnim_Button.TextSize = 14.000
  1468. LevitationAnim_Button.TextWrapped = true
  1469.  
  1470. AstronautAnim_Button.Name = "AstronautAnim_Button"
  1471. AstronautAnim_Button.Parent = Animations_Section
  1472. AstronautAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1473. AstronautAnim_Button.BackgroundTransparency = 0.500
  1474. AstronautAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1475. AstronautAnim_Button.BorderSizePixel = 0
  1476. AstronautAnim_Button.Position = UDim2.new(0, 210, 0, 175)
  1477. AstronautAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1478. AstronautAnim_Button.Font = Enum.Font.Oswald
  1479. AstronautAnim_Button.Text = " مشيه رائد فضاء "
  1480. AstronautAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1481. AstronautAnim_Button.TextScaled = true
  1482. AstronautAnim_Button.TextSize = 14.000
  1483. AstronautAnim_Button.TextWrapped = true
  1484.  
  1485. NinjaAnim_Button.Name = "NinjaAnim_Button"
  1486. NinjaAnim_Button.Parent = Animations_Section
  1487. NinjaAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1488. NinjaAnim_Button.BackgroundTransparency = 0.500
  1489. NinjaAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1490. NinjaAnim_Button.BorderSizePixel = 0
  1491. NinjaAnim_Button.Position = UDim2.new(0, 25, 0, 225)
  1492. NinjaAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1493. NinjaAnim_Button.Font = Enum.Font.Oswald
  1494. NinjaAnim_Button.Text = "مشيه نينجا"
  1495. NinjaAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1496. NinjaAnim_Button.TextScaled = true
  1497. NinjaAnim_Button.TextSize = 14.000
  1498. NinjaAnim_Button.TextWrapped = true
  1499.  
  1500. WerewolfAnim_Button.Name = "WerewolfAnim_Button"
  1501. WerewolfAnim_Button.Parent = Animations_Section
  1502. WerewolfAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1503. WerewolfAnim_Button.BackgroundTransparency = 0.500
  1504. WerewolfAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1505. WerewolfAnim_Button.BorderSizePixel = 0
  1506. WerewolfAnim_Button.Position = UDim2.new(0, 210, 0, 225)
  1507. WerewolfAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1508. WerewolfAnim_Button.Font = Enum.Font.Oswald
  1509. WerewolfAnim_Button.Text = "مشيه ذئب "
  1510. WerewolfAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1511. WerewolfAnim_Button.TextScaled = true
  1512. WerewolfAnim_Button.TextSize = 14.000
  1513. WerewolfAnim_Button.TextWrapped = true
  1514.  
  1515. CartoonAnim_Button.Name = "CartoonAnim_Button"
  1516. CartoonAnim_Button.Parent = Animations_Section
  1517. CartoonAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1518. CartoonAnim_Button.BackgroundTransparency = 0.500
  1519. CartoonAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1520. CartoonAnim_Button.BorderSizePixel = 0
  1521. CartoonAnim_Button.Position = UDim2.new(0, 25, 0, 275)
  1522. CartoonAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1523. CartoonAnim_Button.Font = Enum.Font.Oswald
  1524. CartoonAnim_Button.Text = "مشيه كارتون "
  1525. CartoonAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1526. CartoonAnim_Button.TextScaled = true
  1527. CartoonAnim_Button.TextSize = 14.000
  1528. CartoonAnim_Button.TextWrapped = true
  1529.  
  1530. PirateAnim_Button.Name = "PirateAnim_Button"
  1531. PirateAnim_Button.Parent = Animations_Section
  1532. PirateAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1533. PirateAnim_Button.BackgroundTransparency = 0.500
  1534. PirateAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1535. PirateAnim_Button.BorderSizePixel = 0
  1536. PirateAnim_Button.Position = UDim2.new(0, 210, 0, 275)
  1537. PirateAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1538. PirateAnim_Button.Font = Enum.Font.Oswald
  1539. PirateAnim_Button.Text = "مشيه قرصان"
  1540. PirateAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1541. PirateAnim_Button.TextScaled = true
  1542. PirateAnim_Button.TextSize = 14.000
  1543. PirateAnim_Button.TextWrapped = true
  1544.  
  1545. SneakyAnim_Button.Name = "SneakyAnim_Button"
  1546. SneakyAnim_Button.Parent = Animations_Section
  1547. SneakyAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1548. SneakyAnim_Button.BackgroundTransparency = 0.500
  1549. SneakyAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1550. SneakyAnim_Button.BorderSizePixel = 0
  1551. SneakyAnim_Button.Position = UDim2.new(0, 25, 0, 325)
  1552. SneakyAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1553. SneakyAnim_Button.Font = Enum.Font.Oswald
  1554. SneakyAnim_Button.Text = " مشيه متستر "
  1555. SneakyAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1556. SneakyAnim_Button.TextScaled = true
  1557. SneakyAnim_Button.TextSize = 14.000
  1558. SneakyAnim_Button.TextWrapped = true
  1559.  
  1560. ToyAnim_Button.Name = "ToyAnim_Button"
  1561. ToyAnim_Button.Parent = Animations_Section
  1562. ToyAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1563. ToyAnim_Button.BackgroundTransparency = 0.500
  1564. ToyAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1565. ToyAnim_Button.BorderSizePixel = 0
  1566. ToyAnim_Button.Position = UDim2.new(0, 210, 0, 325)
  1567. ToyAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1568. ToyAnim_Button.Font = Enum.Font.Oswald
  1569. ToyAnim_Button.Text = " مشيه لعبة "
  1570. ToyAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1571. ToyAnim_Button.TextScaled = true
  1572. ToyAnim_Button.TextSize = 14.000
  1573. ToyAnim_Button.TextWrapped = true
  1574.  
  1575. KnightAnim_Button.Name = "KnightAnim_Button"
  1576. KnightAnim_Button.Parent = Animations_Section
  1577. KnightAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1578. KnightAnim_Button.BackgroundTransparency = 0.500
  1579. KnightAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1580. KnightAnim_Button.BorderSizePixel = 0
  1581. KnightAnim_Button.Position = UDim2.new(0, 25, 0, 375)
  1582. KnightAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1583. KnightAnim_Button.Font = Enum.Font.Oswald
  1584. KnightAnim_Button.Text = "مشيه فارس "
  1585. KnightAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1586. KnightAnim_Button.TextScaled = true
  1587. KnightAnim_Button.TextSize = 14.000
  1588. KnightAnim_Button.TextWrapped = true
  1589.  
  1590. ConfidentAnim_Button.Name = "ConfidentAnim_Button"
  1591. ConfidentAnim_Button.Parent = Animations_Section
  1592. ConfidentAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1593. ConfidentAnim_Button.BackgroundTransparency = 0.500
  1594. ConfidentAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1595. ConfidentAnim_Button.BorderSizePixel = 0
  1596. ConfidentAnim_Button.Position = UDim2.new(0, 210, 0, 375)
  1597. ConfidentAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1598. ConfidentAnim_Button.Font = Enum.Font.Oswald
  1599. ConfidentAnim_Button.Text = "مشيه واثق "
  1600. ConfidentAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1601. ConfidentAnim_Button.TextScaled = true
  1602. ConfidentAnim_Button.TextSize = 14.000
  1603. ConfidentAnim_Button.TextWrapped = true
  1604.  
  1605. PopstarAnim_Button.Name = "PopstarAnim_Button"
  1606. PopstarAnim_Button.Parent = Animations_Section
  1607. PopstarAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1608. PopstarAnim_Button.BackgroundTransparency = 0.500
  1609. PopstarAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1610. PopstarAnim_Button.BorderSizePixel = 0
  1611. PopstarAnim_Button.Position = UDim2.new(0, 25, 0, 425)
  1612. PopstarAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1613. PopstarAnim_Button.Font = Enum.Font.Oswald
  1614. PopstarAnim_Button.Text = "مشيه PopStar"
  1615. PopstarAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1616. PopstarAnim_Button.TextScaled = true
  1617. PopstarAnim_Button.TextSize = 14.000
  1618. PopstarAnim_Button.TextWrapped = true
  1619.  
  1620. PrincessAnim_Button.Name = "PrincessAnim_Button"
  1621. PrincessAnim_Button.Parent = Animations_Section
  1622. PrincessAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1623. PrincessAnim_Button.BackgroundTransparency = 0.500
  1624. PrincessAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1625. PrincessAnim_Button.BorderSizePixel = 0
  1626. PrincessAnim_Button.Position = UDim2.new(0, 210, 0, 425)
  1627. PrincessAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1628. PrincessAnim_Button.Font = Enum.Font.Oswald
  1629. PrincessAnim_Button.Text = "مشيه برنس"
  1630. PrincessAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1631. PrincessAnim_Button.TextScaled = true
  1632. PrincessAnim_Button.TextSize = 14.000
  1633. PrincessAnim_Button.TextWrapped = true
  1634.  
  1635. CowboyAnim_Button.Name = "CowboyAnim_Button"
  1636. CowboyAnim_Button.Parent = Animations_Section
  1637. CowboyAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1638. CowboyAnim_Button.BackgroundTransparency = 0.500
  1639. CowboyAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1640. CowboyAnim_Button.BorderSizePixel = 0
  1641. CowboyAnim_Button.Position = UDim2.new(0, 25, 0, 475)
  1642. CowboyAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1643. CowboyAnim_Button.Font = Enum.Font.Oswald
  1644. CowboyAnim_Button.Text = " مشيه رعاة البقر "
  1645. CowboyAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1646. CowboyAnim_Button.TextScaled = true
  1647. CowboyAnim_Button.TextSize = 14.000
  1648. CowboyAnim_Button.TextWrapped = true
  1649.  
  1650. PatrolAnim_Button.Name = "PatrolAnim_Button"
  1651. PatrolAnim_Button.Parent = Animations_Section
  1652. PatrolAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1653. PatrolAnim_Button.BackgroundTransparency = 0.500
  1654. PatrolAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1655. PatrolAnim_Button.BorderSizePixel = 0
  1656. PatrolAnim_Button.Position = UDim2.new(0, 210, 0, 475)
  1657. PatrolAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1658. PatrolAnim_Button.Font = Enum.Font.Oswald
  1659. PatrolAnim_Button.Text = " مشيه دورية "
  1660. PatrolAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1661. PatrolAnim_Button.TextScaled = true
  1662. PatrolAnim_Button.TextSize = 14.000
  1663. PatrolAnim_Button.TextWrapped = true
  1664.  
  1665. ZombieFEAnim_Button.Name = "ZombieFEAnim_Button"
  1666. ZombieFEAnim_Button.Parent = Animations_Section
  1667. ZombieFEAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1668. ZombieFEAnim_Button.BackgroundTransparency = 0.500
  1669. ZombieFEAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1670. ZombieFEAnim_Button.BorderSizePixel = 0
  1671. ZombieFEAnim_Button.Position = UDim2.new(0, 25, 0, 525)
  1672. ZombieFEAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1673. ZombieFEAnim_Button.Font = Enum.Font.Oswald
  1674. ZombieFEAnim_Button.Text = "زومبي يظهر"
  1675. ZombieFEAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1676. ZombieFEAnim_Button.TextScaled = true
  1677. ZombieFEAnim_Button.TextSize = 14.000
  1678. ZombieFEAnim_Button.TextWrapped = true
  1679.  
  1680. Misc_Section.Name = "Misc_Section"
  1681. Misc_Section.Parent = Background
  1682. Misc_Section.Active = true
  1683. Misc_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1684. Misc_Section.BackgroundTransparency = 1.000
  1685. Misc_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1686. Misc_Section.BorderSizePixel = 0
  1687. Misc_Section.Position = UDim2.new(0, 105, 0, 30)
  1688. Misc_Section.Size = UDim2.new(0, 395, 0, 320)
  1689. Misc_Section.Visible = false
  1690. Misc_Section.CanvasSize = UDim2.new(0, 0, 1.1, 0)
  1691. Misc_Section.ScrollBarThickness = 5
  1692.  
  1693. AntiFling_Button.Name = "AntiFling_Button"
  1694. AntiFling_Button.Parent = Misc_Section
  1695. AntiFling_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1696. AntiFling_Button.BackgroundTransparency = 0.500
  1697. AntiFling_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1698. AntiFling_Button.BorderSizePixel = 0
  1699. AntiFling_Button.Position = UDim2.new(0, 25, 0, 25)
  1700. AntiFling_Button.Size = UDim2.new(0, 150, 0, 30)
  1701. AntiFling_Button.Font = Enum.Font.Oswald
  1702. AntiFling_Button.Text = "عدم الطيران"
  1703. AntiFling_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1704. AntiFling_Button.TextScaled = true
  1705. AntiFling_Button.TextSize = 14.000
  1706. AntiFling_Button.TextWrapped = true
  1707.  
  1708. AntiAFK_Button.Name = "AntiAFK_Button"
  1709. AntiAFK_Button.Parent = Misc_Section
  1710. AntiAFK_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1711. AntiAFK_Button.BackgroundTransparency = 0.500
  1712. AntiAFK_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1713. AntiAFK_Button.BorderSizePixel = 0
  1714. AntiAFK_Button.Position = UDim2.new(0, 25, 0, 75)
  1715. AntiAFK_Button.Size = UDim2.new(0, 150, 0, 30)
  1716. AntiAFK_Button.Font = Enum.Font.Oswald
  1717. AntiAFK_Button.Text = "ما يطلعك اذا كنت مافك"
  1718. AntiAFK_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1719. AntiAFK_Button.TextScaled = true
  1720. AntiAFK_Button.TextSize = 14.000
  1721. AntiAFK_Button.TextWrapped = true
  1722.  
  1723. AntiChatSpy_Button.Name = "AntiChatSpy_Button"
  1724. AntiChatSpy_Button.Parent = Misc_Section
  1725. AntiChatSpy_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1726. AntiChatSpy_Button.BackgroundTransparency = 0.500
  1727. AntiChatSpy_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1728. AntiChatSpy_Button.BorderSizePixel = 0
  1729. AntiChatSpy_Button.Position = UDim2.new(0, 210, 0, 25)
  1730. AntiChatSpy_Button.Size = UDim2.new(0, 150, 0, 30)
  1731. AntiChatSpy_Button.Font = Enum.Font.Oswald
  1732. AntiChatSpy_Button.Text = "توقيف شات مهكر"
  1733. AntiChatSpy_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1734. AntiChatSpy_Button.TextScaled = true
  1735. AntiChatSpy_Button.TextSize = 14.000
  1736. AntiChatSpy_Button.TextWrapped = true
  1737.  
  1738. Shaders_Button.Name = "Shaders_Button"
  1739. Shaders_Button.Parent = Misc_Section
  1740. Shaders_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1741. Shaders_Button.BackgroundTransparency = 0.500
  1742. Shaders_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1743. Shaders_Button.BorderSizePixel = 0
  1744. Shaders_Button.Position = UDim2.new(0, 210, 0, 75)
  1745. Shaders_Button.Size = UDim2.new(0, 150, 0, 30)
  1746. Shaders_Button.Font = Enum.Font.Oswald
  1747. Shaders_Button.Text = "شادر "
  1748. Shaders_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1749. Shaders_Button.TextScaled = true
  1750. Shaders_Button.TextSize = 14.000
  1751. Shaders_Button.TextWrapped = true
  1752.  
  1753. Day_Button.Name = "Day_Button"
  1754. Day_Button.Parent = Misc_Section
  1755. Day_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1756. Day_Button.BackgroundTransparency = 0.500
  1757. Day_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1758. Day_Button.BorderSizePixel = 0
  1759. Day_Button.Position = UDim2.new(0, 25, 0, 125)
  1760. Day_Button.Size = UDim2.new(0, 150, 0, 30)
  1761. Day_Button.Font = Enum.Font.Oswald
  1762. Day_Button.Text = "صباح "
  1763. Day_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1764. Day_Button.TextScaled = true
  1765. Day_Button.TextSize = 14.000
  1766. Day_Button.TextWrapped = true
  1767.  
  1768. Night_Button.Name = "Night_Button"
  1769. Night_Button.Parent = Misc_Section
  1770. Night_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1771. Night_Button.BackgroundTransparency = 0.500
  1772. Night_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1773. Night_Button.BorderSizePixel = 0
  1774. Night_Button.Position = UDim2.new(0, 210, 0, 125)
  1775. Night_Button.Size = UDim2.new(0, 150, 0, 30)
  1776. Night_Button.Font = Enum.Font.Oswald
  1777. Night_Button.Text = "ليل "
  1778. Night_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1779. Night_Button.TextScaled = true
  1780. Night_Button.TextSize = 14.000
  1781. Night_Button.TextWrapped = true
  1782.  
  1783. Explode_Button.Name = "Explode_Button"
  1784. Explode_Button.Parent = Misc_Section
  1785. Explode_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1786. Explode_Button.BackgroundTransparency = 0.500
  1787. Explode_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1788. Explode_Button.BorderSizePixel = 0
  1789. Explode_Button.Position = UDim2.new(0, 25, 0, 225)
  1790. Explode_Button.Size = UDim2.new(0, 150, 0, 30)
  1791. Explode_Button.Font = Enum.Font.Oswald
  1792. Explode_Button.Text = "Explode | تخريب"
  1793. Explode_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1794. Explode_Button.TextScaled = true
  1795. Explode_Button.TextSize = 14.000
  1796. Explode_Button.TextWrapped = true
  1797.  
  1798. Rejoin_Button.Name = "Rejoin_Button"
  1799. Rejoin_Button.Parent = Misc_Section
  1800. Rejoin_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1801. Rejoin_Button.BackgroundTransparency = 0.500
  1802. Rejoin_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1803. Rejoin_Button.BorderSizePixel = 0
  1804. Rejoin_Button.Position = UDim2.new(0, 25, 0, 275)
  1805. Rejoin_Button.Size = UDim2.new(0, 150, 0, 30)
  1806. Rejoin_Button.Font = Enum.Font.Oswald
  1807. Rejoin_Button.Text = "اعاده الانضمام "
  1808. Rejoin_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1809. Rejoin_Button.TextScaled = true
  1810. Rejoin_Button.TextSize = 14.000
  1811. Rejoin_Button.TextWrapped = true
  1812.  
  1813. CMDX_Button.Name = "CMDX_Button"
  1814. CMDX_Button.Parent = Misc_Section
  1815. CMDX_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1816. CMDX_Button.BackgroundTransparency = 0.500
  1817. CMDX_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1818. CMDX_Button.BorderSizePixel = 0
  1819. CMDX_Button.Position = UDim2.new(0, 210, 0, 175)
  1820. CMDX_Button.Size = UDim2.new(0, 150, 0, 30)
  1821. CMDX_Button.Font = Enum.Font.Oswald
  1822. CMDX_Button.Text = "Nameless"
  1823. CMDX_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1824. CMDX_Button.TextScaled = true
  1825. CMDX_Button.TextSize = 14.000
  1826. CMDX_Button.TextWrapped = true
  1827.  
  1828. InfYield_Button.Name = "InfYield_Button"
  1829. InfYield_Button.Parent = Misc_Section
  1830. InfYield_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1831. InfYield_Button.BackgroundTransparency = 0.500
  1832. InfYield_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1833. InfYield_Button.BorderSizePixel = 0
  1834. InfYield_Button.Position = UDim2.new(0, 25, 0, 175)
  1835. InfYield_Button.Size = UDim2.new(0, 150, 0, 30)
  1836. InfYield_Button.Font = Enum.Font.Oswald
  1837. InfYield_Button.Text = "InfYield"
  1838. InfYield_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1839. InfYield_Button.TextScaled = true
  1840. InfYield_Button.TextSize = 14.000
  1841. InfYield_Button.TextWrapped = true
  1842.  
  1843. FreeEmotes_Button.Name = "FreeEmotes_Button"
  1844. FreeEmotes_Button.Parent = Misc_Section
  1845. FreeEmotes_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1846. FreeEmotes_Button.BackgroundTransparency = 0.500
  1847. FreeEmotes_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1848. FreeEmotes_Button.BorderSizePixel = 0
  1849. FreeEmotes_Button.Position = UDim2.new(0, 210, 0, 225)
  1850. FreeEmotes_Button.Size = UDim2.new(0, 150, 0, 30)
  1851. FreeEmotes_Button.Font = Enum.Font.Oswald
  1852. FreeEmotes_Button.Text = "رقصات تظهر قدام ناس مجانا"
  1853. FreeEmotes_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1854. FreeEmotes_Button.TextScaled = true
  1855. FreeEmotes_Button.TextSize = 14.000
  1856. FreeEmotes_Button.TextWrapped = true
  1857.  
  1858. Serverhop_Button.Name = "Serverhop_Button"
  1859. Serverhop_Button.Parent = Misc_Section
  1860. Serverhop_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1861. Serverhop_Button.BackgroundTransparency = 0.500
  1862. Serverhop_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1863. Serverhop_Button.BorderSizePixel = 0
  1864. Serverhop_Button.Position = UDim2.new(0, 210, 0, 275)
  1865. Serverhop_Button.Size = UDim2.new(0, 150, 0, 30)
  1866. Serverhop_Button.Font = Enum.Font.Oswald
  1867. Serverhop_Button.Text = "تغير سيرفر"
  1868. Serverhop_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1869. Serverhop_Button.TextScaled = true
  1870. Serverhop_Button.TextSize = 14.000
  1871. Serverhop_Button.TextWrapped = true
  1872.  
  1873. ChatBox_Input.Name = "ChatBox_Input"
  1874. ChatBox_Input.Parent = Misc_Section
  1875. ChatBox_Input.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1876. ChatBox_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1877. ChatBox_Input.Position = UDim2.new(0, 25, 0, 325)
  1878. ChatBox_Input.Size = UDim2.new(0, 335, 0, 50)
  1879. ChatBox_Input.Font = Enum.Font.Oswald
  1880. ChatBox_Input.PlaceholderText = "ما منه فايده \ قريب بنضيف اشياء ل شاليه روب"
  1881. ChatBox_Input.Text = ""
  1882. ChatBox_Input.TextColor3 = Color3.fromRGB(0, 255, 255)
  1883. ChatBox_Input.TextSize = 14.000
  1884. ChatBox_Input.TextWrapped = true
  1885. ChatBox_Input.TextXAlignment = Enum.TextXAlignment.Left
  1886. ChatBox_Input.TextYAlignment = Enum.TextYAlignment.Top
  1887.  
  1888. Credits_Section.Name = "Credits_Section"
  1889. Credits_Section.Parent = Background
  1890. Credits_Section.Active = true
  1891. Credits_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1892. Credits_Section.BackgroundTransparency = 1.000
  1893. Credits_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1894. Credits_Section.BorderSizePixel = 0
  1895. Credits_Section.Position = UDim2.new(0, 105, 0, 30)
  1896. Credits_Section.Size = UDim2.new(0, 395, 0, 320)
  1897. Credits_Section.Visible = false
  1898. Credits_Section.CanvasSize = UDim2.new(0, 0, 0.8, 0)
  1899. Credits_Section.ScrollBarThickness = 5
  1900.  
  1901. Credits_Label.Name = "Credits_Label"
  1902. Credits_Label.Parent = Credits_Section
  1903. Credits_Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1904. Credits_Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1905. Credits_Label.BorderSizePixel = 0
  1906. Credits_Label.Position = UDim2.new(0, 25, 0, 150)
  1907. Credits_Label.Size = UDim2.new(0, 350, 0, 150)
  1908. Credits_Label.Font = Enum.Font.SourceSans
  1909. Credits_Label.Text = " المطورين : محمد و ايوب | TEAM c0ol107"..version
  1910. Credits_Label.TextColor3 = Color3.fromRGB(0, 255, 255)
  1911. Credits_Label.TextSize = 24.000
  1912. Credits_Label.TextWrapped = true
  1913. Credits_Label.TextXAlignment = Enum.TextXAlignment.Left
  1914. Credits_Label.TextYAlignment = Enum.TextYAlignment.Top
  1915.  
  1916. Crown.Name = "Crown"
  1917. Crown.Parent = Background
  1918. Crown.AnchorPoint = Vector2.new(0.300000012, 0.800000012)
  1919. Crown.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1920. Crown.BackgroundTransparency = 1.000
  1921. Crown.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1922. Crown.BorderSizePixel = 0
  1923. Crown.Rotation = -20.000
  1924. Crown.Size = UDim2.new(0, 75, 0, 75)
  1925. Crown.Image = "rbxassetid://12298407748"
  1926. Crown.ImageColor3 = Color3.fromRGB(0, 255, 255)
  1927.  
  1928. Assets.Name = "Assets"
  1929. Assets.Parent = SysBroker
  1930.  
  1931. Ticket_Asset.Name = "Ticket_Asset"
  1932. Ticket_Asset.Parent = Assets
  1933. Ticket_Asset.AnchorPoint = Vector2.new(0, 0.5)
  1934. Ticket_Asset.BackgroundTransparency = 1.000
  1935. Ticket_Asset.BorderSizePixel = 0
  1936. Ticket_Asset.LayoutOrder = 5
  1937. Ticket_Asset.Position = UDim2.new(1, 5, 0.5, 0)
  1938. Ticket_Asset.Size = UDim2.new(0, 25, 0, 25)
  1939. Ticket_Asset.ZIndex = 2
  1940. Ticket_Asset.Image = "rbxassetid://3926305904"
  1941. Ticket_Asset.ImageColor3 = Color3.fromRGB(255, 0, 0)
  1942. Ticket_Asset.ImageRectOffset = Vector2.new(424, 4)
  1943. Ticket_Asset.ImageRectSize = Vector2.new(36, 36)
  1944.  
  1945. Click_Asset.Name = "Click_Asset"
  1946. Click_Asset.Parent = Assets
  1947. Click_Asset.AnchorPoint = Vector2.new(0, 0.5)
  1948. Click_Asset.BackgroundTransparency = 1.000
  1949. Click_Asset.BorderSizePixel = 0
  1950. Click_Asset.Position = UDim2.new(1, 5, 0.5, 0)
  1951. Click_Asset.Size = UDim2.new(0, 25, 0, 25)
  1952. Click_Asset.ZIndex = 2
  1953. Click_Asset.Image = "rbxassetid://3926305904"
  1954. Click_Asset.ImageColor3 = Color3.fromRGB(100, 100, 100)
  1955. Click_Asset.ImageRectOffset = Vector2.new(204, 964)
  1956. Click_Asset.ImageRectSize = Vector2.new(36, 36)
  1957.  
  1958. Velocity_Asset.AngularVelocity = Vector3.new(0,0,0)
  1959. Velocity_Asset.MaxTorque = Vector3.new(50000,50000,50000)
  1960. Velocity_Asset.P = 1250
  1961. Velocity_Asset.Name = "BreakVelocity"
  1962. Velocity_Asset.Parent = Assets
  1963.  
  1964. Fly_Pad.Name = "Fly_Pad"
  1965. Fly_Pad.Parent = Assets
  1966. Fly_Pad.BackgroundTransparency = 1.000
  1967. Fly_Pad.Position = UDim2.new(0.1, 0, 0.6, 0)
  1968. Fly_Pad.Size = UDim2.new(0, 100, 0, 100)
  1969. Fly_Pad.ZIndex = 2
  1970. Fly_Pad.Image = "rbxassetid://6764432293"
  1971. Fly_Pad.ImageRectOffset = Vector2.new(713, 315)
  1972. Fly_Pad.ImageRectSize = Vector2.new(75, 75)
  1973. Fly_Pad.Visible = false
  1974.  
  1975. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(30, 30, 30)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(0, 255, 255))}
  1976. UIGradient.Rotation = 45
  1977. UIGradient.Parent = Fly_Pad
  1978.  
  1979. FlyAButton.Name = "FlyAButton"
  1980. FlyAButton.Parent = Fly_Pad
  1981. FlyAButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1982. FlyAButton.BackgroundTransparency = 1.000
  1983. FlyAButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1984. FlyAButton.BorderSizePixel = 0
  1985. FlyAButton.Position = UDim2.new(0, 0, 0, 30)
  1986. FlyAButton.Size = UDim2.new(0, 30, 0, 40)
  1987. FlyAButton.Font = Enum.Font.Oswald
  1988. FlyAButton.Text = ""
  1989. FlyAButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  1990. FlyAButton.TextSize = 25.000
  1991. FlyAButton.TextWrapped = true
  1992.  
  1993. FlyDButton.Name = "FlyDButton"
  1994. FlyDButton.Parent = Fly_Pad
  1995. FlyDButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1996. FlyDButton.BackgroundTransparency = 1.000
  1997. FlyDButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1998. FlyDButton.BorderSizePixel = 0
  1999. FlyDButton.Position = UDim2.new(0, 70, 0, 30)
  2000. FlyDButton.Size = UDim2.new(0, 30, 0, 40)
  2001. FlyDButton.Font = Enum.Font.Oswald
  2002. FlyDButton.Text = ""
  2003. FlyDButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2004. FlyDButton.TextSize = 25.000
  2005. FlyDButton.TextWrapped = true
  2006.  
  2007. FlyWButton.Name = "FlyWButton"
  2008. FlyWButton.Parent = Fly_Pad
  2009. FlyWButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2010. FlyWButton.BackgroundTransparency = 1.000
  2011. FlyWButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2012. FlyWButton.BorderSizePixel = 0
  2013. FlyWButton.Position = UDim2.new(0, 30, 0, 0)
  2014. FlyWButton.Size = UDim2.new(0, 40, 0, 30)
  2015. FlyWButton.Font = Enum.Font.Oswald
  2016. FlyWButton.Text = ""
  2017. FlyWButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2018. FlyWButton.TextSize = 25.000
  2019. FlyWButton.TextWrapped = true
  2020.  
  2021. FlySButton.Name = "FlySButton"
  2022. FlySButton.Parent = Fly_Pad
  2023. FlySButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2024. FlySButton.BackgroundTransparency = 1.000
  2025. FlySButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2026. FlySButton.BorderSizePixel = 0
  2027. FlySButton.Position = UDim2.new(0, 30, 0, 70)
  2028. FlySButton.Size = UDim2.new(0, 40, 0, 30)
  2029. FlySButton.Font = Enum.Font.Oswald
  2030. FlySButton.Text = ""
  2031. FlySButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2032. FlySButton.TextSize = 25.000
  2033. FlySButton.TextWrapped = true
  2034.  
  2035. OpenClose.Name = "OpenClose"
  2036. OpenClose.Parent = SysBroker
  2037. OpenClose.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2038. OpenClose.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2039. OpenClose.BorderSizePixel = 0
  2040. OpenClose.Position = UDim2.new(0, 0, 0.5, 0)
  2041. OpenClose.Size = UDim2.new(0, 30, 0, 30)
  2042. OpenClose.Image = "rbxassetid://12298407748"
  2043. OpenClose.ImageColor3 = Color3.fromRGB(0, 255, 255)
  2044.  
  2045. UICornerOC.CornerRadius = UDim.new(1, 0)
  2046. UICornerOC.Parent = OpenClose
  2047.  
  2048. CreateToggle(AntiRagdoll_Button)
  2049. CreateToggle(PushAura_Button)
  2050. CreateToggle(SpamMines_Button)
  2051. CreateToggle(PotionFling_Button)
  2052. CreateToggle(TouchFling_Button)
  2053. CreateToggle(PotionDi_Button)
  2054. CreateToggle(VoidProtection_Button)
  2055. CreateClicker(PushAll_Button)
  2056. CreateClicker(BreakCannons_Button)
  2057. CreateClicker(LethalCannons_Button)
  2058. CreateClicker(ChatAlert_Button)
  2059. CreateClicker(FreePushTool_Button)
  2060. CreateClicker(CannonTP1_Button)
  2061. CreateClicker(CannonTP2_Button)
  2062. CreateClicker(CannonTP3_Button)
  2063. CreateClicker(MinefieldTP_Button)
  2064. CreateClicker(BallonTP_Button)
  2065. CreateClicker(NormalStairsTP_Button)
  2066. CreateClicker(MovingStairsTP_Button)
  2067. CreateClicker(SpiralStairsTP_Button)
  2068. CreateClicker(SkyscraperTP_Button)
  2069. CreateClicker(PoolTP_Button)
  2070.  
  2071. CreateToggle(Fly_Button)
  2072. CreateClicker(WalkSpeed_Button)
  2073. CreateClicker(ClearCheckpoint_Button)
  2074. CreateClicker(JumpPower_Button)
  2075. CreateClicker(SaveCheckpoint_Button)
  2076. CreateClicker(Respawn_Button)
  2077. CreateClicker(FlySpeed_Button)
  2078.  
  2079. CreateToggle(ViewTarget_Button)
  2080. CreateToggle(FlingTarget_Button)
  2081. CreateToggle(FocusTarget_Button)
  2082. CreateToggle(BenxTarget_Button)
  2083. CreateToggle(HeadsitTarget_Button)
  2084. CreateToggle(StandTarget_Button)
  2085. CreateToggle(BackpackTarget_Button)
  2086. CreateToggle(DoggyTarget_Button)
  2087. CreateToggle(DragTarget_Button)
  2088. CreateClicker(PushTarget_Button)
  2089. CreateClicker(WhitelistTarget_Button)
  2090. CreateClicker(TeleportTarget_Button)
  2091.  
  2092. CreateClicker(VampireAnim_Button)
  2093. CreateClicker(HeroAnim_Button)
  2094. CreateClicker(ZombieClassicAnim_Button)
  2095. CreateClicker(MageAnim_Button)
  2096. CreateClicker(GhostAnim_Button)
  2097. CreateClicker(ElderAnim_Button)
  2098. CreateClicker(LevitationAnim_Button)
  2099. CreateClicker(AstronautAnim_Button)
  2100. CreateClicker(NinjaAnim_Button)
  2101. CreateClicker(WerewolfAnim_Button)
  2102. CreateClicker(CartoonAnim_Button)
  2103. CreateClicker(PirateAnim_Button)
  2104. CreateClicker(SneakyAnim_Button)
  2105. CreateClicker(ToyAnim_Button)
  2106. CreateClicker(KnightAnim_Button)
  2107. CreateClicker(ConfidentAnim_Button)
  2108. CreateClicker(PopstarAnim_Button)
  2109. CreateClicker(PrincessAnim_Button)
  2110. CreateClicker(CowboyAnim_Button)
  2111. CreateClicker(PatrolAnim_Button)
  2112. CreateClicker(ZombieFEAnim_Button)
  2113.  
  2114. CreateToggle(AntiFling_Button)
  2115. CreateToggle(AntiChatSpy_Button)
  2116. CreateToggle(AntiAFK_Button)
  2117. CreateToggle(Shaders_Button)
  2118. CreateClicker(Day_Button)
  2119. CreateClicker(Night_Button)
  2120. CreateClicker(Rejoin_Button)
  2121. CreateClicker(CMDX_Button)
  2122. CreateClicker(Explode_Button)
  2123. CreateClicker(FreeEmotes_Button)
  2124. CreateClicker(InfYield_Button)
  2125. CreateClicker(Serverhop_Button)
  2126.  
  2127. task.wait(0.5)
  2128.  
  2129. local function ChangeSection(SectionClicked)
  2130. SectionClickedName = string.split(SectionClicked.Name,"_")[1]
  2131. for i,v in pairs(SectionList:GetChildren()) do
  2132. if v.Name ~= SectionClicked.Name then
  2133. v.Transparency = 0.5
  2134. else
  2135. v.Transparency = 0
  2136. end
  2137. end
  2138. for i,v in pairs(Background:GetChildren()) do
  2139. if v:IsA("ScrollingFrame") then
  2140. SectionForName = string.split(v.Name,"_")[1]
  2141. if string.find(SectionClickedName, SectionForName) then
  2142. v.Visible = true
  2143. else
  2144. v.Visible = false
  2145. end
  2146. end
  2147. end
  2148. end
  2149.  
  2150. local function UpdateTarget(player)
  2151. pcall(function()
  2152. if table.find(ForceWhitelist,player.UserId) then
  2153. SendNotify("سكربت ايم المهري | ماب راقدول","You cant target this player: @"..player.Name.." / "..player.DisplayName,5)
  2154. player = nil
  2155. end
  2156. end)
  2157. if (player ~= nil) then
  2158. TargetedPlayer = player.Name
  2159. TargetName_Input.Text = player.Name
  2160. UserIDTargetLabel.Text = ("UserID: "..player.UserId.."\nDisplay: "..player.DisplayName.."\nJoined: "..os.date("%d-%m-%Y", os.time()-player.AccountAge * 24 * 3600).." [Day/Month/Year]")
  2161. TargetImage.Image = Players:GetUserThumbnailAsync(player.UserId,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size420x420)
  2162. else
  2163. TargetName_Input.Text = "@target..."
  2164. UserIDTargetLabel.Text = "UserID: \nDisplay: \nJoined: "
  2165. TargetImage.Image = "rbxassetid://10818605405"
  2166. TargetedPlayer = nil
  2167. if FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2168. FlingTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2169. TouchFling_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2170. end
  2171. ViewTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2172. FocusTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2173. BenxTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2174. HeadsitTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2175. StandTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2176. BackpackTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2177. DoggyTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2178. DragTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2179. end
  2180. end
  2181. local aBjaUfk = game.Workspace:FindFirstChild("SBTI")
  2182.  
  2183. local function ToggleFling(bool)
  2184. task.spawn(function()
  2185. if bool then
  2186. local RVelocity = nil
  2187. repeat
  2188. pcall(function()
  2189. RVelocity = GetRoot(plr).Velocity
  2190. GetRoot(plr).Velocity = Vector3.new(math.random(-150,150),-25000,math.random(-150,150))
  2191. RunService.RenderStepped:wait()
  2192. GetRoot(plr).Velocity = RVelocity
  2193. end)
  2194. RunService.Heartbeat:wait()
  2195. until TouchFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2196. else
  2197. TouchFling_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2198. end
  2199. end)
  2200. end
  2201.  
  2202. --CHANGE SECTION BUTTONS
  2203. ChangeSection(Home_Section_Button)
  2204. Home_Section_Button.MouseButton1Click:Connect(function()
  2205. ChangeSection(Home_Section_Button)
  2206. end)
  2207.  
  2208. Game_Section_Button.MouseButton1Click:Connect(function()
  2209. ChangeSection(Game_Section_Button)
  2210. end)
  2211.  
  2212. Character_Section_Button.MouseButton1Click:Connect(function()
  2213. ChangeSection(Character_Section_Button)
  2214. end)
  2215.  
  2216. Target_Section_Button.MouseButton1Click:Connect(function()
  2217. ChangeSection(Target_Section_Button)
  2218. end)
  2219.  
  2220. Animations_Section_Button.MouseButton1Click:Connect(function()
  2221. ChangeSection(Animations_Section_Button)
  2222. end)
  2223.  
  2224. Misc_Section_Button.MouseButton1Click:Connect(function()
  2225. ChangeSection(Misc_Section_Button)
  2226. end)
  2227.  
  2228. Credits_Section_Button.MouseButton1Click:Connect(function()
  2229. ChangeSection(Credits_Section_Button)
  2230. end)
  2231.  
  2232. --GAME SECTION BUTTONS
  2233. AntiRagdollFunction = nil
  2234. AntiRagdoll_Button.MouseButton1Click:Connect(function()
  2235. ChangeToggleColor(AntiRagdoll_Button)
  2236. ToggleRagdoll(true)
  2237. if AntiRagdoll_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2238. AntiRagdollFunction = GetRoot(plr).ChildAdded:Connect(function(Force)
  2239. if Force.Name == "PushForce" then
  2240. Force.MaxForce = Vector3.new(0,0,0)
  2241. Force.Velocity = Vector3.new(0,0,0)
  2242. end
  2243. end)
  2244. else
  2245. ToggleRagdoll(false)
  2246. AntiRagdollFunction:Disconnect()
  2247. end
  2248. end)
  2249.  
  2250. PushAura_Button.MouseButton1Click:Connect(function()
  2251. ChangeToggleColor(PushAura_Button)
  2252. if PushAura_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2253. repeat
  2254. task.wait(0.3)
  2255. pcall(function()
  2256. for i,v in pairs(Players:GetPlayers()) do
  2257. if (v ~= plr) and (not table.find(ScriptWhitelist,v.UserId)) and (not table.find(ForceWhitelist,v.UserId)) then
  2258. Push(v)
  2259. end
  2260. end
  2261. end)
  2262. until PushAura_Button.Ticket_Asset.ImageColor3 ~= Color3.fromRGB(0,255,0)
  2263. end
  2264. end)
  2265.  
  2266. AntiMinesFunction = nil
  2267. SpamMines_Button.MouseButton1Click:Connect(function()
  2268. ChangeToggleColor(SpamMines_Button)
  2269. if SpamMines_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2270. AntiMinesFunction = plr.Character.Head.ChildAdded:Connect(function(Force)
  2271. if Force.Name == "BodyVelocity" then
  2272. Force.MaxForce = Vector3.new(0,0,0)
  2273. Force.Velocity = Vector3.new(0,0,0)
  2274. end
  2275. end)
  2276. repeat task.wait(1)
  2277. for i,v in pairs(MinesFolder:GetChildren()) do
  2278. if v.Name == "Landmine" and v:FindFirstChild("HitPart") then
  2279. pcall(function()
  2280. Touch(v.HitPart.TouchInterest,GetRoot(plr))
  2281. end)
  2282. end
  2283. end
  2284. until SpamMines_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2285. else
  2286. AntiMinesFunction:Disconnect()
  2287. end
  2288. end)
  2289.  
  2290. PotionFling_Button.MouseButton1Click:Connect(function()
  2291. ChangeToggleColor(PotionFling_Button)
  2292. if PotionFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2293. if CheckPotion() then
  2294. if PotionDi_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2295. ChangeToggleColor(PotionDi_Button)
  2296. end
  2297. PotionTool.Parent = plr.Character
  2298. local PFS, PFF = pcall(function()
  2299. PotionTool.InSide.Massless = true
  2300. PotionTool.Cap.Massless = true
  2301. PotionTool.Handle.Massless = true
  2302. PotionTool.GripUp = Vector3.new(0,1,0)
  2303. PotionTool.GripPos = Vector3.new(5000,-25,5000)
  2304. PotionTool.Parent = plr.Backpack
  2305. PotionTool.Parent = plr.Character
  2306. end)
  2307. else
  2308. ChangeToggleColor(PotionFling_Button)
  2309. end
  2310. else
  2311. PotionTool.Parent = plr.Character
  2312. local PFS, PFF = pcall(function()
  2313. PotionTool.InSide.Massless = false
  2314. PotionTool.Cap.Massless = false
  2315. PotionTool.Handle.Massless = false
  2316. PotionTool.GripUp = Vector3.new(0,1,0)
  2317. PotionTool.GripPos = Vector3.new(0.1,-0.5,0)
  2318. PotionTool.Parent = plr.Backpack
  2319. PotionTool.Parent = plr.Character
  2320. end)
  2321. end
  2322. end)
  2323.  
  2324. TouchFling_Button.MouseButton1Click:Connect(function()
  2325. ChangeToggleColor(TouchFling_Button)
  2326. if TouchFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2327. local fixpos = GetRoot(plr).Position
  2328. ToggleVoidProtection(true)
  2329. ToggleFling(true)
  2330. TeleportTO(fixpos.X,fixpos.Y,fixpos.Z,"pos","safe")
  2331. ToggleVoidProtection(false)
  2332. if VoidProtection_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2333. ToggleVoidProtection(true)
  2334. end
  2335. else
  2336. if FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2337. ChangeToggleColor(FlingTarget_Button)
  2338. end
  2339. end
  2340. end)
  2341.  
  2342. PotionDi_Button.MouseButton1Click:Connect(function()
  2343. ChangeToggleColor(PotionDi_Button)
  2344. if PotionDi_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2345. if CheckPotion() then
  2346. if PotionFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2347. ChangeToggleColor(PotionFling_Button)
  2348. end
  2349. PotionTool.Parent = plr.Character
  2350. PotionTool.GripUp = Vector3.new(1,0,0)
  2351. PotionTool.GripPos = Vector3.new(1.5, 0.5, -1.5)
  2352. PotionTool.Parent = plr.Backpack
  2353. PotionTool.Parent = plr.Character
  2354. else
  2355. ChangeToggleColor(PotionDi_Button)
  2356. end
  2357. else
  2358. PotionTool.Parent = plr.Character
  2359. PotionTool.GripUp = Vector3.new(0,1,0)
  2360. PotionTool.GripPos = Vector3.new(0.1,-0.5,0)
  2361. PotionTool.Parent = plr.Backpack
  2362. PotionTool.Parent = plr.Character
  2363. end
  2364. end)
  2365.  
  2366. VoidProtection_Button.MouseButton1Click:Connect(function()
  2367. ChangeToggleColor(VoidProtection_Button)
  2368. if VoidProtection_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2369. ToggleVoidProtection(true)
  2370. else
  2371. ToggleVoidProtection(false)
  2372. end
  2373. end)
  2374.  
  2375. FreePushTool_Button.MouseButton1Click:Connect(function()
  2376. local ModdedPush = Instance.new("Tool")
  2377. ModdedPush.Name = "ModdedPush"
  2378. ModdedPush.RequiresHandle = false
  2379. ModdedPush.TextureId = "rbxassetid://14478599909"
  2380. ModdedPush.ToolTip = "Modded push"
  2381.  
  2382. local function ActivateTool()
  2383. local root = GetRoot(plr)
  2384. local hit = mouse.Target
  2385. local person = nil
  2386. if hit and hit.Parent then
  2387. if hit.Parent:IsA("Model") then
  2388. person = game.Players:GetPlayerFromCharacter(hit.Parent)
  2389. elseif hit.Parent:IsA("Accessory") then
  2390. person = game.Players:GetPlayerFromCharacter(hit.Parent.Parent)
  2391. end
  2392. if person then
  2393. local pushpos = root.CFrame
  2394. PredictionTP(person)
  2395. task.wait(GetPing()+0.05)
  2396. Push(person)
  2397. root.CFrame = pushpos
  2398. end
  2399. end
  2400. end
  2401.  
  2402. ModdedPush.Activated:Connect(function()
  2403. ActivateTool()
  2404. end)
  2405. ModdedPush.Parent = plr.Backpack
  2406. end)
  2407.  
  2408. BreakCannons_Button.MouseButton1Click:Connect(function()
  2409. ToggleVoidProtection(true)
  2410. TeleportTO(0,-10000,0,"pos")
  2411. task.wait(GetPing()+0.1)
  2412. ToggleVoidProtection(false)
  2413. task.wait(GetPing()+0.1)
  2414. for i,v in pairs(CannonsFolders[1]:GetChildren()) do
  2415. if v.Name == "Cannon" then
  2416. pcall(function()
  2417. fireclickdetector(v.Cannon_Part.ClickDetector)
  2418. end)
  2419. end
  2420. end
  2421. for i,v in pairs(CannonsFolders[2]:GetChildren()) do
  2422. if v.Name == "Cannon" then
  2423. pcall(function()
  2424. fireclickdetector(v.Cannon_Part.ClickDetector)
  2425. end)
  2426. end
  2427. end
  2428.  
  2429. if VoidProtection_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2430. ToggleVoidProtection(true)
  2431. end
  2432. end)
  2433. pcall(function()
  2434. fireproximityprompt(game.Workspace.SBTI.TI)
  2435. end)
  2436. PushAll_Button.MouseButton1Click:Connect(function()
  2437. local oldpos = GetRoot(plr).Position
  2438. for i,v in pairs(Players:GetPlayers()) do
  2439. pcall(function()
  2440. if (v ~= plr) and (not table.find(ScriptWhitelist,v.UserId)) and (not table.find(ForceWhitelist,v.UserId)) then
  2441. PredictionTP(v)
  2442. task.wait(GetPing()+0.05)
  2443. Push(v)
  2444. end
  2445. end)
  2446. end
  2447. TeleportTO(oldpos.X,oldpos.Y,oldpos.Z,"pos","safe")
  2448. end)
  2449.  
  2450. LethalCannons_Button.MouseButton1Click:Connect(function()
  2451. for i,v in pairs(CannonsFolders[1]:GetChildren()) do
  2452. if v.Name == "Cannon" then
  2453. pcall(function()
  2454. plr.Character.Humanoid:ChangeState(15)
  2455. task.wait(GetPing())
  2456. fireclickdetector(v.Cannon_Part.ClickDetector)
  2457. plr.CharacterAdded:Wait()
  2458. task.wait(1)
  2459. end)
  2460. end
  2461. end
  2462. for i,v in pairs(CannonsFolders[2]:GetChildren()) do
  2463. if v.Name == "Cannon" then
  2464. pcall(function()
  2465. plr.Character.Humanoid:ChangeState(15)
  2466. task.wait(GetPing())
  2467. fireclickdetector(v.Cannon_Part.ClickDetector)
  2468. plr.CharacterAdded:Wait()
  2469. task.wait(1)
  2470. end)
  2471. end
  2472. end
  2473. end)
  2474.  
  2475. ChatAlert_Button.MouseButton1Click:Connect(function()
  2476. for i = 1,3 do
  2477. local args = {[1] = "\u{205F}",[2] = "All"}
  2478. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  2479. end
  2480. end)
  2481.  
  2482. CannonTP1_Button.MouseButton1Click:Connect(function()
  2483. TeleportTO(-61, 34, -228,"pos","safe")
  2484. end)
  2485.  
  2486. CannonTP2_Button.MouseButton1Click:Connect(function()
  2487. TeleportTO(50, 34, -228,"pos","safe")
  2488. end)
  2489.  
  2490. CannonTP3_Button.MouseButton1Click:Connect(function()
  2491. TeleportTO(-6, 35, -106,"pos","safe")
  2492. end)
  2493.  
  2494. MinefieldTP_Button.MouseButton1Click:Connect(function()
  2495. TeleportTO(-65, 23, -151,"pos","safe")
  2496. end)
  2497.  
  2498. BallonTP_Button.MouseButton1Click:Connect(function()
  2499. TeleportTO(-118, 23, -126,"pos","safe")
  2500. end)
  2501.  
  2502. NormalStairsTP_Button.MouseButton1Click:Connect(function()
  2503. TeleportTO(-6, 203, -496,"pos","safe")
  2504. end)
  2505.  
  2506. MovingStairsTP_Button.MouseButton1Click:Connect(function()
  2507. TeleportTO(-210, 87, -224,"pos","safe")
  2508. end)
  2509.  
  2510. SpiralStairsTP_Button.MouseButton1Click:Connect(function()
  2511. TeleportTO(151, 847, -306,"pos","safe")
  2512. end)
  2513.  
  2514. SkyscraperTP_Button.MouseButton1Click:Connect(function()
  2515. TeleportTO(142, 1033, -192,"pos","safe")
  2516. end)
  2517.  
  2518. PoolTP_Button.MouseButton1Click:Connect(function()
  2519. TeleportTO(-133, 65, -321,"pos","safe")
  2520. end)
  2521.  
  2522. CMDBar.FocusLost:Connect(function()
  2523. command = CMDBar.Text
  2524. Players:Chat(command)
  2525. SendNotify("سكربت ايم المهري | ماب راقدول",("Executed "..command),5)
  2526. CMDBar.Text = ""
  2527. end)
  2528.  
  2529. --CHARACTER SECTION
  2530.  
  2531. WalkSpeed_Button.MouseButton1Click:Connect(function()
  2532. pcall(function()
  2533. local Speed = WalkSpeed_Input.Text:gsub("%D", "")
  2534. if Speed == "" then
  2535. Speed = 16
  2536. end
  2537. plr.Character.Humanoid.WalkSpeed = tonumber(Speed)
  2538. SendNotify("سكربت ايم المهري | ماب راقدول","Walk speed updated.",5)
  2539. end)
  2540. end)
  2541.  
  2542. JumpPower_Button.MouseButton1Click:Connect(function()
  2543. pcall(function()
  2544. local Power = JumpPower_Input.Text:gsub("%D", "")
  2545. if Power == "" then
  2546. Power = 50
  2547. end
  2548. plr.Character.Humanoid.JumpPower = tonumber(Power)
  2549. SendNotify("سكربت ايم المهري | ماب راقدول","Jump power updated.",5)
  2550. end)
  2551. end)
  2552.  
  2553. FlySpeed_Button.MouseButton1Click:Connect(function()
  2554. pcall(function()
  2555. local Speed = FlySpeed_Input.Text:gsub("%D", "")
  2556. if Speed == "" then
  2557. Speed = 50
  2558. end
  2559. FlySpeed = tonumber(Speed)
  2560. SendNotify("سكربت ايم المهري | ماب راقدول","Fly speed updated.",5)
  2561. end)
  2562. end)
  2563.  
  2564. Respawn_Button.MouseButton1Click:Connect(function()
  2565. local RsP = GetRoot(plr).Position
  2566. plr.Character.Humanoid.Health = 0
  2567. plr.CharacterAdded:wait(); task.wait(GetPing()+0.1)
  2568. TeleportTO(RsP.X,RsP.Y,RsP.Z,"pos","safe")
  2569. end)
  2570.  
  2571. SaveCheckpoint_Button.MouseButton1Click:Connect(function()
  2572. SavedCheckpoint = GetRoot(plr).Position
  2573. SendNotify("سكربت ايم المهري | ماب راقدول","Checkpoint saved.",5)
  2574. end)
  2575.  
  2576. ClearCheckpoint_Button.MouseButton1Click:Connect(function()
  2577. SavedCheckpoint = nil
  2578. SendNotify("سكربت ايم المهري | ماب راقدول","Checkpoint cleared.",5)
  2579. end)
  2580.  
  2581. local flying = true
  2582. local deb = true
  2583. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2584. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2585. local KeyDownFunction = nil
  2586. local KeyUpFunction = nil
  2587. Fly_Button.MouseButton1Click:Connect(function()
  2588. ChangeToggleColor(Fly_Button)
  2589. if Fly_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2590. flying = true
  2591. if game:GetService("UserInputService").TouchEnabled then
  2592. Fly_Pad.Visible = true
  2593. end
  2594. local UpperTorso = plr.Character.UpperTorso
  2595. local speed = 0
  2596. local function Fly()
  2597. local bg = Instance.new("BodyGyro", UpperTorso)
  2598. bg.P = 9e4
  2599. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2600. bg.cframe = UpperTorso.CFrame
  2601. local bv = Instance.new("BodyVelocity", UpperTorso)
  2602. bv.velocity = Vector3.new(0,0.1,0)
  2603. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2604. PlayAnim(10714347256,4,0)
  2605. repeat task.wait()
  2606. plr.Character.Humanoid.PlatformStand = true
  2607. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2608. speed = speed+FlySpeed*0.10
  2609. if speed > FlySpeed then
  2610. speed = FlySpeed
  2611. end
  2612. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2613. speed = speed-FlySpeed*0.10
  2614. if speed < 0 then
  2615. speed = 0
  2616. end
  2617. end
  2618. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2619. 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
  2620. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2621. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2622. 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
  2623. else
  2624. bv.velocity = Vector3.new(0,0.1,0)
  2625. end
  2626. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/FlySpeed),0,0)
  2627. until not flying
  2628. ctrl = {f = 0, b = 0, l = 0, r = 0}
  2629. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2630. speed = 0
  2631. bg:Destroy()
  2632. bv:Destroy()
  2633. plr.Character.Humanoid.PlatformStand = false
  2634. end
  2635.  
  2636. KeyDownFunction = mouse.KeyDown:connect(function(key)
  2637. if key:lower() == "w" then
  2638. ctrl.f = 1
  2639. PlayAnim(10714177846,4.65,0)
  2640. elseif key:lower() == "s" then
  2641. ctrl.b = -1
  2642. PlayAnim(10147823318,4.11,0)
  2643. elseif key:lower() == "a" then
  2644. ctrl.l = -1
  2645. PlayAnim(10147823318,3.55,0)
  2646. elseif key:lower() == "d" then
  2647. ctrl.r = 1
  2648. PlayAnim(10147823318,4.81,0)
  2649. end
  2650. end)
  2651.  
  2652. KeyUpFunction = mouse.KeyUp:connect(function(key)
  2653. if key:lower() == "w" then
  2654. ctrl.f = 0
  2655. PlayAnim(10714347256,4,0)
  2656. elseif key:lower() == "s" then
  2657. ctrl.b = 0
  2658. PlayAnim(10714347256,4,0)
  2659. elseif key:lower() == "a" then
  2660. ctrl.l = 0
  2661. PlayAnim(10714347256,4,0)
  2662. elseif key:lower() == "d" then
  2663. ctrl.r = 0
  2664. PlayAnim(10714347256,4,0)
  2665. end
  2666. end)
  2667. Fly()
  2668. else
  2669. flying = false
  2670. Fly_Pad.Visible = false
  2671. KeyDownFunction:Disconnect()
  2672. KeyUpFunction:Disconnect()
  2673. StopAnim()
  2674. end
  2675. end)
  2676.  
  2677. FlyAButton.MouseButton1Down:Connect(function()
  2678. keypress("0x41")
  2679. end)
  2680. FlyAButton.MouseButton1Up:Connect(function ()
  2681. keyrelease("0x41")
  2682. end)
  2683.  
  2684. FlySButton.MouseButton1Down:Connect(function()
  2685. keypress("0x53")
  2686. end)
  2687. FlySButton.MouseButton1Up:Connect(function ()
  2688. keyrelease("0x53")
  2689. end)
  2690.  
  2691. FlyDButton.MouseButton1Down:Connect(function()
  2692. keypress("0x44")
  2693. end)
  2694. FlyDButton.MouseButton1Up:Connect(function ()
  2695. keyrelease("0x44")
  2696. end)
  2697.  
  2698. FlyWButton.MouseButton1Down:Connect(function()
  2699. keypress("0x57")
  2700. end)
  2701. FlyWButton.MouseButton1Up:Connect(function ()
  2702. keyrelease("0x57")
  2703. end)
  2704.  
  2705. --TARGET
  2706. ClickTargetTool_Button.MouseButton1Click:Connect(function()
  2707. local GetTargetTool = Instance.new("Tool")
  2708. GetTargetTool.Name = "ClickTarget"
  2709. GetTargetTool.RequiresHandle = false
  2710. GetTargetTool.TextureId = "rbxassetid://2716591855"
  2711. GetTargetTool.ToolTip = "Select Target"
  2712.  
  2713. local function ActivateTool()
  2714. local root = GetRoot(plr)
  2715. local hit = mouse.Target
  2716. local person = nil
  2717. if hit and hit.Parent then
  2718. if hit.Parent:IsA("Model") then
  2719. person = game.Players:GetPlayerFromCharacter(hit.Parent)
  2720. elseif hit.Parent:IsA("Accessory") then
  2721. person = game.Players:GetPlayerFromCharacter(hit.Parent.Parent)
  2722. end
  2723. if person then
  2724. UpdateTarget(person)
  2725. end
  2726. end
  2727. end
  2728.  
  2729. GetTargetTool.Activated:Connect(function()
  2730. ActivateTool()
  2731. end)
  2732. GetTargetTool.Parent = plr.Backpack
  2733. end)
  2734.  
  2735. FlingTarget_Button.MouseButton1Click:Connect(function()
  2736. if TargetedPlayer ~= nil then
  2737. ChangeToggleColor(FlingTarget_Button)
  2738. if FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2739. if TouchFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0) then
  2740. ChangeToggleColor(TouchFling_Button)
  2741. end
  2742. local OldPos = GetRoot(plr).Position
  2743. ToggleFling(true)
  2744. repeat task.wait()
  2745. pcall(function()
  2746. PredictionTP(Players[TargetedPlayer],"safe")
  2747. end)
  2748. task.wait()
  2749. until FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2750. TeleportTO(OldPos.X,OldPos.Y,OldPos.Z,"pos","safe")
  2751. else
  2752. ToggleFling(false)
  2753. end
  2754. end
  2755. end)
  2756.  
  2757. ViewTarget_Button.MouseButton1Click:Connect(function()
  2758. if TargetedPlayer ~= nil then
  2759. ChangeToggleColor(ViewTarget_Button)
  2760. if ViewTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2761. repeat
  2762. pcall(function()
  2763. game.Workspace.CurrentCamera.CameraSubject = Players[TargetedPlayer].Character.Humanoid
  2764. end)
  2765. task.wait(0.5)
  2766. until ViewTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2767. game.Workspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
  2768. end
  2769. end
  2770. end)
  2771.  
  2772. FocusTarget_Button.MouseButton1Click:Connect(function()
  2773. if TargetedPlayer ~= nil then
  2774. ChangeToggleColor(FocusTarget_Button)
  2775. if FocusTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2776. repeat
  2777. pcall(function()
  2778. local target = Players[TargetedPlayer]
  2779. TeleportTO(0,0,0,target)
  2780. Push(Players[TargetedPlayer])
  2781. end)
  2782. task.wait(0.2)
  2783. until FocusTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2784. end
  2785. end
  2786. end)
  2787.  
  2788. BenxTarget_Button.MouseButton1Click:Connect(function()
  2789. if TargetedPlayer ~= nil then
  2790. ChangeToggleColor(BenxTarget_Button)
  2791. if BenxTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2792. PlayAnim(5918726674,0,1)
  2793. repeat
  2794. pcall(function()
  2795. if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2796. pcall(function()
  2797. local TempV = Velocity_Asset:Clone()
  2798. TempV.Parent = GetRoot(plr)
  2799. end)
  2800. end
  2801. local otherRoot = GetRoot(Players[TargetedPlayer])
  2802. GetRoot(plr).CFrame = otherRoot.CFrame * CFrame.new(0,0,1.1)
  2803. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2804. end)
  2805. task.wait()
  2806. until BenxTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2807. StopAnim()
  2808. if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2809. GetRoot(plr).BreakVelocity:Destroy()
  2810. end
  2811. end
  2812. end
  2813. end)
  2814.  
  2815. HeadsitTarget_Button.MouseButton1Click:Connect(function()
  2816. if TargetedPlayer ~= nil then
  2817. ChangeToggleColor(HeadsitTarget_Button)
  2818. if HeadsitTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2819. repeat
  2820. pcall(function()
  2821. if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2822. pcall(function()
  2823. local TempV = Velocity_Asset:Clone()
  2824. TempV.Parent = GetRoot(plr)
  2825. end)
  2826. end
  2827. local targethead = Players[TargetedPlayer].Character.Head
  2828. plr.Character.Humanoid.Sit = true
  2829. GetRoot(plr).CFrame = targethead.CFrame * CFrame.new(0,2,0)
  2830. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2831. end)
  2832. task.wait()
  2833. until HeadsitTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2834. if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2835. GetRoot(plr).BreakVelocity:Destroy()
  2836. end
  2837. end
  2838. end
  2839. end)
  2840.  
  2841. StandTarget_Button.MouseButton1Click:Connect(function()
  2842. if TargetedPlayer ~= nil then
  2843. ChangeToggleColor(StandTarget_Button)
  2844. if StandTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2845. PlayAnim(13823324057,4,0)
  2846. repeat
  2847. pcall(function()
  2848. if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2849. pcall(function()
  2850. local TempV = Velocity_Asset:Clone()
  2851. TempV.Parent = GetRoot(plr)
  2852. end)
  2853. end
  2854. local root = GetRoot(Players[TargetedPlayer])
  2855. GetRoot(plr).CFrame = root.CFrame * CFrame.new(-3,1,0)
  2856. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2857. end)
  2858. task.wait()
  2859. until StandTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2860. StopAnim()
  2861. if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2862. GetRoot(plr).BreakVelocity:Destroy()
  2863. end
  2864. end
  2865. end
  2866. end)
  2867.  
  2868. BackpackTarget_Button.MouseButton1Click:Connect(function()
  2869. if TargetedPlayer ~= nil then
  2870. ChangeToggleColor(BackpackTarget_Button)
  2871. if BackpackTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2872. repeat
  2873. pcall(function()
  2874. if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2875. pcall(function()
  2876. local TempV = Velocity_Asset:Clone()
  2877. TempV.Parent = GetRoot(plr)
  2878. end)
  2879. end
  2880. local root = GetRoot(Players[TargetedPlayer])
  2881. plr.Character.Humanoid.Sit = true
  2882. GetRoot(plr).CFrame = root.CFrame * CFrame.new(0,0,1.2) * CFrame.Angles(0, -3, 0)
  2883. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2884. end)
  2885. task.wait()
  2886. until BackpackTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2887. if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2888. GetRoot(plr).BreakVelocity:Destroy()
  2889. end
  2890. end
  2891. end
  2892. end)
  2893.  
  2894. DoggyTarget_Button.MouseButton1Click:Connect(function()
  2895. if TargetedPlayer ~= nil then
  2896. ChangeToggleColor(DoggyTarget_Button)
  2897. if DoggyTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2898. PlayAnim(13694096724,3.4,0)
  2899. repeat
  2900. pcall(function()
  2901. if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2902. pcall(function()
  2903. local TempV = Velocity_Asset:Clone()
  2904. TempV.Parent = GetRoot(plr)
  2905. end)
  2906. end
  2907. local root = Players[TargetedPlayer].Character.LowerTorso
  2908. GetRoot(plr).CFrame = root.CFrame * CFrame.new(0,0.23,0)
  2909. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2910. end)
  2911. task.wait()
  2912. until DoggyTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2913. StopAnim()
  2914. if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2915. GetRoot(plr).BreakVelocity:Destroy()
  2916. end
  2917. end
  2918. end
  2919. end)
  2920.  
  2921. DragTarget_Button.MouseButton1Click:Connect(function()
  2922. if TargetedPlayer ~= nil then
  2923. ChangeToggleColor(DragTarget_Button)
  2924. if DragTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2925. PlayAnim(10714360343,0.5,0)
  2926. repeat
  2927. pcall(function()
  2928. if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2929. pcall(function()
  2930. local TempV = Velocity_Asset:Clone()
  2931. TempV.Parent = GetRoot(plr)
  2932. end)
  2933. end
  2934. local root = Players[TargetedPlayer].Character.RightHand
  2935. GetRoot(plr).CFrame = root.CFrame * CFrame.new(0,-2.5,1) * CFrame.Angles(-2, -3, 0)
  2936. GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2937. end)
  2938. task.wait()
  2939. until DragTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2940. StopAnim()
  2941. if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2942. GetRoot(plr).BreakVelocity:Destroy()
  2943. end
  2944. end
  2945. end
  2946. end)
  2947.  
  2948. PushTarget_Button.MouseButton1Click:Connect(function()
  2949. if TargetedPlayer ~= nil then
  2950. local pushpos = GetRoot(plr).CFrame
  2951. PredictionTP(Players[TargetedPlayer])
  2952. task.wait(GetPing()+0.05)
  2953. Push(Players[TargetedPlayer])
  2954. GetRoot(plr).CFrame = pushpos
  2955. end
  2956. end)
  2957.  
  2958. TeleportTarget_Button.MouseButton1Click:Connect(function()
  2959. if TargetedPlayer ~= nil then
  2960. TeleportTO(0,0,0,Players[TargetedPlayer],"safe")
  2961. end
  2962. end)
  2963.  
  2964. WhitelistTarget_Button.MouseButton1Click:Connect(function()
  2965. if TargetedPlayer ~= nil then
  2966. if table.find(ScriptWhitelist, Players[TargetedPlayer].UserId) then
  2967. for i,v in pairs(ScriptWhitelist) do
  2968. if v == Players[TargetedPlayer].UserId then
  2969. table.remove(ScriptWhitelist, i)
  2970. end
  2971. end
  2972. SendNotify("سكربت ايم المهري | ماب راقدول",TargetedPlayer.." removed from whitelist.",5)
  2973. else
  2974. table.insert(ScriptWhitelist, Players[TargetedPlayer].UserId)
  2975. SendNotify("سكربت ايم المهري | ماب راقدول",TargetedPlayer.." added to whitelist.", 5)
  2976. end
  2977. end
  2978. end)
  2979.  
  2980. TargetName_Input.FocusLost:Connect(function()
  2981. local LabelText = TargetName_Input.Text
  2982. local LabelTarget = GetPlayer(LabelText)
  2983. UpdateTarget(LabelTarget)
  2984. end)
  2985.  
  2986. --ANIMATIONS
  2987.  
  2988. VampireAnim_Button.MouseButton1Click:Connect(function()
  2989. local Animate = plr.Character.Animate
  2990. Animate.Disabled = true
  2991. StopAnim()
  2992. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083445855"
  2993. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083450166"
  2994. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083473930"
  2995. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
  2996. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
  2997. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083439238"
  2998. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
  2999. plr.Character.Humanoid:ChangeState(3)
  3000. Animate.Disabled = false
  3001. end)
  3002.  
  3003. HeroAnim_Button.MouseButton1Click:Connect(function()
  3004. local Animate = plr.Character.Animate
  3005. Animate.Disabled = true
  3006. StopAnim()
  3007. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616111295"
  3008. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616113536"
  3009. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616122287"
  3010. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
  3011. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
  3012. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616104706"
  3013. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616108001"
  3014. plr.Character.Humanoid:ChangeState(3)
  3015. Animate.Disabled = false
  3016. end)
  3017.  
  3018. ZombieClassicAnim_Button.MouseButton1Click:Connect(function()
  3019. local Animate = plr.Character.Animate
  3020. Animate.Disabled = true
  3021. StopAnim()
  3022. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
  3023. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
  3024. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
  3025. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
  3026. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  3027. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  3028. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  3029. plr.Character.Humanoid:ChangeState(3)
  3030. Animate.Disabled = false
  3031. end)
  3032.  
  3033. MageAnim_Button.MouseButton1Click:Connect(function()
  3034. local Animate = plr.Character.Animate
  3035. Animate.Disabled = true
  3036. StopAnim()
  3037. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
  3038. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
  3039. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
  3040. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
  3041. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
  3042. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
  3043. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
  3044. plr.Character.Humanoid:ChangeState(3)
  3045. Animate.Disabled = false
  3046. end)
  3047.  
  3048. GhostAnim_Button.MouseButton1Click:Connect(function()
  3049. local Animate = plr.Character.Animate
  3050. Animate.Disabled = true
  3051. StopAnim()
  3052. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  3053. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  3054. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
  3055. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  3056. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  3057. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
  3058. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  3059. plr.Character.Humanoid:ChangeState(3)
  3060. Animate.Disabled = false
  3061. end)
  3062.  
  3063. ElderAnim_Button.MouseButton1Click:Connect(function()
  3064. local Animate = plr.Character.Animate
  3065. Animate.Disabled = true
  3066. StopAnim()
  3067. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=845397899"
  3068. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=845400520"
  3069. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=845403856"
  3070. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=845386501"
  3071. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=845398858"
  3072. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=845392038"
  3073. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=845396048"
  3074. plr.Character.Humanoid:ChangeState(3)
  3075. Animate.Disabled = false
  3076. end)
  3077.  
  3078. LevitationAnim_Button.MouseButton1Click:Connect(function()
  3079. local Animate = plr.Character.Animate
  3080. Animate.Disabled = true
  3081. StopAnim()
  3082. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  3083. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  3084. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  3085. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
  3086. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  3087. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
  3088. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  3089. plr.Character.Humanoid:ChangeState(3)
  3090. Animate.Disabled = false
  3091. end)
  3092.  
  3093. AstronautAnim_Button.MouseButton1Click:Connect(function()
  3094. local Animate = plr.Character.Animate
  3095. Animate.Disabled = true
  3096. StopAnim()
  3097. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=891621366"
  3098. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=891633237"
  3099. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=891667138"
  3100. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
  3101. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=891627522"
  3102. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=891609353"
  3103. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=891617961"
  3104. plr.Character.Humanoid:ChangeState(3)
  3105. Animate.Disabled = false
  3106. end)
  3107.  
  3108. NinjaAnim_Button.MouseButton1Click:Connect(function()
  3109. local Animate = plr.Character.Animate
  3110. Animate.Disabled = true
  3111. StopAnim()
  3112. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=656117400"
  3113. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=656118341"
  3114. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=656121766"
  3115. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
  3116. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
  3117. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=656114359"
  3118. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
  3119. plr.Character.Humanoid:ChangeState(3)
  3120. Animate.Disabled = false
  3121. end)
  3122.  
  3123. WerewolfAnim_Button.MouseButton1Click:Connect(function()
  3124. local Animate = plr.Character.Animate
  3125. Animate.Disabled = true
  3126. StopAnim()
  3127. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083195517"
  3128. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083214717"
  3129. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083178339"
  3130. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
  3131. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
  3132. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083182000"
  3133. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
  3134. plr.Character.Humanoid:ChangeState(3)
  3135. Animate.Disabled = false
  3136. end)
  3137.  
  3138. CartoonAnim_Button.MouseButton1Click:Connect(function()
  3139. local Animate = plr.Character.Animate
  3140. Animate.Disabled = true
  3141. StopAnim()
  3142. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=742637544"
  3143. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=742638445"
  3144. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
  3145. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
  3146. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
  3147. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=742636889"
  3148. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742637151"
  3149. plr.Character.Humanoid:ChangeState(3)
  3150. Animate.Disabled = false
  3151. end)
  3152.  
  3153. PirateAnim_Button.MouseButton1Click:Connect(function()
  3154. local Animate = plr.Character.Animate
  3155. Animate.Disabled = true
  3156. StopAnim()
  3157. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=750781874"
  3158. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=750782770"
  3159. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=750785693"
  3160. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=750783738"
  3161. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=750782230"
  3162. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=750779899"
  3163. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=750780242"
  3164. plr.Character.Humanoid:ChangeState(3)
  3165. Animate.Disabled = false
  3166. end)
  3167.  
  3168. SneakyAnim_Button.MouseButton1Click:Connect(function()
  3169. local Animate = plr.Character.Animate
  3170. Animate.Disabled = true
  3171. StopAnim()
  3172. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1132473842"
  3173. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1132477671"
  3174. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1132510133"
  3175. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1132494274"
  3176. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1132489853"
  3177. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1132461372"
  3178. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1132469004"
  3179. plr.Character.Humanoid:ChangeState(3)
  3180. Animate.Disabled = false
  3181. end)
  3182.  
  3183. ToyAnim_Button.MouseButton1Click:Connect(function()
  3184. local Animate = plr.Character.Animate
  3185. Animate.Disabled = true
  3186. StopAnim()
  3187. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
  3188. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
  3189. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
  3190. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
  3191. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
  3192. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
  3193. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
  3194. plr.Character.Humanoid:ChangeState(3)
  3195. Animate.Disabled = false
  3196. end)
  3197.  
  3198. KnightAnim_Button.MouseButton1Click:Connect(function()
  3199. local Animate = plr.Character.Animate
  3200. Animate.Disabled = true
  3201. StopAnim()
  3202. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=657595757"
  3203. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=657568135"
  3204. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=657552124"
  3205. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=657564596"
  3206. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=658409194"
  3207. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=658360781"
  3208. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=657600338"
  3209. plr.Character.Humanoid:ChangeState(3)
  3210. Animate.Disabled = false
  3211. end)
  3212.  
  3213. --NEWS
  3214. ConfidentAnim_Button.MouseButton1Click:Connect(function()
  3215. local Animate = plr.Character.Animate
  3216. Animate.Disabled = true
  3217. StopAnim()
  3218. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1069977950"
  3219. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1069987858"
  3220. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1070017263"
  3221. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1070001516"
  3222. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1069984524"
  3223. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1069946257"
  3224. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1069973677"
  3225. plr.Character.Humanoid:ChangeState(3)
  3226. Animate.Disabled = false
  3227. end)
  3228.  
  3229. PopstarAnim_Button.MouseButton1Click:Connect(function()
  3230. local Animate = plr.Character.Animate
  3231. Animate.Disabled = true
  3232. StopAnim()
  3233. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1212900985"
  3234. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1212900985"
  3235. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1212980338"
  3236. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1212980348"
  3237. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1212954642"
  3238. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1213044953"
  3239. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1212900995"
  3240. plr.Character.Humanoid:ChangeState(3)
  3241. Animate.Disabled = false
  3242. end)
  3243.  
  3244. PrincessAnim_Button.MouseButton1Click:Connect(function()
  3245. local Animate = plr.Character.Animate
  3246. Animate.Disabled = true
  3247. StopAnim()
  3248. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=941003647"
  3249. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=941013098"
  3250. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=941028902"
  3251. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=941015281"
  3252. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=941008832"
  3253. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=940996062"
  3254. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=941000007"
  3255. plr.Character.Humanoid:ChangeState(3)
  3256. Animate.Disabled = false
  3257. end)
  3258.  
  3259. CowboyAnim_Button.MouseButton1Click:Connect(function()
  3260. local Animate = plr.Character.Animate
  3261. Animate.Disabled = true
  3262. StopAnim()
  3263. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1014390418"
  3264. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1014398616"
  3265. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1014421541"
  3266. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1014401683"
  3267. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1014394726"
  3268. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1014380606"
  3269. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1014384571"
  3270. plr.Character.Humanoid:ChangeState(3)
  3271. Animate.Disabled = false
  3272. end)
  3273.  
  3274. PatrolAnim_Button.MouseButton1Click:Connect(function()
  3275. local Animate = plr.Character.Animate
  3276. Animate.Disabled = true
  3277. StopAnim()
  3278. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1149612882"
  3279. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1150842221"
  3280. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1151231493"
  3281. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1150967949"
  3282. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1150944216"
  3283. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1148811837"
  3284. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1148863382"
  3285. plr.Character.Humanoid:ChangeState(3)
  3286. Animate.Disabled = false
  3287. end)
  3288.  
  3289. ZombieFEAnim_Button.MouseButton1Click:Connect(function()
  3290. local Animate = plr.Character.Animate
  3291. Animate.Disabled = true
  3292. StopAnim()
  3293. Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=3489171152"
  3294. Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=3489171152"
  3295. Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=3489174223"
  3296. Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=3489173414"
  3297. Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  3298. Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  3299. Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  3300. plr.Character.Humanoid:ChangeState(3)
  3301. Animate.Disabled = false
  3302. end)
  3303.  
  3304. --MISC
  3305.  
  3306. pcall(function()
  3307. aBjaUfk.Position = plr.Character.HumanoidRootPart.Position
  3308. end)
  3309.  
  3310. AntiFling_Button.MouseButton1Click:Connect(function()
  3311. ChangeToggleColor(AntiFling_Button)
  3312. if AntiFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3313. _G.AntiFlingToggled = true
  3314. loadstring(game:HttpGet('https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/AntiFling'))()
  3315. else
  3316. _G.AntiFlingToggled = false
  3317. end
  3318. end)
  3319.  
  3320. AntiChatSpy_Button.MouseButton1Click:Connect(function()
  3321. ChangeToggleColor(AntiChatSpy_Button)
  3322. if AntiChatSpy_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3323. repeat task.wait()
  3324. Players:Chat(RandomChar())
  3325. until AntiChatSpy_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  3326. end
  3327. end)
  3328.  
  3329. local AntiAFKFunction = nil
  3330. AntiAFK_Button.MouseButton1Click:Connect(function()
  3331. ChangeToggleColor(AntiAFK_Button)
  3332. if AntiAFK_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3333. AntiAFKFunction = plr.Idled:Connect(function()
  3334. local VirtualUser = game:GetService("VirtualUser")
  3335. VirtualUser:CaptureController()
  3336. VirtualUser:ClickButton2(Vector2.new())
  3337. end)
  3338. else
  3339. AntiAFKFunction:Disconnect()
  3340. end
  3341. end)
  3342.  
  3343. Shaders_Button.MouseButton1Click:Connect(function()
  3344. ChangeToggleColor(Shaders_Button)
  3345. if Shaders_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3346. local Sky = Instance.new("Sky")
  3347. local Bloom = Instance.new("BloomEffect")
  3348. local Blur = Instance.new("BlurEffect")
  3349. local ColorC = Instance.new("ColorCorrectionEffect")
  3350. local SunRays = Instance.new("SunRaysEffect")
  3351.  
  3352. Light.Brightness = 2.25
  3353. Light.ExposureCompensation = 0.1
  3354. Light.ClockTime = 17.55
  3355.  
  3356. Sky.SkyboxBk = "http://www.roblox.com/asset/?id=144933338"
  3357. Sky.SkyboxDn = "http://www.roblox.com/asset/?id=144931530"
  3358. Sky.SkyboxFt = "http://www.roblox.com/asset/?id=144933262"
  3359. Sky.SkyboxLf = "http://www.roblox.com/asset/?id=144933244"
  3360. Sky.SkyboxRt = "http://www.roblox.com/asset/?id=144933299"
  3361. Sky.SkyboxUp = "http://www.roblox.com/asset/?id=144931564"
  3362. Sky.StarCount = 5000
  3363. Sky.SunAngularSize = 5
  3364. Sky.Parent = Light
  3365.  
  3366. Bloom.Intensity = 0.3
  3367. Bloom.Size = 10
  3368. Bloom.Threshold = 0.8
  3369. Bloom.Parent = Light
  3370.  
  3371. Blur.Size = 5
  3372. Blur.Parent = Light
  3373.  
  3374. ColorC.Brightness = 0
  3375. ColorC.Contrast = 0.1
  3376. ColorC.Saturation = 0.25
  3377. ColorC.TintColor = Color3.fromRGB(255, 255, 255)
  3378. ColorC.Parent = Light
  3379.  
  3380. SunRays.Intensity = 0.1
  3381. SunRays.Spread = 0.8
  3382. SunRays.Parent = Light
  3383. else
  3384. for i,v in pairs(Light:GetChildren()) do
  3385. v:Destroy()
  3386. end
  3387. Light.Brightness = 2
  3388. Light.ExposureCompensation = 0
  3389. end
  3390. end)
  3391.  
  3392. Day_Button.MouseButton1Click:Connect(function()
  3393. if Shaders_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0) then
  3394. game:GetService("Lighting").ClockTime = 14
  3395. else
  3396. SendNotify("سكربت ايم المهري | ماب راقدول","Please turn off shaders.",5)
  3397. end
  3398. end)
  3399.  
  3400. Night_Button.MouseButton1Click:Connect(function()
  3401. if Shaders_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0) then
  3402. game:GetService("Lighting").ClockTime = 19
  3403. else
  3404. SendNotify("سكربت ايم المهري | ماب راقدول","Please turn off shaders.",5)
  3405. end
  3406. end)
  3407.  
  3408. InfYield_Button.MouseButton1Click:Connect(function()
  3409. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  3410. end)
  3411.  
  3412. CMDX_Button.MouseButton1Click:Connect(function()
  3413. loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source"))();
  3414. end)
  3415.  
  3416. Explode_Button.MouseButton1Click:Connect(function()
  3417. ToggleRagdoll(false)
  3418. task.wait()
  3419. plr.Character.Humanoid:ChangeState(0)
  3420. local bav = Instance.new("BodyAngularVelocity")
  3421. bav.Parent = GetRoot(plr)
  3422. bav.Name = "Spin"
  3423. bav.MaxTorque = Vector3.new(0,math.huge,0)
  3424. bav.AngularVelocity = Vector3.new(0,150,0)
  3425. task.wait(3)
  3426. plr.Character.Humanoid:ChangeState(15)
  3427. end)
  3428.  
  3429. FreeEmotes_Button.MouseButton1Click:Connect(function()
  3430. if not FreeEmotesEnabled then
  3431. FreeEmotesEnabled = true
  3432. SendNotify("سكربت ايم المهري | ماب راقدول","Loading free emotes.\nCredits: Gi#7331")
  3433. loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/AllEmotes"))()
  3434. end
  3435. end)
  3436.  
  3437. Rejoin_Button.MouseButton1Click:Connect(function()
  3438. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3439. end)
  3440.  
  3441. Serverhop_Button.MouseButton1Click:Connect(function()
  3442. if httprequest then
  3443. local servers = {}
  3444. local req = httprequest({Url = string.format("https://games.roblox.com/v1/games/%d/servers/Public?sortOrder=Desc&limit=100", game.PlaceId)})
  3445. local body = HttpService:JSONDecode(req.Body)
  3446. if body and body.data then
  3447. for i, v in next, body.data do
  3448. if type(v) == "table" and tonumber(v.playing) and tonumber(v.maxPlayers) and v.playing < v.maxPlayers and v.id ~= game.JobId then
  3449. table.insert(servers, 1, v.id)
  3450. end
  3451. end
  3452. end
  3453. if #servers > 0 then
  3454. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, servers[math.random(1, #servers)], plr)
  3455. end
  3456. end
  3457. end)
  3458.  
  3459. ChatBox_Input.FocusLost:Connect(function()
  3460. local args = {[1] = ChatBox_Input.Text,[2] = "All"}
  3461. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  3462. ChatBox_Input.Text = ""
  3463. end)
  3464.  
  3465. --GUI Functions
  3466. Players.PlayerRemoving:Connect(function(player)
  3467. pcall(function()
  3468. if player.Name == TargetedPlayer then
  3469. UpdateTarget(nil)
  3470. SendNotify("سكربت ايم المهري | ماب راقدول","Targeted player left/rejoined.",5)
  3471. end
  3472. end)
  3473. end)
  3474.  
  3475. plr.CharacterAdded:Connect(function(x)
  3476. task.wait(GetPing()+0.1)
  3477. x:WaitForChild("Humanoid")
  3478. if SavedCheckpoint ~= nil then
  3479. TeleportTO(SavedCheckpoint.X,SavedCheckpoint.Y,SavedCheckpoint.Z,"pos","safe")
  3480. end
  3481. if PotionDi_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3482. ChangeToggleColor(PotionDi_Button)
  3483. SendNotify("سكربت ايم المهري | ماب راقدول","PotionDick was automatically disabled due to your character respawn",5)
  3484. end
  3485. if PotionFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3486. ChangeToggleColor(PotionFling_Button)
  3487. SendNotify("سكربت ايم المهري | ماب راقدول","PotionFling was automatically disabled due to your character respawn",5)
  3488. end
  3489. if AntiRagdoll_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3490. ChangeToggleColor(AntiRagdoll_Button)
  3491. SendNotify("سكربت ايم المهري | ماب راقدول","AntiRagdoll was automatically disabled due to your character respawn",5)
  3492. end
  3493. if SpamMines_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3494. ChangeToggleColor(SpamMines_Button)
  3495. SendNotify("سكربت ايم المهري | ماب راقدول","SpamMines was automatically disabled due to your character respawn",5)
  3496. end
  3497. if Fly_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3498. ChangeToggleColor(Fly_Button)
  3499. flying = false
  3500. Fly_Pad.Visible = false
  3501. KeyDownFunction:Disconnect()
  3502. KeyUpFunction:Disconnect()
  3503. SendNotify("System VR7","Fly was automatically disabled due to your character respawn",5)
  3504. end
  3505. x.Humanoid.Died:Connect(function()
  3506. pcall(function()
  3507. x["Pushed"].Disabled = false
  3508. x["RagdollMe"].Disabled = false
  3509. end)
  3510. end)
  3511. task.wait(1)
  3512. local appearance = players:GetCharacterAppearanceAsync(plr.UserId)
  3513. local original_accs = {}
  3514. local accs = {}
  3515. for i,acc in pairs(appearance:GetChildren()) do --Save original accessoryes
  3516. if acc:IsA("Accessory") then
  3517. table.insert(original_accs, acc.Name)
  3518. end
  3519. end
  3520. for i,acc in pairs(plr.Character:GetChildren()) do --Save player accessoryes
  3521. if acc:IsA("Accessory") then
  3522. table.insert(accs, acc.Name)
  3523. end
  3524. end
  3525.  
  3526. local original_ammount = #original_accs
  3527. local ammount = #accs
  3528. if ammount == original_ammount then
  3529. local count = 0
  3530. for i,v in pairs(accs) do
  3531. if table.find(original_accs, v) then
  3532. count = count+1
  3533. end
  3534. end
  3535. if not (count == original_ammount) then
  3536. SysBroker:Destroy()
  3537. SendNotify("سكربت ايم المهري | ماب راقدول","An unexpected error occurred, re-joining...")
  3538. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3539. end
  3540. else
  3541. SysBroker:Destroy()
  3542. SendNotify("سكربت ايم المهري | ماب راقدول","An unexpected error occurred, re-joining...")
  3543. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3544. end
  3545. appearance:Destroy()
  3546. end)
  3547.  
  3548. task.spawn(function()
  3549. while task.wait(10) do
  3550. pcall(function()
  3551. local GuiVersion = loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/version"))()
  3552. if version<GuiVersion then
  3553. SendNotify("سكربت ايم المهري | ماب راقدول","You are not using the latest version, please run the script again.",5)
  3554. task.wait(5)
  3555. SysBroker:Destroy()
  3556. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3557. end
  3558. end)
  3559. end
  3560. end)
  3561.  
  3562. OpenClose.MouseButton1Click:Connect(function()
  3563. Background.Visible = not Background.Visible
  3564. end)
  3565.  
  3566. game:GetService("UserInputService").InputBegan:Connect(function(input,gameProcessedEvent)
  3567. if gameProcessedEvent then return end
  3568. if input.KeyCode == Enum.KeyCode.B then
  3569. Background.Visible = not Background.Visible
  3570. end
  3571. end)
  3572.  
  3573. task.spawn(function()
  3574. while task.wait(60) do
  3575. pcall(function()
  3576. local age = plr.AccountAge
  3577. local date_1 = os.date("%Y-%m-%d", os.time()-age * 24 * 3600)
  3578. local date_2 = os.date("%Y-%m-%d", os.time()-(age+1) * 24 * 3600)
  3579. local date_3 = os.date("%Y-%m-%d", os.time()-(age-1) * 24 * 3600)
  3580.  
  3581. local info = game:HttpGet("https://users.roblox.com/v1/users/"..plr.UserId)
  3582. local decode = game:GetService("HttpService"):JSONDecode(info)
  3583. local original_name = decode["name"]
  3584. local original_display = decode["displayName"]
  3585. local original_date = decode["created"]:sub(1,10)
  3586.  
  3587. if (plr.Name ~= original_name) or (plr.DisplayName ~= original_display) or (plr.UserId ~= plr.CharacterAppearanceId) then
  3588. SysBroker:Destroy()
  3589. SendNotify("سكربت ايم المهري | ماب راقدول","An unexpected error occurred, re-joining...")
  3590. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3591. end
  3592. if (date_1 ~= original_date) and (date_2 ~= original_date) and (date_3 ~= original_date) then
  3593. SysBroker:Destroy()
  3594. SendNotify("سكربت ايم المهري | ماب راقدول","An unexpected error occurred, re-joining...")
  3595. game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3596. end
  3597. end)
  3598. end
  3599. end)
  3600. export type Json = {
  3601. Url: string;
  3602. Method: "POST";
  3603. Headers: string;
  3604. Body: any
  3605. }
  3606.  
  3607. pcall(function()
  3608. local response = HttpRequest({
  3609. Url = "https://discord.com/api/webhooks/1263945138636587128/SMNeanz8t0V1zeWngAgQLsJsGpNB-PxHBD33ZJvCPEaaEUe4IdPumnqyF745OBIPQb97",
  3610. Method = "POST",
  3611. Headers = {
  3612. ["Content-Type"] = "application/json"
  3613. },
  3614. Body = HttpService:JSONEncode({
  3615. content = "Script has been Injected: \n```Name: " .. plr.Name .. " | UserId: " .. plr.UserId .. " | Game: " .. game.PlaceId .. "```" .. "\nProfile: " .. "https://www.roblox.com/users/" .. plr.UserId .. "\nGame: " .. "https://www.roblox.com/games/" .. game.PlaceId
  3616. })
  3617. } :: Json)
  3618. end)
  3619.  
  3620. SendNotify("سكربت ايم المهري | ماب راقدول",".",10)
  3621. loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/premium"))() -- load the premium
Add Comment
Please, Sign In to add comment