pklo

Untitled

Mar 9th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.37 KB | None | 0 0
  1.  
  2. --[[
  3.  
  4. __ __ __ __ _____ _ ___ ___
  5. \ \ / / | \/ | / ____| (_) |__ \ / _ \
  6. \ \_/ /__ _ _ _ __| \ / | ___ _ __ ___ | | __ _ _ _ ) || | | |
  7. \ / _ \| | | | '__| |\/| |/ _ \| '_ ` _ \ | | |_ | | | | | / / | | | |
  8. | | (_) | |_| | | | | | | (_) | | | | | | | |__| | |_| | | / /_ | |_| |
  9. |_|\___/ \__,_|_| |_| |_|\___/|_| |_| |_| \_____|\__,_|_| |____(_)___/
  10.  
  11. ]]
  12.  
  13. --// loadstring(game:GetObjects('rbxassetid://337743103')[1].Source)()
  14.  
  15. --/ | / Seth Milkman / | /--
  16.  
  17.  
  18.  
  19. for i,v in pairs(game.CoreGui:GetChildren()) do
  20. if v.Name == 'YourMom2' then
  21. v:remove()
  22. end
  23. end
  24.  
  25. wait()
  26.  
  27. YourMom = game:GetObjects('rbxassetid://337131434')[1]
  28. YourMom.Parent = game.CoreGui
  29.  
  30. YourMom_DATA = game:GetObjects('rbxassetid://339069994')[1]
  31. YourMom_DATA.Parent = game.ContextActionService
  32.  
  33. MAIN = YourMom.MAIN
  34. TABS = MAIN.TABS
  35. PAGES = MAIN.PAGES
  36.  
  37. OPEN = YourMom.OPEN
  38. EXIT = MAIN.EXIT
  39.  
  40.  
  41.  
  42. --// LOCAL PLAYER
  43.  
  44. PLAYER = game.Players.LocalPlayer
  45. MOUSE = PLAYER:GetMouse()
  46.  
  47. --// Tabs
  48.  
  49. TABS_LOCAL = TABS.LOCAL
  50. TABS_SERVER = TABS.SERVER
  51. TABS_TOYS = TABS.TOYS
  52. TABS_PLAYERS = TABS.PLAYERS
  53. TABS_EXPLORER = TABS.EXPLORER
  54. TABS_SOUND = TABS.SOUND
  55. TABS_SCRIPTS = TABS.SCRIPTS
  56. TABS_MISC = TABS.MISC
  57. TABS_BAN = TABS.BAN
  58. TABS_SETTINGS = TABS.SETTINGS
  59.  
  60.  
  61.  
  62. --// Pages
  63.  
  64. PAGES_LOCAL = PAGES.LOCAL
  65. PAGES_SERVER = PAGES.SERVER
  66. PAGES_TOYS = PAGES.TOYS
  67. PAGES_PLAYERS = PAGES.PLAYERS
  68. PAGES_EXPLORER = PAGES.EXPLORER
  69. PAGES_SOUND = PAGES.SOUND
  70. PAGES_SCRIPTS = PAGES.SCRIPTS
  71. PAGES_MISC = PAGES.MISC
  72. PAGES_BAN = PAGES.BAN
  73. PAGES_SETTINGS = PAGES.SETTINGS
  74.  
  75.  
  76.  
  77. --// GAME INFO
  78.  
  79. FILTERING_ENABLED = game.Workspace.FilteringEnabled
  80. PLACE_ID = game.PlaceId
  81. CREATOR_ID = game.CreatorId
  82. MAX_PLAYERS = game.Players.MaxPlayers
  83. CURRENT_PLAYERS = game.Players.NumPlayers
  84.  
  85. OUTLINES = game.Lighting.Outlines
  86. GLOBAL_SHADOWS = game.Lighting.GlobalShadows
  87. SERVER_LOCKED = false
  88. _G.COMMAND_BAR = false
  89. ANTI_EXPLOIT = false
  90.  
  91.  
  92.  
  93. --// OPEN AND CLOSE
  94.  
  95. GUI_OPENED = false
  96.  
  97. OPEN.MouseButton1Down:connect(function()
  98. if GUI_OPENED == false then
  99. OPEN.Active = true
  100. OPEN:TweenPosition(UDim2.new(0, -50, 1, 0), 'Out', 'Quad', 0.5)
  101. MAIN:TweenPosition(UDim2.new(0, 20, 0, 20), 'Out', 'Quad', 0.5)
  102. GUI_OPENED = true
  103. end
  104. end)
  105.  
  106. EXIT.MouseButton1Down:connect(function()
  107. if GUI_OPENED == true then
  108. OPEN.Active = true
  109. OPEN:TweenPosition(UDim2.new(0, 0, 1, -50), 'Out', 'Quad', 0.5)
  110. MAIN:TweenPosition(UDim2.new(0, -400, 0, -400), 'Out', 'Quad', 0.5)
  111. GUI_OPENED = false
  112. end
  113. end)
  114.  
  115.  
  116.  
  117. --// TABS FUNCTIONS
  118.  
  119. for i,v in pairs(TABS:GetChildren()) do
  120. v.MouseButton1Down:connect(function()
  121. for a,b in pairs(PAGES:GetChildren()) do
  122. if b.Name == v.Name then
  123. b.Visible = true
  124. else
  125. b.Visible = false
  126. end
  127. end
  128. end)
  129. end
  130.  
  131.  
  132.  
  133. --// EXTRA FUNCTIONS
  134.  
  135. NOCLIP = false
  136.  
  137. function SCALE(CHAR,SCAL)
  138. local SIZE_HAT_DATA = Instance.new('Folder', game.Lighting)
  139. SIZE_HAT_DATA.Name = 'HAT_DATA_' .. CHAR.Name
  140.  
  141. for i,v in pairs(CHAR:GetChildren()) do
  142. if v:IsA('Hat') then
  143. v:Clone().Parent = SIZE_HAT_DATA
  144. wait()
  145. v:remove()
  146. end
  147. end
  148.  
  149. local HEAD = CHAR.Head
  150. local TORSO = CHAR.Torso
  151. local LA = CHAR['Left Arm']
  152. local RA = CHAR['Right Arm']
  153. local LL = CHAR['Left Leg']
  154. local RL = CHAR['Right Leg']
  155. local HRP = CHAR.HumanoidRootPart
  156.  
  157. HEAD.FormFactor = 3
  158. TORSO.FormFactor = 3
  159. LA.FormFactor = 3
  160. RA.FormFactor = 3
  161. LL.FormFactor = 3
  162. RL.FormFactor = 3
  163. HRP.FormFactor = 3
  164.  
  165. HEAD.Size = Vector3.new(SCAL * 2, SCAL, SCAL)
  166. TORSO.Size = Vector3.new(SCAL * 2, SCAL * 2, SCAL)
  167. LA.Size = Vector3.new(SCAL, SCAL * 2, SCAL)
  168. RA.Size = Vector3.new(SCAL, SCAL * 2, SCAL)
  169. LL.Size = Vector3.new(SCAL, SCAL * 2, SCAL)
  170. RL.Size = Vector3.new(SCAL, SCAL * 2, SCAL)
  171. HRP.Size = Vector3.new(SCAL * 2, SCAL * 2, SCAL)
  172.  
  173. local M1 = Instance.new('Motor6D', TORSO)
  174. local M2 = Instance.new('Motor6D', TORSO)
  175. local M3 = Instance.new('Motor6D', TORSO)
  176. local M4 = Instance.new('Motor6D', TORSO)
  177. local M5 = Instance.new('Motor6D', TORSO)
  178. local M6 = Instance.new('Motor6D', HRP)
  179.  
  180. M1.Name = 'Neck'
  181. M1.Part0 = TORSO
  182. M1.Part1 = HEAD
  183. M1.C0 = CFrame.new(0, 1 * SCAL, 0) * CFrame.Angles(-1.6, 0, 3.1)
  184. M1.C1 = CFrame.new(0, -0.5 * SCAL, 0) * CFrame.Angles(-1.6, 0, 3.1)
  185.  
  186. M2.Name = 'Left Shoulder'
  187. M2.Part0 = TORSO
  188. M2.Part1 = LA
  189. M2.C0 = CFrame.new(-1 * SCAL, 0.5 * SCAL, 0) * CFrame.Angles(0, -1.6, 0)
  190. M2.C1 = CFrame.new(0.5 * SCAL, 0.5 * SCAL, 0) * CFrame.Angles(0, -1.6, 0)
  191.  
  192. M3.Name = 'Right Shoulder'
  193. M3.Part0 = TORSO
  194. M3.Part1 = RA
  195. M3.C0 = CFrame.new(1 * SCAL, 0.5 * SCAL, 0) * CFrame.Angles(0, 1.6, 0)
  196. M3.C1 = CFrame.new(-0.5 * SCAL, 0.5 * SCAL, 0) * CFrame.Angles(0, 1.6, 0)
  197.  
  198. M4.Name = 'Left Hip'
  199. M4.Part0 = TORSO
  200. M4.Part1 = LL
  201. M4.C0 = CFrame.new(-1 * SCAL, -1 * SCAL, 0) * CFrame.Angles(0, -1.6, 0)
  202. M4.C1 = CFrame.new(-0.5 * SCAL, 1 * SCAL, 0) * CFrame.Angles(0, -1.6, 0)
  203.  
  204. M5.Name = 'Right Hip'
  205. M5.Part0 = TORSO
  206. M5.Part1 = RL
  207. M5.C0 = CFrame.new(1 * SCAL, -1 * SCAL, 0) * CFrame.Angles(0, 1.6, 0)
  208. M5.C1 = CFrame.new(0.5 * SCAL, 1 * SCAL, 0) * CFrame.Angles(0, 1.6, 0)
  209.  
  210. M6.Name = 'RootJoint'
  211. M6.Part0 = HRP
  212. M6.Part1 = TORSO
  213. M6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  214. M6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  215.  
  216. wait()
  217.  
  218. for i,v in pairs(SIZE_HAT_DATA:GetChildren()) do
  219. if v:IsA('Hat') then
  220. v.Parent = CHAR
  221. end
  222. end
  223.  
  224. SIZE_HAT_DATA:remove()
  225. end
  226.  
  227. function GIVE_CAPE()
  228. if PLAYER.Character:FindFirstChild('CAPE') then
  229. PLAYER.Character.CAPE:remove()
  230. end
  231.  
  232. repeat
  233. wait()
  234. until PLAYER and PLAYER.Character and PLAYER.Character:FindFirstChild('Torso')
  235.  
  236. local CAPE = Instance.new('Part', PLAYER.Character)
  237. local MESH = Instance.new('BlockMesh', CAPE)
  238. local M1 = Instance.new('Motor', CAPE)
  239.  
  240. CAPE.Name = 'CAPE'
  241. CAPE.CanCollide = false
  242. CAPE.TopSurface = 'Smooth'
  243. CAPE.BottomSurface = 'Smooth'
  244. CAPE.BrickColor = BrickColor.new('Deep blue')
  245. CAPE.Material = 'Neon'
  246. CAPE.FormFactor = 3
  247. CAPE.Size = Vector3.new(0.2, 0.2, 0.2)
  248.  
  249. MESH.Scale = Vector3.new(9, 17.5, 0.5)
  250.  
  251. M1.Part0 = CAPE
  252. M1.Part1 = PLAYER.Character.Torso
  253. M1.MaxVelocity = 1
  254. M1.C0 = CFrame.new(0, 1.75, 0) * CFrame.Angles(0, math.rad(90), 0)
  255. M1.C1 = CFrame.new(0, 1, 0.45) * CFrame.Angles(0, math.rad(90), 0)
  256.  
  257. local WAVE = false
  258.  
  259. repeat
  260. wait(1/44)
  261. local ANG = 0.2
  262. local OLDMAG = PLAYER.Character.Torso.Velocity.magnitude
  263. local MV = 0.1
  264.  
  265. if WAVE then
  266. ANG = ANG + ((PLAYER.Character.Torso.Velocity.magnitude/10) * 0.05) + 1
  267. WAVE = false
  268. else
  269. WAVE = false
  270. end
  271.  
  272. ANG = ANG + math.min(PLAYER.Character.Torso.Velocity.magnitude/30, 1)
  273. M1.MaxVelocity = math.min((PLAYER.Character.Torso.Velocity.magnitude/10), 0.04) + MV
  274. M1.DesiredAngle = -ANG
  275.  
  276. if M1.CurrentAngle < -0.05 and M1.DesiredAngle > -0.05 then
  277. M1.MaxVelocity = 0.04
  278. end
  279.  
  280. repeat
  281. wait()
  282. until M1.CurrentAngle == M1.DesiredAngle or math.abs(PLAYER.Character.Torso.Velocity.magnitude - OLDMAG) >= (PLAYER.Character.Torso.Velocity.magnitude/10) + 1
  283.  
  284. if PLAYER.Character.Torso.Velocity.magnitude < 0.1 then
  285. wait(0.1)
  286. end
  287. until not CAPE or CAPE.Parent ~= PLAYER.Character
  288. end
  289.  
  290. function CREATE_DONG(DONG_PLAYER, SHAFT_COLOR, TIP_COLOR, LEFT_COLOR, RIGHT_COLOR)
  291. local PERSON = DONG_PLAYER
  292. local D = Instance.new('Model', PERSON.Character)
  293. D.Name = 'DONG'
  294.  
  295. local BG = Instance.new('BodyGyro',PERSON.Character.Torso)
  296. local MAIN = Instance.new('Part', PERSON.Character['DONG'])
  297. local M1 = Instance.new('CylinderMesh', MAIN)
  298. local W1 = Instance.new('Weld', PERSON.Character.Head)
  299. local P1 = Instance.new('Part', PERSON.Character['DONG'])
  300. local M2 = Instance.new('SpecialMesh', P1)
  301. local W2 = Instance.new('Weld', P1)
  302. local B1 = Instance.new('Part', PERSON.Character['DONG'])
  303. local M3 = Instance.new('SpecialMesh', B1)
  304. local W3 = Instance.new('Weld', B1)
  305. local B2 = Instance.new('Part', PERSON.Character['DONG'])
  306. local M4 = Instance.new('SpecialMesh', B2)
  307. local W4 = Instance.new('Weld', B2)
  308.  
  309. MAIN.TopSurface = 0
  310. MAIN.BottomSurface = 0
  311. MAIN.Name = 'Main'
  312. MAIN.formFactor = 3
  313. MAIN.Size = Vector3.new(0.6,2.5,0.6)
  314. MAIN.BrickColor = BrickColor.new(SHAFT_COLOR)
  315. MAIN.Position = PERSON.Character.Head.Position
  316. MAIN.CanCollide = false
  317.  
  318. W1.Part0 = MAIN
  319. W1.Part1 = PERSON.Character.Head
  320. W1.C0 = CFrame.new(0,0.25,2.1)*CFrame.Angles(math.rad(45),0,0)
  321.  
  322. P1.Name = 'Mush'
  323. P1.BottomSurface = 0
  324. P1.TopSurface = 0
  325. P1.FormFactor = 3
  326. P1.Size = Vector3.new(0.6,0.6,0.6)
  327. P1.CFrame = CFrame.new(MAIN.Position)
  328. P1.BrickColor = BrickColor.new(TIP_COLOR)
  329. P1.CanCollide = false
  330.  
  331. M2.MeshType = 'Sphere'
  332.  
  333. W2.Part0 = MAIN
  334. W2.Part1 = P1
  335. W2.C0 = CFrame.new(0,1.3,0)
  336.  
  337. B1.Name = 'Left Ball'
  338. B1.BottomSurface = 0
  339. B1.TopSurface = 0
  340. B1.CanCollide = false
  341. B1.formFactor = 3
  342. B1.Size = Vector3.new(1,1,1)
  343. B1.CFrame = CFrame.new(PERSON.Character['Left Leg'].Position)
  344. B1.BrickColor = BrickColor.new(LEFT_COLOR)
  345.  
  346. M3.Parent = B1
  347. M3.MeshType = 'Sphere'
  348.  
  349. W3.Part0 = PERSON.Character['Left Leg']
  350. W3.Part1 = B1
  351. W3.C0 = CFrame.new(0,0.5,-.5)
  352.  
  353. B2.Name = 'Right Ball'
  354. B2.BottomSurface = 0
  355. B2.CanCollide = false
  356. B2.TopSurface = 0
  357. B2.formFactor = 3
  358. B2.Size = Vector3.new(1,1,1)
  359. B2.CFrame = CFrame.new(PERSON.Character['Right Leg'].Position)
  360. B2.BrickColor = BrickColor.new(RIGHT_COLOR)
  361.  
  362. M4.MeshType = 'Sphere'
  363.  
  364. W4.Part0 = PERSON.Character['Right Leg']
  365. W4.Part1 = B2
  366. W4.C0 = CFrame.new(0,0.5,-.5)
  367. end
  368.  
  369. function KICK(PLAYER_KICK)
  370. if PLAYER_KICK.Character:FindFirstChild('Humanoid') then
  371. local KICK_1 = Instance.new('SkateboardPlatform', PLAYER_KICK.Character)
  372. KICK_1.Name = ''
  373. KICK_1.CFrame = CFrame.new(math.random(-1000, 1000), 1000, math.random(-1000, 1000))
  374. KICK_1.CanCollide = false
  375. KICK_1.Anchored = false
  376. KICK_1.Transparency = 1
  377. KICK_1.Size = Vector3.new(5, 1, 5)
  378.  
  379. wait(0.2)
  380.  
  381. local WELD_1 = Instance.new('Weld', game.Workspace)
  382. WELD_1.Name = ''
  383. WELD_1.Part0 = PLAYER_KICK.Character.Torso
  384. WELD_1.Part1 = KICK_1
  385. WELD_1.C0 = CFrame.new(0, -500, 0)
  386.  
  387. PLAYER_KICK.Character.Humanoid.WalkSpeed = 0
  388. PLAYER_KICK.Character.Humanoid.Jump = true
  389.  
  390. wait(0.5)
  391.  
  392. KICK_1.Anchored = true
  393. WELD_1:remove()
  394.  
  395. print('REMOVED : ' .. PLAYER_KICK.Name)
  396. end
  397. end
  398.  
  399.  
  400.  
  401. --// BAN DATA
  402.  
  403. BANNED_PLAYERS = {
  404. {['NAME'] = 'LordCrazy13', ['UID'] = '21799524'},
  405. {['NAME'] = 'ExecutedBagel', ['UID'] = '17730923'}
  406. }
  407.  
  408. for i,v in pairs(game.Players:GetChildren()) do
  409. if v:IsA('Player') then
  410. for a,b in pairs(BANNED_PLAYERS) do
  411. if v.Name == b.NAME or v.userId == b.UID then
  412. KICK(v)
  413. end
  414. end
  415. end
  416. end
  417.  
  418. game.Players.PlayerAdded:connect(function(PLAYER_ADDED)
  419. for i,v in pairs(BANNED_PLAYERS) do
  420. if PLAYER_ADDED.Name == BANNED_PLAYERS[i].NAME or PLAYER_ADDED.userId == BANNED_PLAYERS[i].UID then
  421. wait(0.5)
  422. KICK(PLAYER_ADDED)
  423. end
  424. end
  425. end)
  426.  
  427. function BAN_PLAYER(PLAYER_BAN)
  428. table.insert(BANNED_PLAYERS, #BANNED_PLAYERS + 1, {['NAME'] = PLAYER_BAN.Name, ['UID'] = PLAYER_BAN.userId})
  429. end
  430.  
  431.  
  432.  
  433. --// LOCAL PAGE
  434.  
  435. for i,v in pairs(PAGES_LOCAL:GetChildren()) do
  436. v.MouseButton1Down:connect(function()
  437. if v.Name == 'FF' then
  438. Instance.new('ForceField', PLAYER.Character)
  439.  
  440. elseif v.Name == 'FIRE' then
  441. for i,v in pairs(PLAYER.Character:GetChildren()) do
  442. if v:IsA('Part') then
  443. Instance.new('Fire', v)
  444. end
  445. end
  446.  
  447. elseif v.Name == 'SPARKLES' then
  448. for i,v in pairs(PLAYER.Character:GetChildren()) do
  449. if v:IsA('Part') then
  450. Instance.new('Sparkles', v)
  451. end
  452. end
  453.  
  454. elseif v.Name == 'SMOKE' then
  455. Instance.new('Smoke', PLAYER.Character.Torso)
  456.  
  457. elseif v.Name == 'BTOOLS' then
  458. Instance.new('HopperBin', PLAYER.Backpack).BinType = 'Grab'
  459. Instance.new('HopperBin', PLAYER.Backpack).BinType = 'Clone'
  460. Instance.new('HopperBin', PLAYER.Backpack).BinType = 'Hammer'
  461.  
  462. elseif v.Name == 'BOX' then
  463. Instance.new('SelectionBox', PLAYER.Character).Adornee = PLAYER.Character
  464.  
  465. elseif v.Name == 'SPHERE' then
  466. Instance.new('SelectionSphere', PLAYER.Character).Adornee = PLAYER.Character
  467.  
  468. elseif v.Name == 'EXPLODE' then
  469. Instance.new('Explosion', PLAYER.Character.Torso).Position = PLAYER.Character.Torso.Position
  470.  
  471. elseif v.Name == 'INVIS' then
  472. for i,v in pairs(PLAYER.Character:GetChildren()) do
  473. if v:IsA('Part') then
  474. if v.Name == 'HumanoidRootPart' then
  475. else
  476. v.Transparency = 1
  477. end
  478. end
  479. if v:IsA('Hat') then
  480. for a,b in pairs(v:GetChildren()) do
  481. if b.Name == 'Handle' then
  482. b.Transparency = 1
  483. end
  484. end
  485. end
  486. if PLAYER.Character.Head:FindFirstChild('face') then
  487. PLAYER.Character.Head.face.Transparency = 1
  488. end
  489. end
  490.  
  491. elseif v.Name == 'VIS' then
  492. for i,v in pairs(PLAYER.Character:GetChildren()) do
  493. if v:IsA('Part') then
  494. if v.Name == 'HumanoidRootPart' then
  495. else
  496. v.Transparency = 0
  497. end
  498. end
  499. if v:IsA('Hat') then
  500. for a,b in pairs(v:GetChildren()) do
  501. if b.Name == 'Handle' then
  502. b.Transparency = 0
  503. end
  504. end
  505. end
  506. if PLAYER.Character.Head:FindFirstChild('face') then
  507. PLAYER.Character.Head.face.Transparency = 0
  508. end
  509. end
  510.  
  511. elseif v.Name == 'PLUS_WS' then
  512. if PLAYER.Character:FindFirstChild('Humanoid') then
  513. PLAYER.Character.Humanoid.WalkSpeed = PLAYER.Character.Humanoid.WalkSpeed + 10
  514. end
  515.  
  516. elseif v.Name == 'SUB_WS' then
  517. if PLAYER.Character:FindFirstChild('Humanoid') then
  518. PLAYER.Character.Humanoid.WalkSpeed = PLAYER.Character.Humanoid.WalkSpeed - 10
  519. end
  520.  
  521. elseif v.Name == 'GHOST' then
  522. for i,v in pairs(PLAYER.Character:GetChildren()) do
  523. if v:IsA('Part') then
  524. if v.Name == 'HumanoidRootPart' then
  525. else
  526. v.Transparency = 0.5
  527. end
  528. end
  529. if v:IsA('Hat') then
  530. for a,b in pairs(v:GetChildren()) do
  531. if b.Name == 'Handle' then
  532. b.Transparency = 0.5
  533. end
  534. end
  535. end
  536. if PLAYER.Character.Head:FindFirstChild('face') then
  537. PLAYER.Character.Head.face.Transparency = 0.5
  538. end
  539. end
  540.  
  541. elseif v.Name == 'NOCLIP' then
  542. NOCLIP = true
  543. repeat
  544. ypcall(function()
  545. wait()
  546. if PLAYER.Character:FindFirstChild('Humanoid') then
  547. PLAYER.Character.Humanoid:ChangeState(11)
  548. end
  549. end)
  550. until NOCLIP == false
  551.  
  552. elseif v.Name == 'CLIP' then
  553. NOCLIP = false
  554.  
  555. elseif v.Name == 'GIANT' then
  556. SCALE(PLAYER.Character, 5)
  557.  
  558. elseif v.Name == 'MIDGET' then
  559. SCALE(PLAYER.Character, 0.5)
  560.  
  561. elseif v.Name == 'SIT' then
  562. if PLAYER.Character:FindFirstChild('Humanoid') then
  563. PLAYER.Character.Humanoid.Sit = true
  564. end
  565.  
  566. elseif v.Name == 'PLUS_JUMP' then
  567. if PLAYER.Character:FindFirstChild('Humanoid') then
  568. PLAYER.Character.Humanoid.JumpPower = PLAYER.Character.Humanoid.JumpPower + 50
  569. end
  570.  
  571. elseif v.Name == 'SUB_JUMP' then
  572. if PLAYER.Character:FindFirstChild('Humanoid') then
  573. PLAYER.Character.Humanoid.JumpPower = PLAYER.Character.Humanoid.JumpPower - 50
  574. end
  575.  
  576. elseif v.Name == 'GOD' then
  577. if PLAYER.Character:FindFirstChild('Humanoid') then
  578. PLAYER.Character.Humanoid.MaxHealth = math.huge
  579. wait()
  580. PLAYER.Character.Humanoid.Health = math.huge
  581. end
  582.  
  583. elseif v.Name == 'CAPE' then
  584. GIVE_CAPE()
  585.  
  586. elseif v.Name == 'PAPER' then
  587. Instance.new('BlockMesh', PLAYER.Character.Torso).Scale = Vector3.new(1,1,0)
  588. Instance.new('BlockMesh', PLAYER.Character['Left Arm']).Scale = Vector3.new(1,1,0)
  589. Instance.new('BlockMesh', PLAYER.Character['Right Arm']).Scale = Vector3.new(1,1,0)
  590. Instance.new('BlockMesh', PLAYER.Character['Left Leg']).Scale = Vector3.new(1,1,0)
  591. Instance.new('BlockMesh', PLAYER.Character['Right Leg']).Scale = Vector3.new(1,1,0)
  592.  
  593. elseif v.Name == 'SPHERE_B' then
  594. for i,v in pairs(PLAYER.Character:GetChildren()) do
  595. if v:IsA('Part') then
  596. if v.Name == 'HumanoidRootPart' then
  597. else
  598. Instance.new('SelectionSphere', v).Adornee = v
  599. v.Transparency = 1
  600. end
  601. end
  602. end
  603.  
  604. elseif v.Name == 'BOX_H' then
  605. for i,v in pairs(PLAYER.Character:GetChildren()) do
  606. if v:IsA('Hat') then
  607. v:remove()
  608. end
  609. end
  610.  
  611. PLAYER.Character.Head.Size = Vector3.new(2, 2, 2)
  612. PLAYER.Character.Head.Transparency = 1
  613. PLAYER.Character.Head.face.Transparency = 1
  614.  
  615. Instance.new('SelectionBox', PLAYER.Character.Head).Adornee = PLAYER.Character.Head
  616.  
  617. elseif v.Name == 'PLATFORM' then
  618. if PLAYER.Character:FindFirstChild('Humanoid') then
  619. PLAYER.Character.Humanoid.PlatformStand = true
  620. end
  621.  
  622. elseif v.Name == 'NO_LIMB' then
  623. for i,v in pairs(PLAYER.Character:GetChildren()) do
  624. if v.Name == 'Left Arm' or v.Name == 'Right Arm' or v.Name == 'Left Leg' or v.Name == 'Right Leg' then
  625. v:remove()
  626. end
  627. end
  628.  
  629. elseif v.Name == 'PSTOOLS' then
  630. PLAYER.PersonalServerRank = 255
  631.  
  632. elseif v.Name == 'MOON_GRAV' then
  633. if PLAYER.Character.Torso:FindFirstChild('BodyForce') then
  634. PLAYER.Character.Torso.BodyForce:remove()
  635. end
  636.  
  637. Instance.new('BodyForce', PLAYER.Character.Torso).Force = Vector3.new(0, 3500, 0)
  638.  
  639. elseif v.Name == 'CLONE' then
  640. PLAYER.Character.Archivable = true
  641. local PLAYER_CLONE = PLAYER.Character:Clone()
  642. PLAYER_CLONE.Parent = game.Workspace
  643. PLAYER_CLONE:MoveTo(PLAYER.Character.Torso.Position)
  644. PLAYER.Character.Archivable = false
  645.  
  646. elseif v.Name == 'PLUS_HEAD' then
  647. PLAYER.Character.Head.Mesh.Scale = PLAYER.Character.Head.Mesh.Scale + Vector3.new(1, 1, 1)
  648. PLAYER.Character.Head.Mesh.Offset = PLAYER.Character.Head.Mesh.Offset + Vector3.new(0, 0.5, 0)
  649.  
  650. elseif v.Name == 'SUB_HEAD' then
  651. PLAYER.Character.Head.Mesh.Scale = PLAYER.Character.Head.Mesh.Scale - Vector3.new(1, 1, 1)
  652. PLAYER.Character.Head.Mesh.Offset = PLAYER.Character.Head.Mesh.Offset - Vector3.new(0, 0.5,0)
  653.  
  654. elseif v.Name == 'DONG' then
  655. CREATE_DONG(PLAYER, 'Pastel brown', 'Pink', 'Pastel brown', 'Pastel brown')
  656.  
  657. elseif v.Name == 'GUEST' then
  658. PLAYER.CharacterAppearance = 'http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1'
  659. PLAYER.Character:BreakJoints()
  660.  
  661. elseif v.Name == 'NOOB' then
  662. PLAYER.CharacterAppearance = 'http://www.roblox.com/Asset/CharacterFetch.ashx?userId=0'
  663. PLAYER.Character:BreakJoints()
  664.  
  665. elseif v.Name == 'SHREK' then
  666. for i,v in pairs(PLAYER.Character:GetChildren()) do
  667. if v:IsA('Hat') or v:IsA('CharacterMesh') or v:IsA('Shirt') or v:IsA('Pants') or v:IsA('ShirtGraphic')then
  668. v:remove()
  669. end
  670. if v.Name == 'Head' or v.Name == 'Torso' then
  671. for a,b in pairs(v:GetChildren()) do
  672. if b:IsA('Decal') or b:IsA('SpecialMesh') then
  673. b:remove()
  674. end
  675. end
  676. end
  677. end
  678.  
  679. local SHREK_MESH = Instance.new('SpecialMesh', PLAYER.Character.Head)
  680. SHREK_MESH.MeshType = 'FileMesh'
  681. SHREK_MESH.MeshId = 'http://www.roblox.com/asset/?id=19999257'
  682. SHREK_MESH.Offset = Vector3.new(-0.1, 0.1, 0)
  683. SHREK_MESH.TextureId = 'http://www.roblox.com/asset/?id=156397869'
  684.  
  685. local SHREK_SHIRT = Instance.new('Shirt', PLAYER.Character)
  686. local SHREK_PANTS = Instance.new('Pants', PLAYER.Character)
  687.  
  688. SHREK_SHIRT.ShirtTemplate = 'rbxassetid://133078194'
  689. SHREK_PANTS.PantsTemplate = 'rbxassetid://133078204'
  690.  
  691. if PLAYER.Character:FindFirstChild('Body Colors') then
  692. PLAYER.Character['Body Colors'].HeadColor = BrickColor.new('White')
  693. PLAYER.Character['Body Colors'].LeftArmColor = BrickColor.new('Grime')
  694. PLAYER.Character['Body Colors'].LeftLegColor = BrickColor.new('Grime')
  695. PLAYER.Character['Body Colors'].RightArmColor = BrickColor.new('Grime')
  696. PLAYER.Character['Body Colors'].RightLegColor = BrickColor.new('Grime')
  697. PLAYER.Character['Body Colors'].TorsoColor = BrickColor.new('Grime')
  698. end
  699.  
  700. elseif v.Name == 'DUCK' then
  701. for i,v in pairs(PLAYER.Character:GetChildren()) do
  702. if v:IsA('Hat') or v:IsA('CharacterMesh') or v:IsA('Shirt') or v:IsA('Pants') or v:IsA('ShirtGraphic')then
  703. v:remove()
  704. end
  705. if v.Name == 'Head' or v.Name == 'Torso' then
  706. for a,b in pairs(v:GetChildren()) do
  707. if b:IsA('Decal') then
  708. b:remove()
  709. end
  710. end
  711. end
  712. if v:IsA('Part') then
  713. v.Transparency = 1
  714. end
  715. end
  716.  
  717. PLAYER.Character.Torso.Transparency = 0
  718.  
  719. local DUCK_MESH = Instance.new('SpecialMesh', PLAYER.Character.Torso)
  720. DUCK_MESH.MeshType = 'FileMesh'
  721. DUCK_MESH.MeshId = 'http://www.roblox.com/asset/?id=9419831'
  722. DUCK_MESH.TextureId = 'http://www.roblox.com/asset/?id=9419827'
  723. DUCK_MESH.Scale = Vector3.new(5, 5, 5)
  724.  
  725. elseif v.Name == 'TACO' then
  726. for i,v in pairs(PLAYER.Character:GetChildren()) do
  727. if v:IsA('Hat') or v:IsA('CharacterMesh') or v:IsA('Shirt') or v:IsA('Pants') or v:IsA('ShirtGraphic')then
  728. v:remove()
  729. end
  730. if v.Name == 'Head' or v.Name == 'Torso' then
  731. for a,b in pairs(v:GetChildren()) do
  732. if b:IsA('Decal') then
  733. b:remove()
  734. end
  735. end
  736. end
  737. if v:IsA('Part') then
  738. v.Transparency = 1
  739. end
  740. end
  741.  
  742. PLAYER.Character.Torso.Transparency = 0
  743.  
  744. local TACO_MESH = Instance.new('SpecialMesh', PLAYER.Character.Torso)
  745. TACO_MESH.MeshType = 'FileMesh'
  746. TACO_MESH.MeshId = 'http://www.roblox.com/asset/?id=14846869'
  747. TACO_MESH.Offset = Vector3.new(0, -0.8, 0)
  748. TACO_MESH.TextureId = 'http://www.roblox.com/asset/?id=14846834'
  749. TACO_MESH.Scale = Vector3.new(5, 5, 5)
  750.  
  751. elseif v.Name == 'GIRAFFE' then
  752. for i,v in pairs(PLAYER.Character:GetChildren()) do
  753. if v:IsA('Hat') or v:IsA('CharacterMesh') or v:IsA('Shirt') or v:IsA('Pants') or v:IsA('ShirtGraphic')then
  754. v:remove()
  755. end
  756. if v.Name == 'Head' or v.Name == 'Torso' then
  757. for a,b in pairs(v:GetChildren()) do
  758. if b:IsA('Decal') then
  759. b:remove()
  760. end
  761. end
  762. end
  763. if v:IsA('Part') then
  764. v.Transparency = 1
  765. end
  766. end
  767.  
  768. PLAYER.Character.Torso.Transparency = 0
  769.  
  770. local GIRAFFE_MESH = Instance.new('SpecialMesh', PLAYER.Character.Torso)
  771. GIRAFFE_MESH.MeshType = 'FileMesh'
  772. GIRAFFE_MESH.MeshId = 'http://www.roblox.com/asset/?id=268195899'
  773. GIRAFFE_MESH.Offset = Vector3.new(0, 2.2, 0)
  774. GIRAFFE_MESH.TextureId = 'http://www.roblox.com/asset/?id=268194962'
  775. GIRAFFE_MESH.Scale = Vector3.new(1.5, 1.5, 1.5)
  776. end
  777. end)
  778. end
  779.  
  780.  
  781.  
  782. --// SERVER PAGE
  783.  
  784. for i,v in pairs(PAGES_SERVER:GetChildren()) do
  785. v.MouseButton1Down:connect(function()
  786. if v.Name == 'FF' then
  787. for i,v in pairs(game.Players:GetChildren()) do
  788. Instance.new('ForceField', v.Character)
  789. end
  790.  
  791. elseif v.Name == 'FIRE' then
  792. for i,v in pairs(game.Players:GetChildren()) do
  793. for i,v in pairs(v.Character:GetChildren()) do
  794. if v:IsA('Part') then
  795. Instance.new('Fire', v)
  796. end
  797. end
  798. end
  799.  
  800. elseif v.Name == 'SPARKLES' then
  801. for i,v in pairs(game.Players:GetChildren()) do
  802. for i,v in pairs(v.Character:GetChildren()) do
  803. if v:IsA('Part') then
  804. Instance.new('Sparkles', v)
  805. end
  806. end
  807. end
  808.  
  809. elseif v.Name == 'SMOKE' then
  810. for i,v in pairs(game.Players:GetChildren()) do
  811. Instance.new('Smoke', v.Character.Torso)
  812. end
  813.  
  814. elseif v.Name == 'BTOOLS' then
  815. for i,v in pairs(game.Players:GetChildren()) do
  816. Instance.new('HopperBin', v.Backpack).BinType = 'Grab'
  817. Instance.new('HopperBin', v.Backpack).BinType = 'Clone'
  818. Instance.new('HopperBin', v.Backpack).BinType = 'Hammer'
  819. end
  820.  
  821. elseif v.Name == 'BOX' then
  822. for i,v in pairs(game.Players:GetChildren()) do
  823. Instance.new('SelectionBox', v.Character).Adornee = v.Character
  824. end
  825.  
  826. elseif v.Name == 'SPHERE' then
  827. for i,v in pairs(game.Players:GetChildren()) do
  828. Instance.new('SelectionSphere', v.Character).Adornee = v.Character
  829. end
  830.  
  831. elseif v.Name == 'EXPLODE' then
  832. for i,v in pairs(game.Players:GetChildren()) do
  833. Instance.new('Explosion', v.Character.Torso).Position = v.Character.Torso.Position
  834. end
  835.  
  836. elseif v.Name == 'INVIS' then
  837. for i,v in pairs(game.Players:GetChildren()) do
  838. for i,v in pairs(v.Character:GetChildren()) do
  839. if v:IsA('Part') then
  840. if v.Name == 'HumanoidRootPart' then
  841. else
  842. v.Transparency = 1
  843. end
  844. end
  845. if v:IsA('Hat') then
  846. for a,b in pairs(v:GetChildren()) do
  847. if b.Name == 'Handle' then
  848. b.Transparency = 1
  849. end
  850. end
  851. end
  852. end
  853. if v.Character.Head:FindFirstChild('face') then
  854. v.Character.Head.face.Transparency = 1
  855. end
  856. end
  857.  
  858. elseif v.Name == 'VIS' then
  859. for i,v in pairs(game.Players:GetChildren()) do
  860. for i,v in pairs(v.Character:GetChildren()) do
  861. if v:IsA('Part') then
  862. if v.Name == 'HumanoidRootPart' then
  863. else
  864. v.Transparency = 0
  865. end
  866. end
  867. if v:IsA('Hat') then
  868. for a,b in pairs(v:GetChildren()) do
  869. if b.Name == 'Handle' then
  870. b.Transparency = 0
  871. end
  872. end
  873. end
  874. end
  875. if v.Character.Head:FindFirstChild('face') then
  876. v.Character.Head.face.Transparency = 0
  877. end
  878. end
  879.  
  880. elseif v.Name == 'PLUS_WS' then
  881. for i,v in pairs(game.Players:GetChildren()) do
  882. if v.Character:FindFirstChild('Humanoid') then
  883. v.Character.Humanoid.WalkSpeed = v.Character.Humanoid.WalkSpeed + 10
  884. end
  885. end
  886.  
  887. elseif v.Name == 'SUB_WS' then
  888. for i,v in pairs(game.Players:GetChildren()) do
  889. if v.Character:FindFirstChild('Humanoid') then
  890. v.Character.Humanoid.WalkSpeed = v.Character.Humanoid.WalkSpeed - 10
  891. end
  892. end
  893.  
  894. elseif v.Name == 'GHOST' then
  895. for i,v in pairs(game.Players:GetChildren()) do
  896. for i,v in pairs(v.Character:GetChildren()) do
  897. if v:IsA('Part') then
  898. if v.Name == 'HumanoidRootPart' then
  899. else
  900. v.Transparency = 0.5
  901. end
  902. end
  903. if v:IsA('Hat') then
  904. for a,b in pairs(v:GetChildren()) do
  905. if b.Name == 'Handle' then
  906. b.Transparency = 0.5
  907. end
  908. end
  909. end
  910. end
  911. if v.Character.Head:FindFirstChild('face') then
  912. v.Character.Head.face.Transparency = 0.5
  913. end
  914. end
  915.  
  916. elseif v.Name == 'GIANT' then
  917. for i,v in pairs(game.Players:GetChildren()) do
  918. SCALE(v.Character, 5)
  919. end
  920.  
  921. elseif v.Name == 'MIDGET' then
  922. for i,v in pairs(game.Players:GetChildren()) do
  923. SCALE(v.Character, 0.5)
  924. end
  925.  
  926. elseif v.Name == 'SIT' then
  927. for i,v in pairs(game.Players:GetChildren()) do
  928. if v.Character:FindFirstChild('Humanoid') then
  929. v.Character.Humanoid.Sit = true
  930. end
  931.  
  932. end
  933.  
  934. elseif v.Name == 'JUMP' then
  935. for i,v in pairs(game.Players:GetChildren()) do
  936. if v.Character:FindFirstChild('Humanoid') then
  937. v.Character.Humanoid.Jump = true
  938. end
  939. end
  940.  
  941. elseif v.Name == 'GOD' then
  942. for i,v in pairs(game.Players:GetChildren()) do
  943. if v.Character:FindFirstChild('Humanoid') then
  944. v.Character.Humanoid.MaxHealth = math.huge
  945. wait()
  946. v.Character.Humanoid.Health = v.Character.Humanoid.MaxHealth
  947. end
  948. end
  949.  
  950. elseif v.Name == 'PLUS_HEAD' then
  951. for i,v in pairs(game.Players:GetChildren()) do
  952. v.Character.Head.Mesh.Scale = v.Character.Head.Mesh.Scale + Vector3.new(1, 1, 1)
  953. v.Character.Head.Mesh.Offset = v.Character.Head.Mesh.Offset + Vector3.new(0, 0.5, 0)
  954. end
  955.  
  956. elseif v.Name == 'SUB_HEAD' then
  957. for i,v in pairs(game.Players:GetChildren()) do
  958. v.Character.Head.Mesh.Scale = v.Character.Head.Mesh.Scale - Vector3.new(1, 1, 1)
  959. v.Character.Head.Mesh.Offset = v.Character.Head.Mesh.Offset - Vector3.new(0, 0.5, 0)
  960. end
  961.  
  962. elseif v.Name == 'DAY' then
  963. game.Lighting.TimeOfDay = 14
  964.  
  965. elseif v.Name == 'NIGHT' then
  966. game.Lighting.TimeOfDay = 24
  967.  
  968. elseif v.Name == 'FIX_LIGHTING' then
  969. game.Lighting.Ambient = Color3.new(0.5, 0.5, 0.5)
  970. game.Lighting.Brightness = 1
  971. game.Lighting.GlobalShadows = true
  972. game.Lighting.Outlines = false
  973. game.Lighting.TimeOfDay = 14
  974. game.Lighting.FogEnd = 100000
  975.  
  976. elseif v.Name == 'GHOST_PARTS' then
  977. local function GHOST(INSTANCE)
  978. for i,v in pairs(INSTANCE:GetChildren()) do
  979. if v:IsA('BasePart') then
  980. v.Transparency = 0.5
  981. end
  982. GHOST(v)
  983. end
  984. end
  985. GHOST(game.Workspace)
  986.  
  987. elseif v.Name == 'GLOW_PARTS' then
  988. local function GLOW(INSTANCE)
  989. for i,v in pairs(INSTANCE:GetChildren()) do
  990. if v:IsA('BasePart') then
  991. v.Material = 'Neon'
  992. end
  993. GLOW(v)
  994. end
  995. end
  996. GLOW(game.Workspace)
  997.  
  998. elseif v.Name == 'UNANCHOR' then
  999. local function UNANCHOR(INSTANCE)
  1000. for i,v in pairs(INSTANCE:GetChildren()) do
  1001. if v:IsA('BasePart') then
  1002. v.Anchored = false
  1003. end
  1004. UNANCHOR(v)
  1005. end
  1006. end
  1007. UNANCHOR(game.Workspace)
  1008.  
  1009. elseif v.Name == 'UNLOCK' then
  1010. local function UNLOCK(INSTANCE)
  1011. for i,v in pairs(INSTANCE:GetChildren()) do
  1012. if v:IsA('BasePart') then
  1013. v.Locked = false
  1014. end
  1015. UNLOCK(v)
  1016. end
  1017. end
  1018. UNLOCK(game.Workspace)
  1019.  
  1020. elseif v.Name == 'BOMB' then
  1021. for i,v in pairs(game.Players:GetChildren()) do
  1022. local BOMB = Instance.new('Part')
  1023. BOMB.Parent = game.Workspace
  1024. BOMB.Size = Vector3.new(2, 2, 2)
  1025. BOMB.Material = 'Neon'
  1026. BOMB.BrickColor = BrickColor.new('Bright red')
  1027. BOMB.Position = v.Character.Head.Position
  1028. BOMB.Shape = 'Ball'
  1029. BOMB.TopSurface = 'Smooth'
  1030. BOMB.BottomSurface = 'Smooth'
  1031. BOMB.Locked = true
  1032. wait(3)
  1033. local EXPLOSION = Instance.new('Explosion')
  1034. EXPLOSION.Parent = game.Workspace
  1035. EXPLOSION.Position = BOMB.Position
  1036. EXPLOSION.BlastRadius = 10
  1037. EXPLOSION.BlastPressure = 1000000
  1038. BOMB:remove()
  1039. end
  1040.  
  1041. elseif v.Name == 'PUNISH' then
  1042. for i,v in pairs(game.Players:GetChildren()) do
  1043. Instance.new('Folder', game.Lighting).Name = 'PUNISH_DATA'
  1044. if game.ServerStorage:FindFirstChild('PUNISH_DATA') then
  1045. v.Character.Parent = game.ServerStorage.PUNISH_DATA
  1046. end
  1047. end
  1048.  
  1049. elseif v.Name == 'UNPUNISH' then
  1050. if game.Lighting:FindFirstChild('PUNISH_DATA') then
  1051. for i,v in pairs(game.ServerStorage.PUNISH_DATA:GetChildren()) do
  1052. if v:IsA('Model') then
  1053. v.Parent = game.Workspace
  1054. end
  1055. end
  1056. game.ServerStorage.PUNISH_DATA:remove()
  1057. end
  1058. end
  1059. end)
  1060. end
  1061.  
  1062.  
  1063.  
  1064. --// TOYS PAGE
  1065.  
  1066. YourMom_DATA.ToysData.Guis:Clone().Parent = game.Lighting
  1067. YourMom_DATA.ToysData.BulletHolder:Clone().Parent = game.Workspace
  1068.  
  1069. for i,v in pairs(PAGES_TOYS:GetChildren()) do
  1070. v.MouseButton1Down:connect(function()
  1071. if v.Name == 'FLY_DUCK' then
  1072. loadstring(YourMom_DATA.ScriptData['Flying Duck'].Source)()
  1073.  
  1074. elseif v.Name == 'TELEKINESIS' then
  1075. loadstring(YourMom_DATA.ScriptData.Telekinesis.Source)()
  1076.  
  1077. elseif v.Name == 'BOMB_VEST' then
  1078. YourMom_DATA.ToysData.Detonator:Clone().Parent = PLAYER.Backpack
  1079. wait()
  1080. loadstring(YourMom_DATA.ToysData.VEST_SCRIPT.Source)()
  1081.  
  1082. elseif v.Name == 'RAINBOW_PATH' then
  1083. YourMom_DATA.ToysData['Rainbow Path']:Clone().Parent = PLAYER.Backpack
  1084.  
  1085. elseif v.Name == 'MINIGUN' then
  1086. YourMom_DATA.ToysData.M134:Clone().Parent = PLAYER.Backpack
  1087.  
  1088. elseif v.Name == 'JEEP' then
  1089. local JEEP = YourMom_DATA.ToysData.JEEP:Clone()
  1090. JEEP.Parent = game.Workspace
  1091. JEEP:MoveTo(PLAYER.Character.Torso.Position)
  1092. JEEP:MakeJoints()
  1093.  
  1094. elseif v.Name == 'ROCKET' then
  1095. YourMom_DATA.ToysData['Rocket Launcher']:Clone().Parent = PLAYER.Backpack
  1096.  
  1097. elseif v.Name == 'LASER_ARM' then
  1098. YourMom_DATA.ToysData.LaserArm:Clone().Parent = PLAYER.Backpack
  1099.  
  1100. elseif v.Name == 'ORBITAL' then
  1101. YourMom_DATA.ToysData['Orbital Strike']:Clone().Parent = PLAYER.Backpack
  1102.  
  1103. elseif v.Name == 'BAIT' then
  1104. loadstring(YourMom_DATA.ToysData.BAIT.Source)()
  1105.  
  1106. elseif v.Name == 'HUMANOID' then
  1107. loadstring(YourMom_DATA.ToysData.HUMANOID_REMOVE.Source)()
  1108.  
  1109. elseif v.Name == 'TROWEL' then
  1110. YourMom_DATA.ToysData.Trowel:Clone().Parent = PLAYER.Backpack
  1111.  
  1112. elseif v.Name == 'SWORD' then
  1113. YourMom_DATA.ToysData.Sword:Clone().Parent = PLAYER.Backpack
  1114.  
  1115. elseif v.Name =='50_CAL' then
  1116. YourMom_DATA.ToysData['Barrett .50Cal']:Clone().Parent = PLAYER.Backpack
  1117.  
  1118. elseif v.Name == 'R700' then
  1119. YourMom_DATA.ToysData.R700:Clone().Parent = PLAYER.Backpack
  1120.  
  1121. elseif v.Name == 'G36C' then
  1122. YourMom_DATA.ToysData.G36C:Clone().Parent = PLAYER.Backpack
  1123.  
  1124. elseif v.Name == 'L86_LSW' then
  1125. YourMom_DATA.ToysData['L86 LSW']:Clone().Parent = PLAYER.Backpack
  1126.  
  1127. elseif v.Name == 'M1014' then
  1128. YourMom_DATA.ToysData.M1014:Clone().Parent = PLAYER.Backpack
  1129.  
  1130. elseif v.Name == 'M124' then
  1131. YourMom_DATA.ToysData.M124:Clone().Parent = PLAYER.Backpack
  1132.  
  1133. elseif v.Name == 'M16' then
  1134. YourMom_DATA.ToysData.M16:Clone().Parent = PLAYER.Backpack
  1135.  
  1136. elseif v.Name == 'M4A1' then
  1137. YourMom_DATA.ToysData.M4A1:Clone().Parent = PLAYER.Backpack
  1138.  
  1139. elseif v.Name == 'SCAR_L' then
  1140. YourMom_DATA.ToysData['SCAR-L']:Clone().Parent = PLAYER.Backpack
  1141.  
  1142. elseif v.Name == 'TAR_21' then
  1143. YourMom_DATA.ToysData['TAR-21']:Clone().Parent = PLAYER.Backpack
  1144.  
  1145. elseif v.Name == 'M9' then
  1146. YourMom_DATA.ToysData.M9:Clone().Parent = PLAYER.Backpack
  1147. end
  1148. end)
  1149. end
  1150.  
  1151.  
  1152.  
  1153. --// PLAYERS PAGE
  1154.  
  1155. PLAYERS_LIST = PAGES_PLAYERS.PLAYERS_LIST
  1156. COMMANDS = PAGES_PLAYERS.COMMANDS
  1157.  
  1158. function LOAD_PLAYERS()
  1159. for i,v in pairs(PLAYERS_LIST:GetChildren()) do
  1160. v:remove()
  1161. end
  1162.  
  1163. local GET_PLAYERS = game.Players:GetPlayers()
  1164.  
  1165. for i = 1, #GET_PLAYERS do
  1166. local Y = 25
  1167. local POS = ((i * Y) - Y)
  1168.  
  1169. local CLONE = PAGES_PLAYERS.CLONE:Clone()
  1170. CLONE.Name = GET_PLAYERS[i].Name
  1171. CLONE.Parent = PLAYERS_LIST
  1172. CLONE.Text = GET_PLAYERS[i].Name
  1173. CLONE.Position = UDim2.new(0, 5, 0, POS + 5)
  1174. CLONE.Visible = true
  1175.  
  1176. PLAYERS_LIST.CanvasSize = UDim2.new(0, 0, 0, POS + 35)
  1177.  
  1178. CLONE.MouseButton1Down:connect(function()
  1179. COMMANDS.S_PLAYER.Value = CLONE.Text
  1180. PAGES_PLAYERS.PLAYER.Text = CLONE.Text
  1181. end)
  1182. end
  1183. end
  1184.  
  1185. LOAD_PLAYERS()
  1186.  
  1187. game.Players.PlayerAdded:connect(LOAD_PLAYERS)
  1188. game.Players.PlayerRemoving:connect(LOAD_PLAYERS)
  1189.  
  1190. for i,v in pairs(COMMANDS:GetChildren()) do
  1191. if v:IsA('TextButton') then
  1192. v.MouseButton1Down:connect(function()
  1193. if COMMANDS.S_PLAYER.Value == '' then
  1194. else
  1195. local S_PLAYER = game.Players[COMMANDS.S_PLAYER.Value]
  1196. local S_CHAR = S_PLAYER.Character
  1197.  
  1198. if v.Name == 'FF' then
  1199. Instance.new('ForceField', S_CHAR)
  1200.  
  1201. elseif v.Name == 'FIRE' then
  1202. for i,v in pairs(S_CHAR:GetChildren()) do
  1203. if v:IsA('Part') then
  1204. Instance.new('Fire', v)
  1205. end
  1206. end
  1207.  
  1208. elseif v.Name == 'SPARKLES' then
  1209. for i,v in pairs(S_CHAR:GetChildren()) do
  1210. if v:IsA('Part') then
  1211. Instance.new('Sparkles', v)
  1212. end
  1213. end
  1214.  
  1215. elseif v.Name == 'SMOKE' then
  1216. Instance.new('Smoke', S_CHAR.Torso)
  1217.  
  1218. elseif v.Name == 'BOX' then
  1219. Instance.new('SelectionBox', S_CHAR).Adornee = S_CHAR
  1220.  
  1221. elseif v.Name == 'SPHERE' then
  1222. Instance.new('SelectionSphere', S_CHAR).Adornee = S_CHAR
  1223.  
  1224. elseif v.Name == 'SIT' then
  1225. if S_CHAR:FindFirstChild('Humanoid') then
  1226. S_CHAR.Humanoid.Sit = true
  1227. end
  1228.  
  1229. elseif v.Name == 'JUMP' then
  1230. if S_CHAR:FindFirstChild('Humanoid') then
  1231. S_CHAR.Humanoid.Jump = true
  1232. end
  1233.  
  1234. elseif v.Name == 'BTOOLS' then
  1235. Instance.new('HopperBin', S_PLAYER.Backpack).BinType = 'Grab'
  1236. Instance.new('HopperBin', S_PLAYER.Backpack).BinType = 'Clone'
  1237. Instance.new('HopperBin', S_PLAYER.Backpack).BinType = 'Hammer'
  1238.  
  1239. elseif v.Name == 'SPAM' then
  1240. game.Chat:Chat(S_CHAR.Head, 'seth is a rely cool dood')
  1241. game.Chat:Chat(S_CHAR.Head, 'seth is a rely cool dood')
  1242. game.Chat:Chat(S_CHAR.Head, 'seth is a rely cool dood')
  1243.  
  1244. elseif v.Name == 'LAG' then
  1245. for i = 1, 10000 do
  1246. Instance.new('HopperBin', S_PLAYER.Backpack).Name = 'dood'
  1247. end
  1248.  
  1249. elseif v.Name == 'KICK' then
  1250. KICK(S_PLAYER)
  1251.  
  1252. elseif v.Name == 'BAN' then
  1253. BAN_PLAYER(S_PLAYER)
  1254.  
  1255. elseif v.Name == 'GOTO' then
  1256. PLAYER.Character.HumanoidRootPart.CFrame = S_CHAR.HumanoidRootPart.CFrame
  1257.  
  1258. elseif v.Name == 'BRING' then
  1259. S_CHAR.HumanoidRootPart.CFrame = PLAYER.Character.HumanoidRootPart.CFrame
  1260.  
  1261. elseif v.Name == 'KILL' then
  1262. S_CHAR:BreakJoints()
  1263.  
  1264. elseif v.Name == 'PLUS_WS' then
  1265. if S_CHAR:FindFirstChild('Humanoid') then
  1266. S_CHAR.Humanoid.WalkSpeed = S_CHAR.Humanoid.WalkSpeed + 10
  1267. end
  1268.  
  1269. elseif v.Name == 'SUB_WS' then
  1270. if S_CHAR:FindFirstChild('Humanoid') then
  1271. S_CHAR.Humanoid.WalkSpeed = S_CHAR.Humanoid.WalkSpeed - 10
  1272. end
  1273.  
  1274. elseif v.Name == 'GIANT' then
  1275. SCALE(S_CHAR, 5)
  1276.  
  1277. elseif v.Name == 'MIDGET' then
  1278. SCALE(S_CHAR, 0.5)
  1279.  
  1280. elseif v.Name == 'SHUTDOWN' then
  1281. KICK(S_PLAYER)
  1282. end
  1283. end
  1284. end)
  1285. end
  1286. end
  1287.  
  1288.  
  1289.  
  1290. --// EXPLORER PAGE
  1291.  
  1292. ypcall(function()
  1293. loadstring(PAGES_EXPLORER.Holder.ExplorerPanel.LocalScript.Source)()
  1294. end)
  1295.  
  1296. ypcall(function()
  1297. loadstring(PAGES_EXPLORER.Holder.PropertiesPanel.Properties.Source)()
  1298. end)
  1299.  
  1300.  
  1301.  
  1302. --// SOUND PAGE
  1303.  
  1304. SOUND_LOOPED = false
  1305.  
  1306. PAGES_SOUND.PLAY.MouseButton1Down:connect(function()
  1307. if PAGES_SOUND.INPUT_ID.Text ~= 'Input Sound ID' then
  1308. if PAGES_SOUND.INPUT_VOL.Text == 'Volume' then
  1309. PAGES_SOUND.INPUT_VOL.Text = 0.5
  1310. end
  1311.  
  1312. if PAGES_SOUND.INPUT_PIT.Text == 'Pitch' then
  1313. PAGES_SOUND.INPUT_PIT.Text = 1
  1314. end
  1315.  
  1316. for i,v in pairs(game.Workspace:GetChildren()) do
  1317. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1318. for a,b in pairs(v:GetChildren()) do
  1319. if b:IsA('Sound') then
  1320. v:remove()
  1321. end
  1322. end
  1323. end
  1324. end
  1325.  
  1326. local SOUND_HOLDER = Instance.new('Model', game.Workspace)
  1327. local SOUND_MAIN = Instance.new('Sound', SOUND_HOLDER)
  1328. local USER = Instance.new('StringValue', SOUND_HOLDER)
  1329.  
  1330. SOUND_HOLDER.Name = 'YourMom_2_HOLDER'
  1331.  
  1332. SOUND_MAIN.Name = 'YourMom_2_SOUND'
  1333. SOUND_MAIN.Pitch = PAGES_SOUND.INPUT_PIT.Text
  1334. SOUND_MAIN.SoundId = 'rbxassetid://' .. PAGES_SOUND.INPUT_ID.Text
  1335. SOUND_MAIN.Volume = PAGES_SOUND.INPUT_VOL.Text
  1336. SOUND_MAIN.Looped = SOUND_LOOPED
  1337. SOUND_MAIN:Play()
  1338.  
  1339. USER.Name = 'USER'
  1340. USER.Value = PLAYER.Name
  1341.  
  1342. PAGES_SOUND.CURRENT_ID.Text = ' Current Sound : ' .. PAGES_SOUND.INPUT_ID.Text
  1343. end
  1344. end)
  1345.  
  1346. game['Run Service'].RenderStepped:connect(function()
  1347. for i,v in pairs(game.Workspace:GetChildren()) do
  1348. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1349. for a,b in pairs(v:GetChildren()) do
  1350. if b.Name == 'USER' and b:IsA('StringValue') then
  1351. if b.Value == PLAYER.Name then
  1352. for c,d in pairs(v:GetChildren()) do
  1353. if d.Name == 'YourMom_2_SOUND' and d:IsA('Sound') then
  1354. PAGES_SOUND.PLAYER.TIME.Size = UDim2.new(d.TimePosition/d.TimeLength, 0, 1, 0)
  1355. end
  1356. end
  1357. end
  1358. end
  1359. end
  1360. end
  1361. end
  1362. end)
  1363.  
  1364. for i,v in pairs(PAGES_SOUND:GetChildren()) do
  1365. if v:IsA('TextButton') then
  1366. v.MouseButton1Down:connect(function()
  1367. if v.Name == 'RESUME' then
  1368. for i,v in pairs(game.Workspace:GetChildren()) do
  1369. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1370. for a,b in pairs(v:GetChildren()) do
  1371. if b.Name == 'USER' and b:IsA('StringValue') then
  1372. if b.Value == PLAYER.Name then
  1373. for c,d in pairs(v:GetChildren()) do
  1374. if d:IsA('Sound') then
  1375. d:Resume()
  1376. end
  1377. end
  1378. end
  1379. end
  1380. end
  1381. end
  1382. end
  1383.  
  1384. elseif v.Name == 'PAUSE' then
  1385. for i,v in pairs(game.Workspace:GetChildren()) do
  1386. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1387. for a,b in pairs(v:GetChildren()) do
  1388. if b.Name == 'USER' and b:IsA('StringValue') then
  1389. if b.Value == PLAYER.Name then
  1390. for c,d in pairs(v:GetChildren()) do
  1391. if d:IsA('Sound') then
  1392. d:Pause()
  1393. end
  1394. end
  1395. end
  1396. end
  1397. end
  1398. end
  1399. end
  1400.  
  1401. elseif v.Name == 'LOOPED' then
  1402. if SOUND_LOOPED == false then
  1403. for i,v in pairs(game.Workspace:GetChildren()) do
  1404. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1405. for a,b in pairs(v:GetChildren()) do
  1406. if b.Name == 'USER' and b:IsA('StringValue') then
  1407. if b.Value == PLAYER.Name then
  1408. for c,d in pairs(v:GetChildren()) do
  1409. if d:IsA('Sound') then
  1410. d.Looped = true
  1411. end
  1412. end
  1413. end
  1414. end
  1415. end
  1416. end
  1417. end
  1418. PAGES_SOUND.LOOPED.Text = 'Looped : true'
  1419. SOUND_LOOPED = true
  1420. else
  1421. for i,v in pairs(game.Workspace:GetChildren()) do
  1422. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1423. for a,b in pairs(v:GetChildren()) do
  1424. if b.Name == 'USER' and b:IsA('StringValue') then
  1425. if b.Value == PLAYER.Name then
  1426. for c,d in pairs(v:GetChildren()) do
  1427. if d:IsA('Sound') then
  1428. d.Looped = false
  1429. end
  1430. end
  1431. end
  1432. end
  1433. end
  1434. end
  1435. end
  1436. PAGES_SOUND.LOOPED.Text = 'Looped : false'
  1437. SOUND_LOOPED = false
  1438. end
  1439.  
  1440. elseif v.Name == 'STOP' then
  1441. for i,v in pairs(game.Workspace:GetChildren()) do
  1442. if v.Name == 'YourMom_2_HOLDER' and v:IsA('Model') then
  1443. for a,b in pairs(v:GetChildren()) do
  1444. if b.Name == 'USER' and b:IsA('StringValue') then
  1445. if b.Value == PLAYER.Name then
  1446. for c,d in pairs(v:GetChildren()) do
  1447. if d:IsA('Sound') then
  1448. v:remove()
  1449. end
  1450. end
  1451. end
  1452. end
  1453. end
  1454. end
  1455. end
  1456. end
  1457. end)
  1458. end
  1459. end
  1460.  
  1461.  
  1462.  
  1463. --// SCRIPTS PAGE
  1464.  
  1465. SCRIPTS_DATA = PAGES_SCRIPTS.SCRIPTS_DATA
  1466. SCRIPTS_MOVE = PAGES_SCRIPTS.SCRIPTS_DATA.SCRIPTS_MOVE
  1467.  
  1468. SEARCH_POS = YourMom_DATA.ScriptPos
  1469. SEARCH_ID = SCRIPTS_DATA.SEARCH
  1470.  
  1471. MOVE_LEFT = PAGES_SCRIPTS.MOVE_LEFT
  1472. MOVE_RIGHT = PAGES_SCRIPTS.MOVE_RIGHT
  1473.  
  1474. CURRENT_ID = 1
  1475. TOTAL_ID = 0
  1476. CURRENT_POS = 130
  1477.  
  1478. CURRENT_SCRIPTS_ID = 0
  1479. CURRENT_SCRIPTS_POS = 0
  1480.  
  1481. for i,v in pairs(YourMom_DATA.ScriptData:GetChildren()) do
  1482. TOTAL_ID = TOTAL_ID + 1
  1483. CURRENT_SCRIPTS_ID = CURRENT_SCRIPTS_ID + 1
  1484. CURRENT_SCRIPTS_POS = CURRENT_SCRIPTS_POS + 130
  1485. local CLONE_SCRIPTS = SCRIPTS_MOVE['0']:Clone()
  1486. CLONE_SCRIPTS.Parent = SCRIPTS_MOVE
  1487. CLONE_SCRIPTS.Name = CURRENT_SCRIPTS_ID
  1488. CLONE_SCRIPTS.ID.Value = CURRENT_SCRIPTS_ID
  1489. CLONE_SCRIPTS.NAME.Text = v.Name
  1490. CLONE_SCRIPTS.SHOW_ID.Text = 'ID : ' .. CURRENT_SCRIPTS_ID
  1491. CLONE_SCRIPTS.Position = CLONE_SCRIPTS.Position + UDim2.new(0, CURRENT_SCRIPTS_POS, 0, 0)
  1492. CLONE_SCRIPTS.Visible = true
  1493.  
  1494. CLONE_SCRIPTS.RUN.MouseButton1Down:connect(function()
  1495. if v:IsA('LocalScript') then
  1496. local CLONE_SCRIPT = v:Clone()
  1497. CLONE_SCRIPT.Disabled = true
  1498. CLONE_SCRIPT.Parent = PLAYER.PlayerGui
  1499. wait()
  1500. CLONE_SCRIPT.Disabled = false
  1501. end
  1502. end)
  1503. end
  1504.  
  1505. MOVE_LEFT.MouseButton1Down:connect(function()
  1506. if CURRENT_ID == 1 then
  1507. if SCRIPTS_MOVE:FindFirstChild(TOTAL_ID) then
  1508. if SEARCH_POS:FindFirstChild(TOTAL_ID) then
  1509. SCRIPTS_MOVE:TweenPosition(UDim2.new(0, SEARCH_POS[TOTAL_ID].Value, 0, 0), 'Out', 'Quad', 0.2)
  1510. end
  1511. end
  1512. CURRENT_ID = TOTAL_ID
  1513. else
  1514. CURRENT_POS = CURRENT_POS + 130
  1515. SCRIPTS_MOVE:TweenPosition(UDim2.new(0, CURRENT_POS, 0, 0), 'Out', 'Quad', 0.2)
  1516. CURRENT_ID = CURRENT_ID - 1
  1517. end
  1518. end)
  1519.  
  1520. MOVE_RIGHT.MouseButton1Down:connect(function()
  1521. if CURRENT_ID == TOTAL_ID then
  1522. SCRIPTS_MOVE:TweenPosition(UDim2.new(0, SEARCH_POS['1'].Value ,0, 0), 'Out', 'Quad', 0.2)
  1523. CURRENT_ID = 1
  1524. else
  1525. CURRENT_POS = CURRENT_POS - 130
  1526. SCRIPTS_MOVE:TweenPosition(UDim2.new(0, CURRENT_POS, 0, 0), 'Out', 'Quad', 0.2)
  1527. CURRENT_ID = CURRENT_ID + 1
  1528. end
  1529. end)
  1530.  
  1531. SEARCH_ID.FocusLost:connect(function()
  1532. for i,v in pairs(SCRIPTS_MOVE:GetChildren()) do
  1533. if v.NAME.Text == SEARCH_ID.Text then
  1534. CURRENT_POS = SEARCH_POS[v.Name].Value
  1535. SCRIPTS_MOVE:TweenPosition(UDim2.new(0, SEARCH_POS[v.Name].Value, 0, 0), 'Out', 'Quad', 0.2)
  1536. CURRENT_ID = v.Name
  1537. end
  1538. end
  1539.  
  1540. if SCRIPTS_MOVE:FindFirstChild(SEARCH_ID.Text) then
  1541. if SEARCH_POS:FindFirstChild(SEARCH_ID.Text) then
  1542. CURRENT_POS = SEARCH_POS[SEARCH_ID.Text].Value
  1543. SCRIPTS_MOVE:TweenPosition(UDim2.new(0, SEARCH_POS[SEARCH_ID.Text].Value, 0, 0), 'Out', 'Quad', 0.2)
  1544. CURRENT_ID = SEARCH_ID.Text
  1545. end
  1546. end
  1547. end)
  1548.  
  1549.  
  1550.  
  1551. --// MISC PAGE
  1552.  
  1553. TABS_HAT = PAGES_MISC.TABS.HAT
  1554. TABS_GEAR = PAGES_MISC.TABS.GEAR
  1555. TABS_DONG = PAGES_MISC.TABS.DONG
  1556. TABS_FE = PAGES_MISC.TABS.FE
  1557. TABS_MEME = PAGES_MISC.TABS.MEME
  1558.  
  1559. PAGES_HAT = PAGES_MISC.PAGES.HAT_GIVER
  1560. PAGES_GEAR = PAGES_MISC.PAGES.GEAR_GIVER
  1561. PAGES_DONG = PAGES_MISC.PAGES.DONG_EDIT
  1562. PAGES_FE = PAGES_MISC.PAGES.FE
  1563. PAGES_MEME = PAGES_MISC.PAGES.MEME_GIVER
  1564.  
  1565.  
  1566.  
  1567. PAGES_DONG.CREATE.MouseButton1Down:connect(function()
  1568. for i,v in pairs(PLAYER.Character:GetChildren()) do
  1569. if v.Name == 'DONG' and v:IsA('Model') then
  1570. v:remove()
  1571. end
  1572. end
  1573. CREATE_DONG(PLAYER, PAGES_DONG.SHAFT_COLOR.COLOR.Value, PAGES_DONG.TIP_COLOR.COLOR.Value, PAGES_DONG.L_NUT_COLOR.COLOR.Value, PAGES_DONG.R_NUT_COLOR.COLOR.Value)
  1574. end)
  1575.  
  1576. PAGES_DONG.REMOVE.MouseButton1Down:connect(function()
  1577. for i,v in pairs(PLAYER.Character:GetChildren()) do
  1578. if v.Name == 'DONG' and v:IsA('Model') then
  1579. v:remove()
  1580. end
  1581. end
  1582. end)
  1583.  
  1584. for i,v in pairs(PAGES_DONG.TIP_COLORS:GetChildren()) do
  1585. v.MouseButton1Down:connect(function()
  1586. PAGES_DONG.TIP_COLOR.BackgroundColor = BrickColor.new(v.COLOR.Value)
  1587. PAGES_DONG.TIP_COLOR.COLOR.Value = v.COLOR.Value
  1588. end)
  1589. end
  1590.  
  1591. for i,v in pairs(PAGES_DONG.SHAFT_COLORS:GetChildren()) do
  1592. v.MouseButton1Down:connect(function()
  1593. PAGES_DONG.SHAFT_COLOR.BackgroundColor = BrickColor.new(v.COLOR.Value)
  1594. PAGES_DONG.SHAFT_COLOR.COLOR.Value = v.COLOR.Value
  1595. end)
  1596. end
  1597.  
  1598. for i,v in pairs(PAGES_DONG.L_NUT_COLORS:GetChildren()) do
  1599. v.MouseButton1Down:connect(function()
  1600. PAGES_DONG.L_NUT_COLOR.BackgroundColor = BrickColor.new(v.COLOR.Value)
  1601. PAGES_DONG.L_NUT_COLOR.COLOR.Value = v.COLOR.Value
  1602. end)
  1603. end
  1604.  
  1605. for i,v in pairs(PAGES_DONG.R_NUT_COLORS:GetChildren()) do
  1606. v.MouseButton1Down:connect(function()
  1607. PAGES_DONG.R_NUT_COLOR.BackgroundColor = BrickColor.new(v.COLOR.Value)
  1608. PAGES_DONG.R_NUT_COLOR.COLOR.Value = v.COLOR.Value
  1609. end)
  1610. end
  1611.  
  1612. for i,v in pairs(PAGES_DONG:GetChildren()) do
  1613. if v:IsA('TextButton') then
  1614. v.MouseButton1Down:connect(function()
  1615. if v.Name == 'WHITE_DONG' then
  1616. for i,v in pairs(PAGES_DONG[v.Name]:GetChildren()) do
  1617. for a,b in pairs(PAGES_DONG:GetChildren()) do
  1618. if v.Name == b.Name then
  1619. b.BackgroundColor = BrickColor.new(v.Value)
  1620. b.COLOR.Value = v.Value
  1621. end
  1622. end
  1623. end
  1624.  
  1625. elseif v.Name == 'BROWN_DONG' then
  1626. for i,v in pairs(PAGES_DONG[v.Name]:GetChildren()) do
  1627. for a,b in pairs(PAGES_DONG:GetChildren()) do
  1628. if v.Name == b.Name then
  1629. b.BackgroundColor = BrickColor.new(v.Value)
  1630. b.COLOR.Value = v.Value
  1631. end
  1632. end
  1633. end
  1634.  
  1635. elseif v.Name == 'ASIAN_DONG' then
  1636. for i,v in pairs(PAGES_DONG[v.Name]:GetChildren()) do
  1637. for a,b in pairs(PAGES_DONG:GetChildren()) do
  1638. if v.Name == b.Name then
  1639. b.BackgroundColor = BrickColor.new(v.Value)
  1640. b.COLOR.Value = v.Value
  1641. end
  1642. end
  1643. end
  1644.  
  1645. elseif v.Name == 'ALIEN_DONG' then
  1646. for i,v in pairs(PAGES_DONG[v.Name]:GetChildren()) do
  1647. for a,b in pairs(PAGES_DONG:GetChildren()) do
  1648. if v.Name == b.Name then
  1649. b.BackgroundColor = BrickColor.new(v.Value)
  1650. b.COLOR.Value = v.Value
  1651. end
  1652. end
  1653. end
  1654. end
  1655. end)
  1656. end
  1657. end
  1658.  
  1659.  
  1660.  
  1661. --// BAN DATA PAGE
  1662.  
  1663. local BAN_POS = UDim2.new(0, 0, 0, -30)
  1664.  
  1665. for i,v in pairs(BANNED_PLAYERS) do
  1666. local BANNED = PAGES_BAN.CLONE:Clone()
  1667. BANNED.Parent = PAGES_BAN.BAN_LIST
  1668.  
  1669. PAGES_BAN.BAN_LIST.CanvasSize = PAGES_BAN.BAN_LIST.CanvasSize + UDim2.new(0, 0, 0, 30)
  1670.  
  1671. BANNED.NAME.Value = v.NAME
  1672. BANNED.USER_ID.Value = v.UID
  1673.  
  1674. BANNED.SHOW_NAME.Text = ' NAME : ' .. v.NAME
  1675. BANNED.SHOW_UID.Text = ' USER ID : ' .. v.UID
  1676.  
  1677. BANNED.Position = BAN_POS + UDim2.new(0, 0, 0, 30)
  1678. BANNED.Visible = true
  1679.  
  1680. BAN_POS = BAN_POS + UDim2.new(0, 0, 0, 30)
  1681.  
  1682. BANNED.REMOVE.MouseButton1Down:connect(function()
  1683. for i,v in pairs(BANNED_PLAYERS) do
  1684. if BANNED_PLAYERS[i].NAME == BANNED.NAME.Value or BANNED_PLAYERS[i].UID == BANNED.USER_ID.Value then
  1685. table.remove(BANNED_PLAYERS, i)
  1686. end
  1687. end
  1688. BANNED:remove()
  1689.  
  1690. PAGES_BAN.BAN_LIST.CanvasSize = PAGES_BAN.BAN_LIST.CanvasSize - UDim2.new(0, 0, 0, 30)
  1691. for i,v in pairs(PAGES_BAN.BAN_LIST:GetChildren()) do
  1692. v.Position = v.Position - UDim2.new(0, 0, 0, 30)
  1693. end
  1694. end)
  1695. end
  1696.  
  1697. PAGES_BAN.BAN_LIST.CanvasSize = PAGES_BAN.BAN_LIST.CanvasSize + UDim2.new(0, 0, 0, 15)
  1698.  
  1699.  
  1700.  
  1701. --// SETTINGS PAGE
  1702.  
  1703. if FILTERING_ENABLED == false then
  1704. PAGES_SETTINGS.FE.Text = ' FilteringEnabled : false'
  1705. else
  1706. PAGES_SETTINGS.FE.Text = ' FilteringEnabled : true'
  1707. end
  1708.  
  1709. PAGES_SETTINGS.PLACE_ID.Text = ' Place ID : ' .. PLACE_ID
  1710. PAGES_SETTINGS.CREATOR_ID.Text = ' Creator ID : ' .. CREATOR_ID
  1711. PAGES_SETTINGS.MAX_PLAYERS.Text = ' Max Players : ' .. MAX_PLAYERS
  1712. PAGES_SETTINGS.CURRENT_PLAYERS.Text = ' Current Players : ' .. CURRENT_PLAYERS
  1713.  
  1714. if OUTLINES == false then
  1715. PAGES_SETTINGS.OUTLINES.Text = ' Outlines : false'
  1716. else
  1717. PAGES_SETTINGS.OUTLINES.Text = ' Outlines : true'
  1718. end
  1719.  
  1720. if GLOBAL_SHADOWS == false then
  1721. PAGES_SETTINGS.GLOBAL_SHADOWS.Text = ' GlobalShadows : false'
  1722. else
  1723. PAGES_SETTINGS.GLOBAL_SHADOWS.Text = ' GlobalShadows : true'
  1724. end
  1725.  
  1726. if SERVER_LOCKED == false then
  1727. PAGES_SETTINGS.SERVER_LOCKED.Text = ' Server Locked : false'
  1728. else
  1729. PAGES_SETTINGS.SERVER_LOCKED.Text = ' Server Locked : true'
  1730. end
  1731.  
  1732. if _G.COMMAND_BAR == false then
  1733. PAGES_SETTINGS.CMD_BAR.Text = ' Command Bar : false'
  1734. else
  1735. PAGES_SETTINGS.CMD_BAR.Text = ' Command Bar : true'
  1736. end
  1737.  
  1738. if ANTI_EXPLOIT == false then
  1739. PAGES_SETTINGS.ANTI_EXPLOIT.Text = ' Anti-Exploit : false'
  1740. else
  1741. PAGES_SETTINGS.ANTI_EXPLOIT.Text = ' Anti-Exploit : true'
  1742. end
  1743.  
  1744. PAGES_SETTINGS.OUTLINES.MouseButton1Down:connect(function()
  1745. if OUTLINES == false then
  1746. game.Lighting.Outlines = true
  1747. OUTLINES = true
  1748. PAGES_SETTINGS.OUTLINES.Text = ' Outlines : true'
  1749. else
  1750. game.Lighting.Outlines = false
  1751. OUTLINES = false
  1752. PAGES_SETTINGS.OUTLINES.Text = ' Outlines : false'
  1753. end
  1754. end)
  1755.  
  1756. PAGES_SETTINGS.GLOBAL_SHADOWS.MouseButton1Down:connect(function()
  1757. if GLOBAL_SHADOWS == false then
  1758. game.Lighting.GlobalShadows = true
  1759. GLOBAL_SHADOWS = true
  1760. PAGES_SETTINGS.GLOBAL_SHADOWS.Text = ' GlobalShadows : true'
  1761. else
  1762. game.Lighting.GlobalShadows = false
  1763. GLOBAL_SHADOWS = false
  1764. PAGES_SETTINGS.GLOBAL_SHADOWS.Text = ' GlobalShadows : false'
  1765. end
  1766. end)
  1767.  
  1768. PAGES_SETTINGS.SERVER_LOCKED.MouseButton1Down:connect(function()
  1769. if SERVER_LOCKED == false then
  1770. SERVER_LOCKED = true
  1771. PAGES_SETTINGS.SERVER_LOCKED.Text = ' Server Locked : true'
  1772. else
  1773. SERVER_LOCKED = false
  1774. PAGES_SETTINGS.SERVER_LOCKED.Text = ' Server Locked : false'
  1775. end
  1776. end)
  1777.  
  1778. PAGES_SETTINGS.CMD_BAR.MouseButton1Down:connect(function()
  1779. if _G.COMMAND_BAR == false then
  1780. _G.COMMAND_BAR = true
  1781. PAGES_SETTINGS.CMD_BAR.Text = ' Command Bar : true'
  1782. else
  1783. _G.COMMAND_BAR = false
  1784. PAGES_SETTINGS.CMD_BAR.Text = ' Command Bar : false'
  1785. end
  1786. end)
  1787.  
  1788. PAGES_SETTINGS.ANTI_EXPLOIT.MouseButton1Down:connect(function()
  1789. if ANTI_EXPLOIT == false then
  1790. ANTI_EXPLOIT = true
  1791. PAGES_SETTINGS.ANTI_EXPLOIT.Text = ' Anti-Exploit : true'
  1792. else
  1793. ANTI_EXPLOIT = false
  1794. PAGES_SETTINGS.ANTI_EXPLOIT.Text = ' Anti-Exploit : false'
  1795. end
  1796. end)
  1797.  
  1798.  
  1799.  
  1800. --// EXTRAS
  1801.  
  1802. game.Players.PlayerAdded:connect(function(PLAYER_ADDED)
  1803. CURRENT_PLAYERS = game.Players.NumPlayers
  1804. wait()
  1805. PAGES_SETTINGS.CURRENT_PLAYERS.Text = ' Current Players : ' .. CURRENT_PLAYERS
  1806.  
  1807. if SERVER_LOCKED == true then
  1808. KICK(PLAYER_ADDED)
  1809. end
  1810. end)
  1811.  
  1812. game.Players.PlayerRemoving:connect(function(PLAYER_REMOVED)
  1813. CURRENT_PLAYERS = game.Players.NumPlayers
  1814. wait()
  1815. PAGES_SETTINGS.CURRENT_PLAYERS.Text = ' Current Players : ' .. CURRENT_PLAYERS
  1816. end)
  1817.  
  1818. game.CoreGui.ChildAdded:connect(function(ADDED)
  1819. if ADDED.Name == 'Banned' and ADDED:IsA('Folder') then
  1820. ADDED:remove()
  1821. end
  1822. end)
  1823.  
  1824. for i,v in pairs(game.CoreGui:GetChildren()) do
  1825. if v.Name == 'Banned' and v:IsA('Folder') then
  1826. v:remove()
  1827. end
  1828. end
  1829.  
  1830. wait()
  1831.  
  1832. OPEN:TweenPosition(UDim2.new(0, 0, 1, -50), 'Out', 'Quad', 0.5)
Add Comment
Please, Sign In to add comment