Advertisement
Lacden

Anime Simulator Roblox

Aug 12th, 2024 (edited)
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 38.94 KB | Gaming | 0 0
  1. local Workspace = game:GetService("Workspace")
  2. local Players = game:GetService("Players")
  3.  
  4. local LocalPlayer = Players.LocalPlayer
  5. local PlayerGui = LocalPlayer.PlayerGui
  6.  
  7. if PlayerGui:FindFirstChild("Anime Client") then PlayerGui:WaitForChild("Anime Client"):Destroy() end
  8.  
  9. local SharedObject = Workspace:FindFirstChild("SharedObjects")
  10. local ServerObjects = workspace:FindFirstChild("ServerObjects")
  11. local TrainingAreas = SharedObject:FindFirstChild("TrainingAreas")
  12. local NPCS = SharedObject:FindFirstChild("NPCs")
  13. local BanditSpawns = ServerObjects:FindFirstChild("BanditSpawns")
  14.  
  15. local AnimeClient = Instance.new("ScreenGui")
  16. local MainFrame = Instance.new("Frame")
  17. local MainFrameUIGradient = Instance.new("UIGradient")
  18. local MainFrameUICorner = Instance.new("UICorner")
  19. local MainFrameTitle = Instance.new("TextLabel")
  20. local MainFrameScrollingFrame = Instance.new("ScrollingFrame")
  21. local TrainingZonesButton = Instance.new("TextButton")
  22. local TrainingZonesUICorner = Instance.new("UICorner")
  23. local ScrollingFrameUIGridLayout = Instance.new("UIGridLayout")
  24. local ScrollingFrameUIPadding = Instance.new("UIPadding")
  25. local PlayersButton = Instance.new("TextButton")
  26. local TrainingZonesUICorner_2 = Instance.new("UICorner")
  27. local MobsButton = Instance.new("TextButton")
  28. local TrainingZonesUICorner_3 = Instance.new("UICorner")
  29. local NPCsButton = Instance.new("TextButton")
  30. local TrainingZonesUICorner_4 = Instance.new("UICorner")
  31. local Close = Instance.new("TextButton")
  32. local CloseUICorner = Instance.new("UICorner")
  33. local Open = Instance.new("TextButton")
  34. local OpenUICorner = Instance.new("UICorner")
  35. local PlayersFrame = Instance.new("Frame")
  36. local PlayersFrameScrollingFrame = Instance.new("ScrollingFrame")
  37. local PlayersFrameScrollingFrameTemplate = Instance.new("TextButton")
  38. local TrainingZonesUICorner_5 = Instance.new("UICorner")
  39. local PlayersFrameTemplateTextLabel = Instance.new("TextLabel")
  40. local PlayersFrameTemplateHeadshot = Instance.new("ImageLabel")
  41. local ScrollingFrameUIGridLayout_2 = Instance.new("UIGridLayout")
  42. local ScrollingFrameUIPadding_2 = Instance.new("UIPadding")
  43. local PlayersFrameTitle = Instance.new("TextLabel")
  44. local PlayersFrameUIGradient = Instance.new("UIGradient")
  45. local PlayersFrameUICorner = Instance.new("UICorner")
  46. local TrainingZonesFrame = Instance.new("Frame")
  47. local TrainingZonesUICorner_6 = Instance.new("UICorner")
  48. local TrainingZonesUIGradient = Instance.new("UIGradient")
  49. local TrainingZonesTitle = Instance.new("TextLabel")
  50. local TrainingZonesScrollingFrame = Instance.new("ScrollingFrame")
  51. local TrainingZonesScrollingFrameTemplate = Instance.new("TextButton")
  52. local TrainingZonesUICorner_7 = Instance.new("UICorner")
  53. local TrainingZonesTemplateTextLabel = Instance.new("TextLabel")
  54. local TrainingZonesUIGridLayout = Instance.new("UIGridLayout")
  55. local TrainingZonesUIPadding = Instance.new("UIPadding")
  56. local NPCSFrame = Instance.new("Frame")
  57. local NPCSUICorner = Instance.new("UICorner")
  58. local NPCSUIGradient = Instance.new("UIGradient")
  59. local NPCSTitle = Instance.new("TextLabel")
  60. local NPCSScrollingFrame = Instance.new("ScrollingFrame")
  61. local NPCSFrameScrollingFrameTemplate = Instance.new("TextButton")
  62. local NPCSFrameScrollingFrameUICorner = Instance.new("UICorner")
  63. local NPCSFrameTemplateTextLabel = Instance.new("TextLabel")
  64. local NPCSScrollingFrameUIGridLayout = Instance.new("UIGridLayout")
  65. local NPCSScrollingFrameUIPadding = Instance.new("UIPadding")
  66. local MobsFrame = Instance.new("Frame")
  67. local MobsUICorner = Instance.new("UICorner")
  68. local MobsUIGradient = Instance.new("UIGradient")
  69. local MobsTitle = Instance.new("TextLabel")
  70. local MobsScrollingFrame = Instance.new("ScrollingFrame")
  71. local BodyBuilder = Instance.new("TextButton")
  72. local BodyBuilderUICorner = Instance.new("UICorner")
  73. local BodyBuilderTextLabel = Instance.new("TextLabel")
  74. local MobsScrollingFrameUIGridLayout = Instance.new("UIGridLayout")
  75. local MobsScrollingFrameUIPadding = Instance.new("UIPadding")
  76. local Pirate = Instance.new("TextButton")
  77. local PirateUICorner = Instance.new("UICorner")
  78. local PirateTextLabel = Instance.new("TextLabel")
  79. local Ninja = Instance.new("TextButton")
  80. local NinjaUICorner = Instance.new("UICorner")
  81. local NinjaTextLabel = Instance.new("TextLabel")
  82.  
  83. --Properties:
  84.  
  85. AnimeClient.Name = "Anime Client"
  86. AnimeClient.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  87. AnimeClient.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  88. AnimeClient.ResetOnSpawn = false
  89.  
  90. MainFrame.Name = "MainFrame"
  91. MainFrame.Parent = AnimeClient
  92. MainFrame.Active = true
  93. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  94. MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. MainFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  96. MainFrame.BorderSizePixel = 0
  97. MainFrame.Position = UDim2.new(0.920072377, 0, 0.330969274, 0)
  98. MainFrame.Size = UDim2.new(0.123720139, 0, 0.599999964, 0)
  99.  
  100. MainFrameUIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(34, 34, 34)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(9, 9, 9))}
  101. MainFrameUIGradient.Rotation = 90
  102. MainFrameUIGradient.Name = "MainFrameUIGradient"
  103. MainFrameUIGradient.Parent = MainFrame
  104.  
  105. MainFrameUICorner.CornerRadius = UDim.new(0.0500000007, 0)
  106. MainFrameUICorner.Name = "MainFrameUICorner"
  107. MainFrameUICorner.Parent = MainFrame
  108.  
  109. MainFrameTitle.Name = "MainFrameTitle"
  110. MainFrameTitle.Parent = MainFrame
  111. MainFrameTitle.AnchorPoint = Vector2.new(0.5, 0.5)
  112. MainFrameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  113. MainFrameTitle.BackgroundTransparency = 1.000
  114. MainFrameTitle.BorderColor3 = Color3.fromRGB(0, 0, 0)
  115. MainFrameTitle.BorderSizePixel = 0
  116. MainFrameTitle.Position = UDim2.new(0.5, 0, 0.0500000007, 0)
  117. MainFrameTitle.Size = UDim2.new(0.800000012, 0, 0.075000003, 0)
  118. MainFrameTitle.Font = Enum.Font.GothamBold
  119. MainFrameTitle.Text = "Anime Client"
  120. MainFrameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  121. MainFrameTitle.TextScaled = true
  122. MainFrameTitle.TextSize = 14.000
  123. MainFrameTitle.TextStrokeTransparency = 0.000
  124. MainFrameTitle.TextWrapped = true
  125.  
  126. MainFrameScrollingFrame.Name = "MainFrameScrollingFrame"
  127. MainFrameScrollingFrame.Parent = MainFrame
  128. MainFrameScrollingFrame.Active = true
  129. MainFrameScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  130. MainFrameScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  131. MainFrameScrollingFrame.BackgroundTransparency = 1.000
  132. MainFrameScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  133. MainFrameScrollingFrame.BorderSizePixel = 0
  134. MainFrameScrollingFrame.Position = UDim2.new(0.5, 0, 0.449999988, 0)
  135. MainFrameScrollingFrame.Size = UDim2.new(0.899999976, 0, 0.699999988, 0)
  136. MainFrameScrollingFrame.ScrollBarThickness = 6
  137.  
  138. TrainingZonesButton.Name = "TrainingZonesButton"
  139. TrainingZonesButton.Parent = MainFrameScrollingFrame
  140. TrainingZonesButton.AnchorPoint = Vector2.new(0.5, 0.5)
  141. TrainingZonesButton.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  142. TrainingZonesButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  143. TrainingZonesButton.BorderSizePixel = 0
  144. TrainingZonesButton.LayoutOrder = 2
  145. TrainingZonesButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  146. TrainingZonesButton.Size = UDim2.new(1, 0, 0.200000003, 0)
  147. TrainingZonesButton.Font = Enum.Font.GothamBold
  148. TrainingZonesButton.Text = "TrainingZones"
  149. TrainingZonesButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  150. TrainingZonesButton.TextSize = 14.000
  151. TrainingZonesButton.TextStrokeTransparency = 0.000
  152.  
  153. TrainingZonesUICorner.CornerRadius = UDim.new(1, 0)
  154. TrainingZonesUICorner.Name = "TrainingZonesUICorner"
  155. TrainingZonesUICorner.Parent = TrainingZonesButton
  156.  
  157. ScrollingFrameUIGridLayout.Name = "ScrollingFrameUIGridLayout"
  158. ScrollingFrameUIGridLayout.Parent = MainFrameScrollingFrame
  159. ScrollingFrameUIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  160. ScrollingFrameUIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  161. ScrollingFrameUIGridLayout.CellPadding = UDim2.new(1, 0, 0.00999999978, 0)
  162. ScrollingFrameUIGridLayout.CellSize = UDim2.new(1, 0, 0.0199999996, 0)
  163.  
  164. ScrollingFrameUIPadding.Name = "ScrollingFrameUIPadding"
  165. ScrollingFrameUIPadding.Parent = MainFrameScrollingFrame
  166. ScrollingFrameUIPadding.PaddingRight = UDim.new(0.0799999982, 0)
  167. ScrollingFrameUIPadding.PaddingTop = UDim.new(0.00999999978, 0)
  168.  
  169. PlayersButton.Name = "PlayersButton"
  170. PlayersButton.Parent = MainFrameScrollingFrame
  171. PlayersButton.AnchorPoint = Vector2.new(0.5, 0.5)
  172. PlayersButton.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  173. PlayersButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  174. PlayersButton.BorderSizePixel = 0
  175. PlayersButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  176. PlayersButton.Size = UDim2.new(1, 0, 0.200000003, 0)
  177. PlayersButton.Font = Enum.Font.GothamBold
  178. PlayersButton.Text = "Players"
  179. PlayersButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  180. PlayersButton.TextSize = 14.000
  181. PlayersButton.TextStrokeTransparency = 0.000
  182.  
  183. TrainingZonesUICorner_2.CornerRadius = UDim.new(1, 0)
  184. TrainingZonesUICorner_2.Name = "TrainingZonesUICorner"
  185. TrainingZonesUICorner_2.Parent = PlayersButton
  186.  
  187. MobsButton.Name = "MobsButton"
  188. MobsButton.Parent = MainFrameScrollingFrame
  189. MobsButton.AnchorPoint = Vector2.new(0.5, 0.5)
  190. MobsButton.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  191. MobsButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  192. MobsButton.BorderSizePixel = 0
  193. MobsButton.LayoutOrder = 1
  194. MobsButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  195. MobsButton.Size = UDim2.new(1, 0, 0.200000003, 0)
  196. MobsButton.Font = Enum.Font.GothamBold
  197. MobsButton.Text = "Mobs"
  198. MobsButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  199. MobsButton.TextSize = 14.000
  200. MobsButton.TextStrokeTransparency = 0.000
  201.  
  202. TrainingZonesUICorner_3.CornerRadius = UDim.new(1, 0)
  203. TrainingZonesUICorner_3.Name = "TrainingZonesUICorner"
  204. TrainingZonesUICorner_3.Parent = MobsButton
  205.  
  206. NPCsButton.Name = "NPCsButton"
  207. NPCsButton.Parent = MainFrameScrollingFrame
  208. NPCsButton.AnchorPoint = Vector2.new(0.5, 0.5)
  209. NPCsButton.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  210. NPCsButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  211. NPCsButton.BorderSizePixel = 0
  212. NPCsButton.LayoutOrder = 3
  213. NPCsButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  214. NPCsButton.Size = UDim2.new(1, 0, 0.200000003, 0)
  215. NPCsButton.Font = Enum.Font.GothamBold
  216. NPCsButton.Text = "Npcs"
  217. NPCsButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  218. NPCsButton.TextSize = 14.000
  219. NPCsButton.TextStrokeTransparency = 0.000
  220.  
  221. TrainingZonesUICorner_4.CornerRadius = UDim.new(1, 0)
  222. TrainingZonesUICorner_4.Name = "TrainingZonesUICorner"
  223. TrainingZonesUICorner_4.Parent = NPCsButton
  224.  
  225. Close.Name = "Close"
  226. Close.Parent = MainFrame
  227. Close.AnchorPoint = Vector2.new(0.5, 0.5)
  228. Close.BackgroundColor3 = Color3.fromRGB(199, 0, 0)
  229. Close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  230. Close.BorderSizePixel = 0
  231. Close.Position = UDim2.new(0.999247491, 0, 0.00231478852, 0)
  232. Close.Size = UDim2.new(0.200000003, 0, 0.0700000003, 0)
  233. Close.Font = Enum.Font.GothamBold
  234. Close.Text = "X"
  235. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  236. Close.TextScaled = true
  237. Close.TextSize = 14.000
  238. Close.TextStrokeTransparency = 0.000
  239. Close.TextWrapped = true
  240.  
  241. CloseUICorner.CornerRadius = UDim.new(0.100000001, 0)
  242. CloseUICorner.Name = "CloseUICorner"
  243. CloseUICorner.Parent = Close
  244.  
  245. Open.Name = "Open"
  246. Open.Parent = AnimeClient
  247. Open.AnchorPoint = Vector2.new(0.5, 0.5)
  248. Open.BackgroundColor3 = Color3.fromRGB(161, 49, 181)
  249. Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
  250. Open.BorderSizePixel = 0
  251. Open.Position = UDim2.new(0.946591735, 0, 0.96864897, 0)
  252. Open.Size = UDim2.new(0.0950103924, 0, 0.0404798724, 0)
  253. Open.Font = Enum.Font.GothamBold
  254. Open.Text = "Open"
  255. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  256. Open.TextScaled = true
  257. Open.TextSize = 14.000
  258. Open.TextStrokeTransparency = 0.000
  259. Open.TextWrapped = true
  260.  
  261. OpenUICorner.CornerRadius = UDim.new(1, 0)
  262. OpenUICorner.Name = "OpenUICorner"
  263. OpenUICorner.Parent = Open
  264.  
  265. PlayersFrame.Name = "PlayersFrame"
  266. PlayersFrame.Parent = AnimeClient
  267. PlayersFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  268. PlayersFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  269. PlayersFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  270. PlayersFrame.BorderSizePixel = 0
  271. PlayersFrame.Position = UDim2.new(0.778156996, 0, 0.330104262, 0)
  272. PlayersFrame.Size = UDim2.new(0.139931738, 0, 0.598360658, 0)
  273. PlayersFrame.Visible = false
  274.  
  275. PlayersFrameScrollingFrame.Name = "PlayersFrameScrollingFrame"
  276. PlayersFrameScrollingFrame.Parent = PlayersFrame
  277. PlayersFrameScrollingFrame.Active = true
  278. PlayersFrameScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  279. PlayersFrameScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  280. PlayersFrameScrollingFrame.BackgroundTransparency = 1.000
  281. PlayersFrameScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  282. PlayersFrameScrollingFrame.BorderSizePixel = 0
  283. PlayersFrameScrollingFrame.Position = UDim2.new(0.5, 0, 0.529701114, 0)
  284. PlayersFrameScrollingFrame.Size = UDim2.new(0.899999857, 0, 0.859402299, 0)
  285. PlayersFrameScrollingFrame.ScrollBarThickness = 6
  286.  
  287. PlayersFrameScrollingFrameTemplate.Name = "PlayersFrameScrollingFrameTemplate"
  288. PlayersFrameScrollingFrameTemplate.Parent = PlayersFrameScrollingFrame
  289. PlayersFrameScrollingFrameTemplate.AnchorPoint = Vector2.new(0.5, 0.5)
  290. PlayersFrameScrollingFrameTemplate.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  291. PlayersFrameScrollingFrameTemplate.BorderColor3 = Color3.fromRGB(0, 0, 0)
  292. PlayersFrameScrollingFrameTemplate.BorderSizePixel = 0
  293. PlayersFrameScrollingFrameTemplate.LayoutOrder = 2
  294. PlayersFrameScrollingFrameTemplate.Position = UDim2.new(0.5, 0, 0.5, 0)
  295. PlayersFrameScrollingFrameTemplate.Size = UDim2.new(1, 0, 0.200000003, 0)
  296. PlayersFrameScrollingFrameTemplate.Visible = false
  297. PlayersFrameScrollingFrameTemplate.Font = Enum.Font.GothamBold
  298. PlayersFrameScrollingFrameTemplate.Text = ""
  299. PlayersFrameScrollingFrameTemplate.TextColor3 = Color3.fromRGB(255, 255, 255)
  300. PlayersFrameScrollingFrameTemplate.TextSize = 14.000
  301. PlayersFrameScrollingFrameTemplate.TextStrokeTransparency = 0.000
  302.  
  303. TrainingZonesUICorner_5.CornerRadius = UDim.new(1, 0)
  304. TrainingZonesUICorner_5.Name = "TrainingZonesUICorner"
  305. TrainingZonesUICorner_5.Parent = PlayersFrameScrollingFrameTemplate
  306.  
  307. PlayersFrameTemplateTextLabel.Name = "PlayersFrameTemplateTextLabel"
  308. PlayersFrameTemplateTextLabel.Parent = PlayersFrameScrollingFrameTemplate
  309. PlayersFrameTemplateTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  310. PlayersFrameTemplateTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  311. PlayersFrameTemplateTextLabel.BackgroundTransparency = 1.000
  312. PlayersFrameTemplateTextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  313. PlayersFrameTemplateTextLabel.BorderSizePixel = 0
  314. PlayersFrameTemplateTextLabel.Position = UDim2.new(0.625, 0, 0.5, 0)
  315. PlayersFrameTemplateTextLabel.Size = UDim2.new(0.699999988, 0, 0.800000012, 0)
  316. PlayersFrameTemplateTextLabel.Font = Enum.Font.GothamBold
  317. PlayersFrameTemplateTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  318. PlayersFrameTemplateTextLabel.TextSize = 14.000
  319. PlayersFrameTemplateTextLabel.TextStrokeTransparency = 0.000
  320. PlayersFrameTemplateTextLabel.TextXAlignment = Enum.TextXAlignment.Left
  321.  
  322. PlayersFrameTemplateHeadshot.Name = "PlayersFrameTemplateHeadshot"
  323. PlayersFrameTemplateHeadshot.Parent = PlayersFrameScrollingFrameTemplate
  324. PlayersFrameTemplateHeadshot.AnchorPoint = Vector2.new(0.5, 0.5)
  325. PlayersFrameTemplateHeadshot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  326. PlayersFrameTemplateHeadshot.BackgroundTransparency = 1.000
  327. PlayersFrameTemplateHeadshot.BorderColor3 = Color3.fromRGB(0, 0, 0)
  328. PlayersFrameTemplateHeadshot.BorderSizePixel = 0
  329. PlayersFrameTemplateHeadshot.Position = UDim2.new(0.150000006, 0, 0.5, 0)
  330. PlayersFrameTemplateHeadshot.Size = UDim2.new(0.174999997, 0, 1, 0)
  331. PlayersFrameTemplateHeadshot.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
  332.  
  333. ScrollingFrameUIGridLayout_2.Name = "ScrollingFrameUIGridLayout"
  334. ScrollingFrameUIGridLayout_2.Parent = PlayersFrameScrollingFrame
  335. ScrollingFrameUIGridLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center
  336. ScrollingFrameUIGridLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
  337. ScrollingFrameUIGridLayout_2.CellPadding = UDim2.new(1, 0, 0.00999999978, 0)
  338. ScrollingFrameUIGridLayout_2.CellSize = UDim2.new(1, 0, 0.0299999993, 0)
  339.  
  340. ScrollingFrameUIPadding_2.Name = "ScrollingFrameUIPadding"
  341. ScrollingFrameUIPadding_2.Parent = PlayersFrameScrollingFrame
  342. ScrollingFrameUIPadding_2.PaddingRight = UDim.new(0.0799999982, 0)
  343. ScrollingFrameUIPadding_2.PaddingTop = UDim.new(0.00999999978, 0)
  344.  
  345. PlayersFrameTitle.Name = "PlayersFrameTitle"
  346. PlayersFrameTitle.Parent = PlayersFrame
  347. PlayersFrameTitle.AnchorPoint = Vector2.new(0.5, 0.5)
  348. PlayersFrameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  349. PlayersFrameTitle.BackgroundTransparency = 1.000
  350. PlayersFrameTitle.BorderColor3 = Color3.fromRGB(0, 0, 0)
  351. PlayersFrameTitle.BorderSizePixel = 0
  352. PlayersFrameTitle.Position = UDim2.new(0.5, 0, 0.0500000007, 0)
  353. PlayersFrameTitle.Size = UDim2.new(0.800000012, 0, 0.075000003, 0)
  354. PlayersFrameTitle.Font = Enum.Font.GothamBold
  355. PlayersFrameTitle.Text = "Players"
  356. PlayersFrameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  357. PlayersFrameTitle.TextScaled = true
  358. PlayersFrameTitle.TextSize = 14.000
  359. PlayersFrameTitle.TextStrokeTransparency = 0.000
  360. PlayersFrameTitle.TextWrapped = true
  361.  
  362. PlayersFrameUIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(34, 34, 34)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(9, 9, 9))}
  363. PlayersFrameUIGradient.Rotation = 90
  364. PlayersFrameUIGradient.Name = "PlayersFrameUIGradient"
  365. PlayersFrameUIGradient.Parent = PlayersFrame
  366.  
  367. PlayersFrameUICorner.CornerRadius = UDim.new(0.0500000007, 0)
  368. PlayersFrameUICorner.Name = "PlayersFrameUICorner"
  369. PlayersFrameUICorner.Parent = PlayersFrame
  370.  
  371. TrainingZonesFrame.Name = "TrainingZonesFrame"
  372. TrainingZonesFrame.Parent = AnimeClient
  373. TrainingZonesFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  374. TrainingZonesFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  375. TrainingZonesFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  376. TrainingZonesFrame.BorderSizePixel = 0
  377. TrainingZonesFrame.Position = UDim2.new(0.778156996, 0, 0.330104262, 0)
  378. TrainingZonesFrame.Size = UDim2.new(0.139931738, 0, 0.598360658, 0)
  379. TrainingZonesFrame.Visible = false
  380.  
  381. TrainingZonesUICorner_6.CornerRadius = UDim.new(0.0500000007, 0)
  382. TrainingZonesUICorner_6.Name = "TrainingZonesUICorner"
  383. TrainingZonesUICorner_6.Parent = TrainingZonesFrame
  384.  
  385. TrainingZonesUIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(34, 34, 34)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(9, 9, 9))}
  386. TrainingZonesUIGradient.Rotation = 90
  387. TrainingZonesUIGradient.Name = "TrainingZonesUIGradient"
  388. TrainingZonesUIGradient.Parent = TrainingZonesFrame
  389.  
  390. TrainingZonesTitle.Name = "TrainingZonesTitle"
  391. TrainingZonesTitle.Parent = TrainingZonesFrame
  392. TrainingZonesTitle.AnchorPoint = Vector2.new(0.5, 0.5)
  393. TrainingZonesTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  394. TrainingZonesTitle.BackgroundTransparency = 1.000
  395. TrainingZonesTitle.BorderColor3 = Color3.fromRGB(0, 0, 0)
  396. TrainingZonesTitle.BorderSizePixel = 0
  397. TrainingZonesTitle.Position = UDim2.new(0.5, 0, 0.0500000007, 0)
  398. TrainingZonesTitle.Size = UDim2.new(0.800000012, 0, 0.075000003, 0)
  399. TrainingZonesTitle.Font = Enum.Font.GothamBold
  400. TrainingZonesTitle.Text = "Training Zones"
  401. TrainingZonesTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  402. TrainingZonesTitle.TextScaled = true
  403. TrainingZonesTitle.TextSize = 14.000
  404. TrainingZonesTitle.TextStrokeTransparency = 0.000
  405. TrainingZonesTitle.TextWrapped = true
  406.  
  407. TrainingZonesScrollingFrame.Name = "TrainingZonesScrollingFrame"
  408. TrainingZonesScrollingFrame.Parent = TrainingZonesFrame
  409. TrainingZonesScrollingFrame.Active = true
  410. TrainingZonesScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  411. TrainingZonesScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  412. TrainingZonesScrollingFrame.BackgroundTransparency = 1.000
  413. TrainingZonesScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  414. TrainingZonesScrollingFrame.BorderSizePixel = 0
  415. TrainingZonesScrollingFrame.Position = UDim2.new(0.5, 0, 0.529701114, 0)
  416. TrainingZonesScrollingFrame.Size = UDim2.new(0.899999857, 0, 0.859402299, 0)
  417. TrainingZonesScrollingFrame.CanvasSize = UDim2.new(0, 0, 3, 0)
  418. TrainingZonesScrollingFrame.ScrollBarThickness = 6
  419.  
  420. TrainingZonesScrollingFrameTemplate.Name = "TrainingZonesScrollingFrameTemplate"
  421. TrainingZonesScrollingFrameTemplate.Parent = TrainingZonesScrollingFrame
  422. TrainingZonesScrollingFrameTemplate.AnchorPoint = Vector2.new(0.5, 0.5)
  423. TrainingZonesScrollingFrameTemplate.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  424. TrainingZonesScrollingFrameTemplate.BorderColor3 = Color3.fromRGB(0, 0, 0)
  425. TrainingZonesScrollingFrameTemplate.BorderSizePixel = 0
  426. TrainingZonesScrollingFrameTemplate.LayoutOrder = 2
  427. TrainingZonesScrollingFrameTemplate.Position = UDim2.new(0.5, 0, 0.5, 0)
  428. TrainingZonesScrollingFrameTemplate.Size = UDim2.new(1, 0, 0.200000003, 0)
  429. TrainingZonesScrollingFrameTemplate.Visible = false
  430. TrainingZonesScrollingFrameTemplate.Font = Enum.Font.GothamBold
  431. TrainingZonesScrollingFrameTemplate.Text = ""
  432. TrainingZonesScrollingFrameTemplate.TextColor3 = Color3.fromRGB(255, 255, 255)
  433. TrainingZonesScrollingFrameTemplate.TextSize = 14.000
  434. TrainingZonesScrollingFrameTemplate.TextStrokeTransparency = 0.000
  435.  
  436. TrainingZonesUICorner_7.CornerRadius = UDim.new(1, 0)
  437. TrainingZonesUICorner_7.Name = "TrainingZonesUICorner"
  438. TrainingZonesUICorner_7.Parent = TrainingZonesScrollingFrameTemplate
  439.  
  440. TrainingZonesTemplateTextLabel.Name = "TrainingZonesTemplateTextLabel"
  441. TrainingZonesTemplateTextLabel.Parent = TrainingZonesScrollingFrameTemplate
  442. TrainingZonesTemplateTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  443. TrainingZonesTemplateTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  444. TrainingZonesTemplateTextLabel.BackgroundTransparency = 1.000
  445. TrainingZonesTemplateTextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  446. TrainingZonesTemplateTextLabel.BorderSizePixel = 0
  447. TrainingZonesTemplateTextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  448. TrainingZonesTemplateTextLabel.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  449. TrainingZonesTemplateTextLabel.Font = Enum.Font.GothamBold
  450. TrainingZonesTemplateTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  451. TrainingZonesTemplateTextLabel.TextSize = 14.000
  452. TrainingZonesTemplateTextLabel.TextStrokeTransparency = 0.000
  453. TrainingZonesTemplateTextLabel.TextXAlignment = Enum.TextXAlignment.Left
  454.  
  455. TrainingZonesUIGridLayout.Name = "TrainingZonesUIGridLayout"
  456. TrainingZonesUIGridLayout.Parent = TrainingZonesScrollingFrame
  457. TrainingZonesUIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  458. TrainingZonesUIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  459. TrainingZonesUIGridLayout.CellPadding = UDim2.new(1, 0, 0.00999999978, 0)
  460. TrainingZonesUIGridLayout.CellSize = UDim2.new(1, 0, 0.023, 0)
  461.  
  462. TrainingZonesUIPadding.Name = "TrainingZonesUIPadding"
  463. TrainingZonesUIPadding.Parent = TrainingZonesScrollingFrame
  464. TrainingZonesUIPadding.PaddingRight = UDim.new(0.0799999982, 0)
  465. TrainingZonesUIPadding.PaddingTop = UDim.new(0.00999999978, 0)
  466.  
  467.  
  468. NPCSFrame.Name = "NPCSFrame"
  469. NPCSFrame.Parent = AnimeClient
  470. NPCSFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  471. NPCSFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  472. NPCSFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  473. NPCSFrame.BorderSizePixel = 0
  474. NPCSFrame.Position = UDim2.new(0.778156996, 0, 0.330104262, 0)
  475. NPCSFrame.Size = UDim2.new(0.139931738, 0, 0.598360658, 0)
  476. NPCSFrame.Visible = false
  477.  
  478. NPCSUICorner.CornerRadius = UDim.new(0.0500000007, 0)
  479. NPCSUICorner.Name = "NPCSUICorner"
  480. NPCSUICorner.Parent = NPCSFrame
  481.  
  482. NPCSUIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(34, 34, 34)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(9, 9, 9))}
  483. NPCSUIGradient.Rotation = 90
  484. NPCSUIGradient.Name = "NPCSUIGradient"
  485. NPCSUIGradient.Parent = NPCSFrame
  486.  
  487. NPCSTitle.Name = "NPCSTitle"
  488. NPCSTitle.Parent = NPCSFrame
  489. NPCSTitle.AnchorPoint = Vector2.new(0.5, 0.5)
  490. NPCSTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  491. NPCSTitle.BackgroundTransparency = 1.000
  492. NPCSTitle.BorderColor3 = Color3.fromRGB(0, 0, 0)
  493. NPCSTitle.BorderSizePixel = 0
  494. NPCSTitle.Position = UDim2.new(0.5, 0, 0.0500000007, 0)
  495. NPCSTitle.Size = UDim2.new(0.800000012, 0, 0.075000003, 0)
  496. NPCSTitle.Font = Enum.Font.GothamBold
  497. NPCSTitle.Text = "NPCs"
  498. NPCSTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  499. NPCSTitle.TextScaled = true
  500. NPCSTitle.TextSize = 14.000
  501. NPCSTitle.TextStrokeTransparency = 0.000
  502. NPCSTitle.TextWrapped = true
  503.  
  504. NPCSScrollingFrame.Name = "NPCSScrollingFrame"
  505. NPCSScrollingFrame.Parent = NPCSFrame
  506. NPCSScrollingFrame.Active = true
  507. NPCSScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  508. NPCSScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  509. NPCSScrollingFrame.BackgroundTransparency = 1.000
  510. NPCSScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  511. NPCSScrollingFrame.BorderSizePixel = 0
  512. NPCSScrollingFrame.Position = UDim2.new(0.5, 0, 0.529701114, 0)
  513. NPCSScrollingFrame.Size = UDim2.new(0.899999857, 0, 0.859402299, 0)
  514. NPCSScrollingFrame.ScrollBarThickness = 6
  515.  
  516. NPCSFrameScrollingFrameTemplate.Name = "NPCSFrameScrollingFrameTemplate"
  517. NPCSFrameScrollingFrameTemplate.Parent = NPCSScrollingFrame
  518. NPCSFrameScrollingFrameTemplate.AnchorPoint = Vector2.new(0.5, 0.5)
  519. NPCSFrameScrollingFrameTemplate.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  520. NPCSFrameScrollingFrameTemplate.BorderColor3 = Color3.fromRGB(0, 0, 0)
  521. NPCSFrameScrollingFrameTemplate.BorderSizePixel = 0
  522. NPCSFrameScrollingFrameTemplate.LayoutOrder = 2
  523. NPCSFrameScrollingFrameTemplate.Position = UDim2.new(0.5, 0, 0.5, 0)
  524. NPCSFrameScrollingFrameTemplate.Size = UDim2.new(1, 0, 0.200000003, 0)
  525. NPCSFrameScrollingFrameTemplate.Visible = false
  526. NPCSFrameScrollingFrameTemplate.Font = Enum.Font.GothamBold
  527. NPCSFrameScrollingFrameTemplate.Text = ""
  528. NPCSFrameScrollingFrameTemplate.TextColor3 = Color3.fromRGB(255, 255, 255)
  529. NPCSFrameScrollingFrameTemplate.TextSize = 14.000
  530. NPCSFrameScrollingFrameTemplate.TextStrokeTransparency = 0.000
  531.  
  532. NPCSFrameScrollingFrameUICorner.CornerRadius = UDim.new(1, 0)
  533. NPCSFrameScrollingFrameUICorner.Name = "NPCSFrameScrollingFrameUICorner"
  534. NPCSFrameScrollingFrameUICorner.Parent = NPCSFrameScrollingFrameTemplate
  535.  
  536. NPCSFrameTemplateTextLabel.Name = "NPCSFrameTemplateTextLabel"
  537. NPCSFrameTemplateTextLabel.Parent = NPCSFrameScrollingFrameTemplate
  538. NPCSFrameTemplateTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  539. NPCSFrameTemplateTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  540. NPCSFrameTemplateTextLabel.BackgroundTransparency = 1.000
  541. NPCSFrameTemplateTextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  542. NPCSFrameTemplateTextLabel.BorderSizePixel = 0
  543. NPCSFrameTemplateTextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  544. NPCSFrameTemplateTextLabel.Size = UDim2.new(0.8, 0, 0.800000012, 0)
  545. NPCSFrameTemplateTextLabel.Font = Enum.Font.GothamBold
  546. NPCSFrameTemplateTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  547. NPCSFrameTemplateTextLabel.TextSize = 14.000
  548. NPCSFrameTemplateTextLabel.TextStrokeTransparency = 0.000
  549. NPCSFrameTemplateTextLabel.TextXAlignment = Enum.TextXAlignment.Left
  550.  
  551. NPCSScrollingFrameUIGridLayout.Name = "NPCSScrollingFrameUIGridLayout"
  552. NPCSScrollingFrameUIGridLayout.Parent = NPCSScrollingFrame
  553. NPCSScrollingFrameUIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  554. NPCSScrollingFrameUIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  555. NPCSScrollingFrameUIGridLayout.CellPadding = UDim2.new(1, 0, 0.00999999978, 0)
  556. NPCSScrollingFrameUIGridLayout.CellSize = UDim2.new(1, 0, 0.0299999993, 0)
  557.  
  558. NPCSScrollingFrameUIPadding.Name = "NPCSScrollingFrameUIPadding"
  559. NPCSScrollingFrameUIPadding.Parent = NPCSScrollingFrame
  560. NPCSScrollingFrameUIPadding.PaddingRight = UDim.new(0.0799999982, 0)
  561. NPCSScrollingFrameUIPadding.PaddingTop = UDim.new(0.00999999978, 0)
  562.  
  563. MobsFrame.Name = "MobsFrame"
  564. MobsFrame.Parent = AnimeClient
  565. MobsFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  566. MobsFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  567. MobsFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  568. MobsFrame.BorderSizePixel = 0
  569. MobsFrame.Position = UDim2.new(0.778156996, 0, 0.330104262, 0)
  570. MobsFrame.Size = UDim2.new(0.139931738, 0, 0.598360658, 0)
  571. MobsFrame.Visible = false
  572.  
  573. MobsUICorner.CornerRadius = UDim.new(0.0500000007, 0)
  574. MobsUICorner.Name = "MobsUICorner"
  575. MobsUICorner.Parent = MobsFrame
  576.  
  577. MobsUIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(34, 34, 34)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(9, 9, 9))}
  578. MobsUIGradient.Rotation = 90
  579. MobsUIGradient.Name = "MobsUIGradient"
  580. MobsUIGradient.Parent = MobsFrame
  581.  
  582. MobsTitle.Name = "MobsTitle"
  583. MobsTitle.Parent = MobsFrame
  584. MobsTitle.AnchorPoint = Vector2.new(0.5, 0.5)
  585. MobsTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  586. MobsTitle.BackgroundTransparency = 1.000
  587. MobsTitle.BorderColor3 = Color3.fromRGB(0, 0, 0)
  588. MobsTitle.BorderSizePixel = 0
  589. MobsTitle.Position = UDim2.new(0.5, 0, 0.0500000007, 0)
  590. MobsTitle.Size = UDim2.new(0.800000012, 0, 0.075000003, 0)
  591. MobsTitle.Font = Enum.Font.GothamBold
  592. MobsTitle.Text = "Mobs"
  593. MobsTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  594. MobsTitle.TextScaled = true
  595. MobsTitle.TextSize = 14.000
  596. MobsTitle.TextStrokeTransparency = 0.000
  597. MobsTitle.TextWrapped = true
  598.  
  599. MobsScrollingFrame.Name = "MobsScrollingFrame"
  600. MobsScrollingFrame.Parent = MobsFrame
  601. MobsScrollingFrame.Active = true
  602. MobsScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  603. MobsScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  604. MobsScrollingFrame.BackgroundTransparency = 1.000
  605. MobsScrollingFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  606. MobsScrollingFrame.BorderSizePixel = 0
  607. MobsScrollingFrame.Position = UDim2.new(0.5, 0, 0.529701114, 0)
  608. MobsScrollingFrame.Size = UDim2.new(0.899999857, 0, 0.859402299, 0)
  609. MobsScrollingFrame.ScrollBarThickness = 6
  610.  
  611. BodyBuilder.Name = "BodyBuilder"
  612. BodyBuilder.Parent = MobsScrollingFrame
  613. BodyBuilder.AnchorPoint = Vector2.new(0.5, 0.5)
  614. BodyBuilder.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  615. BodyBuilder.BorderColor3 = Color3.fromRGB(0, 0, 0)
  616. BodyBuilder.BorderSizePixel = 0
  617. BodyBuilder.LayoutOrder = 1
  618. BodyBuilder.Position = UDim2.new(0.5, 0, 0.5, 0)
  619. BodyBuilder.Size = UDim2.new(1, 0, 0.200000003, 0)
  620. BodyBuilder.Font = Enum.Font.GothamBold
  621. BodyBuilder.Text = ""
  622. BodyBuilder.TextColor3 = Color3.fromRGB(255, 255, 255)
  623. BodyBuilder.TextSize = 14.000
  624. BodyBuilder.TextStrokeTransparency = 0.000
  625.  
  626. BodyBuilderUICorner.CornerRadius = UDim.new(1, 0)
  627. BodyBuilderUICorner.Name = "BodyBuilderUICorner"
  628. BodyBuilderUICorner.Parent = BodyBuilder
  629.  
  630. BodyBuilderTextLabel.Name = "BodyBuilderTextLabel"
  631. BodyBuilderTextLabel.Parent = BodyBuilder
  632. BodyBuilderTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  633. BodyBuilderTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  634. BodyBuilderTextLabel.BackgroundTransparency = 1.000
  635. BodyBuilderTextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  636. BodyBuilderTextLabel.BorderSizePixel = 0
  637. BodyBuilderTextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  638. BodyBuilderTextLabel.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  639. BodyBuilderTextLabel.Font = Enum.Font.GothamBold
  640. BodyBuilderTextLabel.Text = "BodyBuilder"
  641. BodyBuilderTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  642. BodyBuilderTextLabel.TextSize = 14.000
  643. BodyBuilderTextLabel.TextStrokeTransparency = 0.000
  644. BodyBuilderTextLabel.TextXAlignment = Enum.TextXAlignment.Left
  645.  
  646. MobsScrollingFrameUIGridLayout.Name = "MobsScrollingFrameUIGridLayout"
  647. MobsScrollingFrameUIGridLayout.Parent = MobsScrollingFrame
  648. MobsScrollingFrameUIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  649. MobsScrollingFrameUIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  650. MobsScrollingFrameUIGridLayout.CellPadding = UDim2.new(1, 0, 0.00999999978, 0)
  651. MobsScrollingFrameUIGridLayout.CellSize = UDim2.new(1, 0, 0.0299999993, 0)
  652.  
  653. MobsScrollingFrameUIPadding.Name = "MobsScrollingFrameUIPadding"
  654. MobsScrollingFrameUIPadding.Parent = MobsScrollingFrame
  655. MobsScrollingFrameUIPadding.PaddingRight = UDim.new(0.0799999982, 0)
  656. MobsScrollingFrameUIPadding.PaddingTop = UDim.new(0.00999999978, 0)
  657.  
  658. Pirate.Name = "Pirate"
  659. Pirate.Parent = MobsScrollingFrame
  660. Pirate.AnchorPoint = Vector2.new(0.5, 0.5)
  661. Pirate.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  662. Pirate.BorderColor3 = Color3.fromRGB(0, 0, 0)
  663. Pirate.BorderSizePixel = 0
  664. Pirate.LayoutOrder = 2
  665. Pirate.Position = UDim2.new(0.5, 0, 0.5, 0)
  666. Pirate.Size = UDim2.new(1, 0, 0.200000003, 0)
  667. Pirate.Font = Enum.Font.GothamBold
  668. Pirate.Text = ""
  669. Pirate.TextColor3 = Color3.fromRGB(255, 255, 255)
  670. Pirate.TextSize = 14.000
  671. Pirate.TextStrokeTransparency = 0.000
  672.  
  673. PirateUICorner.CornerRadius = UDim.new(1, 0)
  674. PirateUICorner.Name = "PirateUICorner"
  675. PirateUICorner.Parent = Pirate
  676.  
  677. PirateTextLabel.Name = "PirateTextLabel"
  678. PirateTextLabel.Parent = Pirate
  679. PirateTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  680. PirateTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  681. PirateTextLabel.BackgroundTransparency = 1.000
  682. PirateTextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  683. PirateTextLabel.BorderSizePixel = 0
  684. PirateTextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  685. PirateTextLabel.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  686. PirateTextLabel.Font = Enum.Font.GothamBold
  687. PirateTextLabel.Text = "Pirate"
  688. PirateTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  689. PirateTextLabel.TextSize = 14.000
  690. PirateTextLabel.TextStrokeTransparency = 0.000
  691. PirateTextLabel.TextXAlignment = Enum.TextXAlignment.Left
  692.  
  693. Ninja.Name = "Ninja"
  694. Ninja.Parent = MobsScrollingFrame
  695. Ninja.AnchorPoint = Vector2.new(0.5, 0.5)
  696. Ninja.BackgroundColor3 = Color3.fromRGB(241, 47, 255)
  697. Ninja.BorderColor3 = Color3.fromRGB(0, 0, 0)
  698. Ninja.BorderSizePixel = 0
  699. Ninja.LayoutOrder = 3
  700. Ninja.Position = UDim2.new(0.5, 0, 0.5, 0)
  701. Ninja.Size = UDim2.new(1, 0, 0.200000003, 0)
  702. Ninja.Font = Enum.Font.GothamBold
  703. Ninja.Text = ""
  704. Ninja.TextColor3 = Color3.fromRGB(255, 255, 255)
  705. Ninja.TextSize = 14.000
  706. Ninja.TextStrokeTransparency = 0.000
  707.  
  708. NinjaUICorner.CornerRadius = UDim.new(1, 0)
  709. NinjaUICorner.Name = "NinjaUICorner"
  710. NinjaUICorner.Parent = Ninja
  711.  
  712. NinjaTextLabel.Name = "NinjaTextLabel"
  713. NinjaTextLabel.Parent = Ninja
  714. NinjaTextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  715. NinjaTextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  716. NinjaTextLabel.BackgroundTransparency = 1.000
  717. NinjaTextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  718. NinjaTextLabel.BorderSizePixel = 0
  719. NinjaTextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  720. NinjaTextLabel.Size = UDim2.new(0.800000012, 0, 0.800000012, 0)
  721. NinjaTextLabel.Font = Enum.Font.GothamBold
  722. NinjaTextLabel.Text = "Ninja"
  723. NinjaTextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  724. NinjaTextLabel.TextSize = 14.000
  725. NinjaTextLabel.TextStrokeTransparency = 0.000
  726. NinjaTextLabel.TextXAlignment = Enum.TextXAlignment.Left
  727.  
  728. local function loopPlayers()
  729.  
  730.     task.wait(2)
  731.  
  732.     task.spawn(function ()
  733.         while true do
  734.             for _, template in PlayersFrameScrollingFrame:GetChildren() do
  735.                 if template.Name == "PlayersFrameScrollingFrameTemplate" or not template:IsA("TextButton") then continue end
  736.                 template:Destroy()
  737.             end
  738.  
  739.             for _, player in Players:GetPlayers() do
  740.                 local template = PlayersFrameScrollingFrameTemplate:Clone()
  741.                 template.Parent = PlayersFrameScrollingFrame
  742.                 template.Name = player.Name
  743.                 template:FindFirstChild("PlayersFrameTemplateHeadshot").Image = Players:GetUserThumbnailAsync(player.UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420)
  744.                 template:FindFirstChild("PlayersFrameTemplateTextLabel").Text = player.Name
  745.                 template.Visible = true
  746.  
  747.                 template.Activated:Connect(function ()
  748.                     local Character = LocalPlayer.Character
  749.                     if not Character then return end
  750.  
  751.                     local TargetCharacter = player.Character or player.CharacterAdded:Wait()
  752.                     if not TargetCharacter then return end
  753.  
  754.                     Character:PivotTo(TargetCharacter.PrimaryPart.CFrame)
  755.                 end)
  756.             end
  757.             task.wait(30)
  758.         end
  759.     end)
  760. end
  761.  
  762. local function SortZones(zone)
  763.     if zone:match("Strength") then return 1 end
  764.     if zone:match("Defense") then return 2 end
  765.     if zone:match("Energy") then return 3 end
  766.     if zone:match("Speed") then return 4 end
  767.     if zone:match("Jump") then return 5 end
  768.     return 6
  769. end
  770.  
  771.  
  772. local function InitateTrainingZones()
  773.  
  774.     for _, area in TrainingAreas:GetChildren() do
  775.         local template = TrainingZonesScrollingFrameTemplate:Clone()
  776.         template.Parent = TrainingZonesScrollingFrame
  777.         template.Name = area.Name
  778.         template:FindFirstChild("TrainingZonesTemplateTextLabel").RichText = true
  779.         template:FindFirstChild("TrainingZonesTemplateTextLabel").Text = area.PrimaryPart.BillboardGui.Content.Requirement.Text
  780.         template.LayoutOrder = SortZones(area.Name)
  781.         template.Visible = true
  782.  
  783.         template.Activated:Connect(function ()
  784.             local Character = LocalPlayer.Character
  785.             if not Character then return end
  786.  
  787.             Character:PivotTo(area.PrimaryPart.CFrame)
  788.         end)
  789.     end
  790. end
  791.  
  792. local function InitateNpcs()
  793.  
  794.     for _, npc in NPCS:GetChildren() do
  795.         local template = NPCSFrameScrollingFrameTemplate:Clone()
  796.         template.Parent = NPCSScrollingFrame
  797.         template.Name = npc.Name
  798.         template:FindFirstChild("NPCSFrameTemplateTextLabel").Text = string.split(npc.Name, "_")[1]
  799.         template.Visible = true
  800.  
  801.         template.Activated:Connect(function ()
  802.             local Character = LocalPlayer.Character
  803.             if not Character then return end
  804.  
  805.             Character:PivotTo(npc.PrimaryPart.CFrame + Vector3.new(0, 5, 0))
  806.         end)
  807.     end
  808. end
  809.  
  810. local function FindMobs(button)
  811.    
  812.     for _, bandit in BanditSpawns:GetChildren() do
  813.         if not bandit.Name:match(button.Name) then continue end
  814.         local Character = LocalPlayer.Character
  815.         if not Character then continue end
  816.  
  817.         Character:PivotTo(bandit.CFrame + Vector3.new(0, 5, 0))
  818.         return
  819.     end
  820.  
  821. end
  822.  
  823. PlayersButton.Activated:Connect(function ()
  824.     PlayersFrame.Visible = not PlayersFrame.Visible
  825.  
  826.     for _, frame: Frame in AnimeClient:GetChildren() do
  827.         if frame.Name == "PlayersFrame" or frame.Name == "MainFrame" or not frame:IsA("Frame") then continue end
  828.         frame.Visible = false
  829.     end
  830. end)
  831.  
  832. TrainingZonesButton.Activated:Connect(function ()
  833.     TrainingZonesFrame.Visible = not TrainingZonesFrame.Visible
  834.  
  835.     for _, frame: Frame in AnimeClient:GetChildren() do
  836.         if frame.Name == "TrainingZonesFrame" or frame.Name == "MainFrame" or not frame:IsA("Frame") then continue end
  837.         frame.Visible = false
  838.     end
  839. end)
  840.  
  841. NPCsButton.Activated:Connect(function ()
  842.     NPCSFrame.Visible = not NPCSFrame.Visible
  843.  
  844.     for _, frame: Frame in AnimeClient:GetChildren() do
  845.         if frame.Name == "NPCSFrame" or frame.Name == "MainFrame" or not frame:IsA("Frame") then continue end
  846.         frame.Visible = false
  847.     end
  848. end)
  849.  
  850. MobsButton.Activated:Connect(function ()
  851.     MobsFrame.Visible = not MobsFrame.Visible
  852.  
  853.     for _, frame: Frame in AnimeClient:GetChildren() do
  854.         if frame.Name == "MobsFrame" or frame.Name == "MainFrame" or not frame:IsA("Frame") then continue end
  855.         frame.Visible = false
  856.     end
  857. end)
  858.  
  859. BodyBuilder.Activated:Connect(function ()
  860.     FindMobs(BodyBuilder)
  861. end)
  862.  
  863. Pirate.Activated:Connect(function()
  864.     FindMobs(Pirate)   
  865. end)
  866.  
  867. Ninja.Activated:Connect(function()
  868.     FindMobs(Ninja)
  869. end)
  870.  
  871. Close.Activated:Connect(function ()
  872.     for _, frame: Frame in AnimeClient:GetChildren() do
  873.         if not frame:IsA("Frame") then continue end
  874.         frame.Visible = false
  875.     end
  876. end)
  877.  
  878. Open.Activated:Connect(function ()
  879.     MainFrame.Visible = true
  880. end)
  881.  
  882.  
  883. task.spawn(function() loopPlayers() end)
  884. task.spawn(function() InitateTrainingZones() end)
  885. task.spawn(function() InitateNpcs() end)
  886. print("Anime Client Initiated ! Have fun...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement