Advertisement
RyanDaCoder

YOURMOM.exe

Nov 26th, 2016
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.25 KB | None | 0 0
  1. game:GetObjects('http://www.roblox.com/asset/?id=288994927')[1].Parent = game.CoreGui
  2.  
  3. game.CoreGui.YourMom.GUI.Visible = false
  4.  
  5. wait(0.1)
  6.  
  7. Player = game.Players.LocalPlayer
  8. Mouse = Player:GetMouse()
  9.  
  10. local YourMom = game.CoreGui.YourMom
  11. local Open = YourMom.Open
  12.  
  13. Open:TweenPosition(UDim2.new(0, 0, 0, 250), 'Out', 'Quad', 0.5, true)
  14.  
  15. local GUI = YourMom.GUI
  16. local Exit = GUI.Exit
  17. local Tabs = GUI.Tabs
  18. local InTabs = GUI.InTabs
  19.  
  20. local Selected = GUI.Selected
  21.  
  22. local Server = Tabs.Server
  23. local LocalPlayer = Tabs.LocalPlayer
  24. local Toys = Tabs.Toys
  25. local Players = Tabs.Players
  26. local Settings = Tabs.Settings
  27.  
  28. local ServerPage = InTabs.Server
  29. local ServerPage1 = InTabs.Server.Page1
  30. local ServerPage2 = InTabs.Server.Page2
  31.  
  32. local LocalPlayerPage = InTabs.LocalPlayer
  33. local LocalPlayerPage1 = InTabs.LocalPlayer.Page1
  34. local LocalPlayerPage2 = InTabs.LocalPlayer.Page2
  35.  
  36. local ToysPage1 = InTabs.Toys
  37.  
  38. local PlayersPage = InTabs.Players
  39.  
  40. local HatsPage = InTabs.Hats
  41. local InHatsPage = HatsPage.InHatsPage
  42.  
  43. local SettingsPage = InTabs.Settings
  44.  
  45. --Page Toggles--
  46.  
  47. local LocalPlayerPageToggle = InTabs.LocalPlayer.PageToggle
  48.  
  49. local LocalPlayerPage1Toggle = InTabs.LocalPlayer.PageToggle.Page1
  50. local LocalPlayerPage2Toggle = InTabs.LocalPlayer.PageToggle.Page2
  51.  
  52.  
  53. local ServerPageToggle = InTabs.Server.PageToggle
  54.  
  55. local ServerPage1Toggle = InTabs.Server.PageToggle.Page1
  56. local ServerPage2Toggle = InTabs.Server.PageToggle.Page2
  57.  
  58. GUI.Position = UDim2.new(0, 550, 0, 1000)
  59.  
  60. -- DATA --
  61.  
  62. local DATA = game:GetObjects('http://www.roblox.com/asset/?id=291560220')[1]
  63. DATA.Parent = game.ContextActionService
  64.  
  65. local GunGui = DATA.Guis:Clone()
  66. GunGui.Parent = game.Lighting
  67.  
  68. --Outlines--
  69.  
  70. if game.Lighting.Outlines == true then
  71.  
  72. SettingsPage.Set.OutlinesTrue.Visible = true
  73.  
  74. SettingsPage.Set.OutlinesFalse.Visible = false
  75.  
  76. end
  77.  
  78. if game.Lighting.Outlines == false then
  79.  
  80. SettingsPage.Set.OutlinesTrue.Visible = false
  81.  
  82. SettingsPage.Set.OutlinesFalse.Visible = true
  83.  
  84. end
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96. --Visble Settings--
  97.  
  98. Open.MouseButton1Down:connect(function ()
  99.  
  100. Open:TweenPosition(UDim2.new(0, -50, 0, 250), 'Out', 'Quad', 0.5, true)
  101.  
  102. GUI:TweenPosition(UDim2.new(0, 550, 0, 250), 'Out', 'Quad', 0.5, true)
  103.  
  104. GUI.Visible = true
  105.  
  106. Open.Active = false
  107.  
  108. GUI.Active = true
  109.  
  110. end)
  111.  
  112. Exit.MouseButton1Down:connect(function ()
  113.  
  114. Open.Visible = true
  115.  
  116. GUI:TweenPosition(UDim2.new(0, 550, 0, 1000), 'Out', 'Quad', 0.5, true)
  117.  
  118. Open:TweenPosition(UDim2.new(0, 0, 0, 250), 'Out', 'Quad', 0.5, true)
  119.  
  120. Open.Active = true
  121.  
  122. GUI.Active = false
  123.  
  124. end)
  125.  
  126. Tabs.Server.MouseButton1Down:connect(function ()
  127.  
  128. ServerPage.Visible = true
  129.  
  130. ServerPage1.Visible = true
  131.  
  132. LocalPlayerPage.Visible = false
  133.  
  134. PlayersPage.Visible = false
  135.  
  136. ToysPage1.Visible = false
  137.  
  138. HatsPage.Visible = false
  139.  
  140. ServerPageToggle.Visible = true
  141.  
  142. ServerPage2.Visible = false
  143.  
  144. SettingsPage.Visible = false
  145.  
  146. Selected:TweenPosition(UDim2.new(0, 105, 0, 45), 'Out', 'Quad', 0.2, true)
  147.  
  148. end)
  149.  
  150. Tabs.LocalPlayer.MouseButton1Down:connect(function ()
  151.  
  152. ServerPage1.Visible = false
  153.  
  154. LocalPlayerPage.Visible = true
  155.  
  156. LocalPlayerPage1.Visible = true
  157.  
  158. LocalPlayerPage2.Visible = false
  159.  
  160. PlayersPage.Visible = false
  161.  
  162. ToysPage1.Visible = false
  163.  
  164. HatsPage.Visible = true
  165.  
  166. HatsPage.Hats.Visible = true
  167.  
  168. HatsPage.GoBack.Visible = false
  169.  
  170. InHatsPage.Visible = false
  171.  
  172. ServerPageToggle.Visible = false
  173.  
  174. ServerPage2.Visible = false
  175.  
  176. SettingsPage.Visible = false
  177.  
  178. Selected:TweenPosition(UDim2.new(0, 105, 0, 75), 'Out', 'Quad', 0.2, true)
  179.  
  180. end)
  181.  
  182. Tabs.Players.MouseButton1Down:connect(function ()
  183.  
  184. ServerPage1.Visible = false
  185.  
  186. LocalPlayerPage.Visible = false
  187.  
  188. PlayersPage.Visible = true
  189.  
  190. ToysPage1.Visible = false
  191.  
  192. HatsPage.Visible = false
  193.  
  194. ServerPageToggle.Visible = false
  195.  
  196. ServerPage2.Visible = false
  197.  
  198. SettingsPage.Visible = false
  199.  
  200. Selected:TweenPosition(UDim2.new(0, 105, 0, 135), 'Out', 'Quad', 0.2, true)
  201.  
  202. end)
  203.  
  204. Tabs.Toys.MouseButton1Down:connect(function ()
  205.  
  206. ServerPage1.Visible = false
  207.  
  208. LocalPlayerPage.Visible = false
  209.  
  210. PlayersPage.Visible = false
  211.  
  212. ToysPage1.Visible = true
  213.  
  214. HatsPage.Visible = false
  215.  
  216. ServerPageToggle.Visible = false
  217.  
  218. ServerPage2.Visible = false
  219.  
  220. SettingsPage.Visible = false
  221.  
  222. Selected:TweenPosition(UDim2.new(0, 105, 0, 105), 'Out', 'Quad', 0.2, true)
  223.  
  224. end)
  225.  
  226. HatsPage.Hats.MouseButton1Down:connect(function ()
  227.  
  228. ServerPage1.Visible = false
  229.  
  230. LocalPlayerPage.Visible = false
  231.  
  232. PlayersPage.Visible = false
  233.  
  234. ToysPage1.Visible = false
  235.  
  236. HatsPage.Visible = true
  237.  
  238. HatsPage.Hats.Visible = false
  239.  
  240. HatsPage.GoBack.Visible = true
  241.  
  242. InHatsPage.Visible = true
  243.  
  244. ServerPageToggle.Visible = false
  245.  
  246. ServerPage2.Visible = false
  247.  
  248. end)
  249.  
  250. HatsPage.GoBack.MouseButton1Down:connect(function ()
  251.  
  252. ServerPage1.Visible = false
  253.  
  254. LocalPlayerPage.Visible = true
  255.  
  256. LocalPlayerPage1.Visible = true
  257.  
  258. LocalPlayerPage2.Visible = false
  259.  
  260. PlayersPage.Visible = false
  261.  
  262. ToysPage1.Visible = false
  263.  
  264. HatsPage.Visible = true
  265.  
  266. HatsPage.Hats.Visible = true
  267.  
  268. HatsPage.GoBack.Visible = false
  269.  
  270. InHatsPage.Visible = false
  271.  
  272. ServerPageToggle.Visible = false
  273.  
  274. ServerPage2.Visible = false
  275.  
  276. end)
  277.  
  278. ServerPage1Toggle.MouseButton1Down:connect(function ()
  279.  
  280. ServerPage1.Visible = true
  281.  
  282. ServerPage2.Visible = false
  283.  
  284. end)
  285.  
  286. ServerPage2Toggle.MouseButton1Down:connect(function ()
  287.  
  288. ServerPage1.Visible = false
  289.  
  290. ServerPage2.Visible = true
  291.  
  292. end)
  293.  
  294. LocalPlayerPage1Toggle.MouseButton1Down:connect(function ()
  295.  
  296. LocalPlayerPage1.Visible = true
  297.  
  298. LocalPlayerPage2.Visible = false
  299.  
  300. end)
  301.  
  302. LocalPlayerPage2Toggle.MouseButton1Down:connect(function ()
  303.  
  304. LocalPlayerPage1.Visible = false
  305.  
  306. LocalPlayerPage2.Visible = true
  307.  
  308. end)
  309.  
  310. Settings.MouseButton1Down:connect(function ()
  311.  
  312. ServerPage1.Visible = false
  313.  
  314. LocalPlayerPage.Visible = false
  315.  
  316. PlayersPage.Visible = false
  317.  
  318. ToysPage1.Visible = false
  319.  
  320. HatsPage.Visible = false
  321.  
  322. HatsPage.Hats.Visible = false
  323.  
  324. HatsPage.GoBack.Visible = false
  325.  
  326. InHatsPage.Visible = false
  327.  
  328. ServerPageToggle.Visible = false
  329.  
  330. ServerPage2.Visible = false
  331.  
  332. SettingsPage.Visible = true
  333.  
  334. Selected:TweenPosition(UDim2.new(0, 105, 0, 165), 'Out', 'Quad', 0.2, true)
  335.  
  336. end)
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347. --Server Page 1--
  348.  
  349. ServerPage1.KillAll.MouseButton1Down:connect(function ()
  350.  
  351. for _,v in pairs(game.Players:GetChildren()) do
  352. v.Character:BreakJoints()
  353. end
  354.  
  355. end)
  356.  
  357. ServerPage1.FireAll.MouseButton1Down:connect(function ()
  358.  
  359. for _,v in pairs(game.Players:GetChildren()) do
  360. Instance.new('Fire', v.Character.Torso)
  361. end
  362.  
  363. end)
  364.  
  365. ServerPage1.SmokeAll.MouseButton1Down:connect(function ()
  366.  
  367. for _,v in pairs(game.Players:GetChildren()) do
  368. Instance.new('Smoke', v.Character.Torso)
  369. end
  370.  
  371. end)
  372.  
  373. ServerPage1.KickAll.MouseButton1Down:connect(function ()
  374.  
  375. for _,v in pairs(game.Players:GetChildren()) do
  376. v:Destroy()
  377. end
  378.  
  379. end)
  380.  
  381. ServerPage1.SparklesAll.MouseButton1Down:connect(function ()
  382. for _,v in pairs(game.Players:GetChildren()) do
  383. Instance.new('Sparkles', v.Character.Torso)
  384. end
  385. end)
  386.  
  387. ServerPage1.FlingAll.MouseButton1Down:connect(function ()
  388. for _,v in pairs(game.Players:GetChildren()) do
  389. local Force1 local Force2 repeat Force1 = math.random(-92999,92999)
  390. until math.abs(Force1) >= 5555
  391. repeat Force2 = math.random(-92999,92999)
  392. until math.abs(Force2) >= 5555
  393. v.Character.Humanoid.PlatformStand = true v.Character.Torso.Velocity = Vector3.new(0,0,0)
  394.  
  395. local Fling = Instance.new('BodyForce', v.Character.Torso)
  396. Fling.Name = 'Flung'
  397. Fling.force = Vector3.new(Force1*4,9999*5,Force2*4)
  398. end
  399. end)
  400.  
  401. ServerPage1.Dark.MouseButton1Down:connect(function ()
  402.  
  403. game.Lighting.TimeOfDay = 24
  404.  
  405. game.Lighting.Ambient = Color3.new(0,0,0)
  406.  
  407. game.Lighting.Brightness = -1000
  408.  
  409. game.Lighting.GlobalShadows = false
  410.  
  411. end)
  412.  
  413. ServerPage1.Bright.MouseButton1Down:connect(function ()
  414.  
  415. game.Lighting.TimeOfDay = 10
  416.  
  417. game.Lighting.Ambient = Color3.new(255,255,255)
  418.  
  419. game.Lighting.Brightness = 1000
  420.  
  421. game.Lighting.GlobalShadows = true
  422.  
  423. end)
  424.  
  425. ServerPage1.BoxAll.MouseButton1Down:connect(function ()
  426.  
  427. for _,v in pairs(game.Players:GetChildren()) do
  428. Instance.new('SelectionBox', v.Character).Adornee = v.Character
  429. end
  430.  
  431. end)
  432.  
  433. ServerPage1.BToolsAll.MouseButton1Down:connect(function ()
  434.  
  435. for _,v in pairs(game.Players:GetChildren()) do
  436. Instance.new('HopperBin', v.Backpack).BinType = 2
  437. Instance.new('HopperBin', v.Backpack).BinType = 3
  438. Instance.new('HopperBin', v.Backpack).BinType = 4
  439. end
  440.  
  441. end)
  442.  
  443. ServerPage1.FFAll.MouseButton1Down:connect(function ()
  444.  
  445. for _,v in pairs(game.Players:GetChildren()) do
  446. Instance.new('ForceField', v.Character)
  447. end
  448.  
  449. end)
  450.  
  451. ServerPage1.GodAll.MouseButton1Down:connect(function ()
  452.  
  453. for _,v in pairs(game.Players:GetChildren()) do
  454. v.Character.Humanoid.MaxHealth = math.huge
  455. end
  456.  
  457. end)
  458.  
  459. ServerPage1.ExplodeAll.MouseButton1Down:connect(function ()
  460.  
  461. for _,v in pairs(game.Players:GetChildren()) do
  462. Instance.new('Explosion', v.Character.Torso).Position = v.Character.Torso.Position
  463. end
  464.  
  465. end)
  466.  
  467. ServerPage1.InvisAll.MouseButton1Down:connect(function ()
  468.  
  469. for _,v in pairs(game.Players:GetChildren()) do
  470. v.Character.Head.Transparency = 1
  471. v.Character.Torso.Transparency = 1
  472. v.Character['Left Arm'].Transparency = 1
  473. v.Character['Right Arm'].Transparency = 1
  474. v.Character['Left Leg'].Transparency = 1
  475. v.Character['Right Leg'].Transparency = 1
  476. v.Character.Head.face.Transparency = 1
  477. end
  478.  
  479. end)
  480.  
  481. ServerPage1.VisAll.MouseButton1Down:connect(function ()
  482.  
  483. for _,v in pairs(game.Players:GetChildren()) do
  484. v.Character.Head.Transparency = 0
  485. v.Character.Torso.Transparency = 0
  486. v.Character['Left Arm'].Transparency = 0
  487. v.Character['Right Arm'].Transparency = 0
  488. v.Character['Left Leg'].Transparency = 0
  489. v.Character['Right Leg'].Transparency = 0
  490. v.Character.Head.face.Transparency = 0
  491. end
  492.  
  493. end)
  494.  
  495. ServerPage1.TPAllMe.MouseButton1Down:connect(function ()
  496.  
  497. for _,v in pairs (game.Players:GetChildren()) do
  498. if Player.Character:FindFirstChild('HumanoidRootPart') and v.Character:FindFirstChild('HumanoidRootPart') then
  499. v.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  500. end
  501. end
  502.  
  503. end)
  504.  
  505. ServerPage1.PlusWSAll.MouseButton1Down:connect(function ()
  506.  
  507. for _,v in pairs(game.Players:GetChildren()) do
  508. v.Character.Humanoid.WalkSpeed = v.Character.Humanoid.WalkSpeed + 5
  509. end
  510.  
  511. end)
  512.  
  513. ServerPage1.SubtractWSAll.MouseButton1Down:connect(function ()
  514.  
  515. for _,v in pairs(game.Players:GetChildren()) do
  516. v.Character.Humanoid.WalkSpeed = v.Character.Humanoid.WalkSpeed - 5
  517. end
  518.  
  519. end)
  520.  
  521. ServerPage1.Noob.MouseButton1Down:connect(function ()
  522.  
  523. for _,v in pairs(game.Players:GetChildren()) do
  524. v.CharacterAppearance = 'http://www.roblox.com/Asset/CharacterFetch.ashx?userId=0'
  525. if v.Character:FindFirstChild('Head') then
  526. v.Character.Head:Destroy()
  527. end
  528. end
  529.  
  530. end)
  531.  
  532. ServerPage1.Guest.MouseButton1Down:connect(function ()
  533.  
  534. for _,v in pairs(game.Players:GetChildren()) do
  535. v.CharacterAppearance = 'http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1'
  536. if v.Character:FindFirstChild('Head') then
  537. v.Character.Head:Destroy()
  538. end
  539. end
  540.  
  541. end)
  542.  
  543. ServerPage1.Day.MouseButton1Down:connect(function ()
  544.  
  545. game.Lighting.TimeOfDay = 14
  546.  
  547. end)
  548.  
  549. ServerPage1.Night.MouseButton1Down:connect(function ()
  550.  
  551. game.Lighting.TimeOfDay = 24
  552.  
  553. end)
  554.  
  555. ServerPage1.GlowParts.MouseButton1Down:connect(function ()
  556.  
  557. Unlock = function(Instance)
  558. for i,v in pairs(Instance:GetChildren()) do
  559. if v:IsA('BasePart') then
  560. v.Material = 'Neon'
  561. end
  562. Unlock(v)
  563. end
  564. end
  565. Unlock(workspace)
  566.  
  567. end)
  568.  
  569. ServerPage1.GhostParts.MouseButton1Down:connect(function ()
  570.  
  571. Unlock = function(Instance)
  572. for i,v in pairs(Instance:GetChildren()) do
  573. if v:IsA('BasePart') then
  574. v.Transparency = 0.5
  575. end
  576. Unlock(v)
  577. end
  578. end
  579. Unlock(workspace)
  580.  
  581. end)
  582.  
  583. ServerPage1.FixLighting.MouseButton1Down:connect(function ()
  584.  
  585. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  586.  
  587. game.Lighting.Brightness = 1
  588.  
  589. game.Lighting.GlobalShadows = true
  590.  
  591. game.Lighting.Outlines = false
  592.  
  593. game.Lighting.TimeOfDay = 14
  594.  
  595. game.Lighting.FogEnd = 100000
  596.  
  597. end)
  598.  
  599. ServerPage1.UnAnchor.MouseButton1Down:connect(function ()
  600.  
  601. local function UnAnchor(Instance)
  602. for i,v in pairs(Instance:GetChildren()) do
  603. if v:IsA('BasePart') then
  604. v.Anchored = false
  605. end
  606. UnAnchor(v)
  607. end
  608. end
  609. UnAnchor(workspace)
  610.  
  611. end)
  612.  
  613. ServerPage1.UnLock.MouseButton1Down:connect(function ()
  614.  
  615. local function UnLock(Instance)
  616. for i,v in pairs(Instance:GetChildren()) do
  617. if v:IsA('BasePart') then
  618. v.Locked = false
  619. end
  620. UnLock(v)
  621. end
  622. end
  623. UnLock(workspace)
  624.  
  625. end)
  626.  
  627. ServerPage1.BombAll.MouseButton1Down:connect(function ()
  628.  
  629. for _,v in pairs(game.Players:GetChildren()) do
  630. local Bomb = Instance.new('Part')
  631. Bomb.Parent = game.Workspace
  632. Bomb.Size = Vector3.new(2,2,2)
  633. Bomb.Material = 'Neon'
  634. Bomb.BrickColor = BrickColor.new('Really black')
  635. Bomb.Position = v.Character.Head.Position
  636. Bomb.Shape = 'Ball'
  637. Bomb.TopSurface = 'Smooth'
  638. Bomb.BottomSurface = 'Smooth'
  639. Bomb.Locked = true
  640. wait(3)
  641. local Explosion = Instance.new('Explosion')
  642. Explosion.Parent = game.Workspace
  643. Explosion.Position = Bomb.Position
  644. Explosion.BlastRadius = 10
  645. Explosion.BlastPressure = 1000000
  646. Bomb:Destroy()
  647. end
  648.  
  649. end)
  650.  
  651. ServerPage1.PunishAll.MouseButton1Down:connect(function ()
  652.  
  653. for _,v in pairs(game.Players:GetChildren()) do
  654. v.Character.Parent = game.Debris
  655. end
  656.  
  657. end)
  658.  
  659. ServerPage1.UnPunishAll.MouseButton1Down:connect(function ()
  660.  
  661. for _,v in pairs(game.Debris:GetChildren()) do
  662. if v:IsA('Model') then
  663. v.Parent = game.Workspace
  664. v:MakeJoints()
  665. end
  666.  
  667. end
  668.  
  669. end)
  670.  
  671. ServerPage1.JumpAll.MouseButton1Down:connect(function ()
  672.  
  673. for _,v in pairs(game.Players:GetChildren()) do
  674. v.Character.Humanoid.Jump = true
  675. end
  676.  
  677. end)
  678.  
  679. ServerPage1.SitAll.MouseButton1Down:connect(function ()
  680.  
  681. for _,v in pairs(game.Players:GetChildren()) do
  682. v.Character.Humanoid.Sit = true
  683. end
  684.  
  685. end)
  686.  
  687. --Server Page 2--
  688.  
  689. ServerPage2.Reverse.MouseButton1Down:connect(function ()
  690.  
  691. for _,v in pairs(game.Players:GetChildren()) do
  692. v.Character.Humanoid.WalkSpeed = -16
  693. end
  694.  
  695. end)
  696.  
  697. ServerPage2.Normal.MouseButton1Down:connect(function ()
  698.  
  699. for _,v in pairs(game.Players:GetChildren()) do
  700. v.Character.Humanoid.WalkSpeed = 16
  701. end
  702.  
  703. end)
  704.  
  705. ServerPage2.Map.MouseButton1Down:connect(function ()
  706.  
  707. pcall(function()
  708. for i,v in pairs(game.Workspace:GetChildren()) do
  709. if v.Name~='Camera' and v.Name~='Terrain' then
  710. v:Destroy()
  711. end
  712. end
  713.  
  714. workspace.Terrain:Clear()
  715.  
  716. for i,v in pairs(game.Players:GetChildren()) do
  717. local Plr = v
  718. local Part = Instance.new('Model', game.Workspace)
  719. Instance.new('Part', Part).Name = 'Torso'
  720. Instance.new('Part', Part).Name = 'Head'
  721. Instance.new('Humanoid', Part).Name = 'Humanoid'
  722. Plr.Character = Part
  723. end
  724.  
  725. local Load = game:GetObjects('http://www.roblox.com/asset/?id=296400126')[1]
  726. Load.Parent = game.Workspace
  727. Load:MakeJoints()
  728.  
  729. end)
  730.  
  731. end)
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743. --LocalPlayer Page 1--
  744.  
  745. local Clip = true
  746.  
  747. LocalPlayerPage1.NoClip.MouseButton1Down:connect(function (NC)
  748.  
  749. Clip = false
  750. local Name = Player.Name
  751. game:GetService('Players').LocalPlayer.PlayerGui.ChildAdded:connect(function ()
  752. delay(0, function()
  753. if NC.Name == 'NC' then
  754. NC:Destroy()
  755. end
  756. end)
  757. end)
  758. game:GetService('RunService').Stepped:connect(function ()
  759. game.Workspace[Name].Torso.CanCollide = Clip
  760. game.Workspace[Name].Head.CanCollide = Clip
  761. end)
  762. game.Workspace[Name].Torso.Changed:connect(function ()
  763. game.Workspace[Name].Torso.CanCollide = Clip
  764. game.Workspace[Name].Head.CanCollide = Clip
  765. end)
  766.  
  767. end)
  768.  
  769. LocalPlayerPage1.Reset.MouseButton1Down:connect(function ()
  770.  
  771. Player.Character:BreakJoints()
  772.  
  773. end)
  774.  
  775. LocalPlayerPage1.Fire.MouseButton1Down:connect(function ()
  776.  
  777. Instance.new('Fire', Player.Character.Torso)
  778.  
  779. end)
  780.  
  781. LocalPlayerPage1.Smoke.MouseButton1Down:connect(function ()
  782.  
  783. Instance.new('Smoke', Player.Character.Torso)
  784.  
  785. end)
  786.  
  787. LocalPlayerPage1.Sparkles.MouseButton1Down:connect(function ()
  788.  
  789. Instance.new('Sparkles', Player.Character.Torso)
  790.  
  791. end)
  792.  
  793. LocalPlayerPage1.Box.MouseButton1Down:connect(function ()
  794.  
  795. Instance.new('SelectionBox', Player.Character).Adornee = Player.Character
  796.  
  797. end)
  798.  
  799. LocalPlayerPage1.BTools.MouseButton1Down:connect(function ()
  800.  
  801. Instance.new('HopperBin', Player.Backpack).BinType = 2
  802. Instance.new('HopperBin', Player.Backpack).BinType = 3
  803. Instance.new('HopperBin', Player.Backpack).BinType = 4
  804.  
  805. end)
  806.  
  807. LocalPlayerPage1.FF.MouseButton1Down:connect(function ()
  808.  
  809. Instance.new('ForceField', Player.Character)
  810.  
  811. end)
  812.  
  813. LocalPlayerPage1.God.MouseButton1Down:connect(function ()
  814.  
  815. Player.Character.Humanoid.MaxHealth = math.huge
  816.  
  817. end)
  818.  
  819. LocalPlayerPage1.Explode.MouseButton1Down:connect(function ()
  820.  
  821. Instance.new('Explosion', Player.Character.Torso).Position = Player.Character.Torso.Position
  822.  
  823. end)
  824.  
  825. LocalPlayerPage1.Invis.MouseButton1Down:connect(function ()
  826.  
  827. Player.Character.Head.Transparency = 1
  828. Player.Character.Torso.Transparency = 1
  829. Player.Character['Left Arm'].Transparency = 1
  830. Player.Character['Right Arm'].Transparency = 1
  831. Player.Character['Left Leg'].Transparency = 1
  832. Player.Character['Right Leg'].Transparency = 1
  833. Player.Character.Head.face.Transparency = 1
  834.  
  835. end)
  836.  
  837. LocalPlayerPage1.Vis.MouseButton1Down:connect(function ()
  838.  
  839. Player.Character.Head.Transparency = 0
  840. Player.Character.Torso.Transparency = 0
  841. Player.Character['Left Arm'].Transparency = 0
  842. Player.Character['Right Arm'].Transparency = 0
  843. Player.Character['Left Leg'].Transparency = 0
  844. Player.Character['Right Leg'].Transparency = 0
  845. Player.Character.Head.face.Transparency = 0
  846.  
  847. end)
  848.  
  849. LocalPlayerPage1.PlusWS.MouseButton1Down:connect(function ()
  850.  
  851. Player.Character.Humanoid.WalkSpeed = Player.Character.Humanoid.WalkSpeed + 5
  852.  
  853. end)
  854.  
  855. LocalPlayerPage1.SubractWS.MouseButton1Down:connect(function ()
  856.  
  857. Player.Character.Humanoid.WalkSpeed = Player.Character.Humanoid.WalkSpeed - 5
  858.  
  859. end)
  860.  
  861. LocalPlayerPage1.Noob.MouseButton1Down:connect(function ()
  862.  
  863. Player.CharacterAppearance = 'http://www.roblox.com/Asset/CharacterFetch.ashx?userId=0'
  864. if Player.Character:FindFirstChild('Head') then
  865. Player.Character.Head:Destroy()
  866. end
  867.  
  868. end)
  869.  
  870. LocalPlayerPage1.Guest.MouseButton1Down:connect(function ()
  871.  
  872. Player.CharacterAppearance = 'http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1'
  873. if Player.Character:FindFirstChild('Head') then
  874. Player.Character.Head:Destroy()
  875. end
  876.  
  877. end)
  878.  
  879. LocalPlayerPage1.Clip.MouseButton1Down:connect(function ()
  880.  
  881. Clip = true
  882.  
  883. end)
  884.  
  885. LocalPlayerPage1.Ghost.MouseButton1Down:connect(function ()
  886.  
  887. Player.Character.Head.Transparency = 0.5
  888. Player.Character.Torso.Transparency = 0.5
  889. Player.Character['Left Arm'].Transparency = 0.5
  890. Player.Character['Right Arm'].Transparency = 0.5
  891. Player.Character['Left Leg'].Transparency = 0.5
  892. Player.Character['Right Leg'].Transparency = 0.5
  893. Player.Character.Head.face.Transparency = 0.5
  894.  
  895. end)
  896.  
  897. LocalPlayerPage1.Bomb.MouseButton1Down:connect(function ()
  898.  
  899. local Bomb = Instance.new('Part')
  900. Bomb.Parent = game.Workspace
  901. Bomb.Size = Vector3.new(2,2,2)
  902. Bomb.Material = 'Neon'
  903. Bomb.BrickColor = BrickColor.new('Really black')
  904. Bomb.Position = Player.Character.Head.Position
  905. Bomb.Shape = 'Ball'
  906. Bomb.TopSurface = 'Smooth'
  907. Bomb.BottomSurface = 'Smooth'
  908. Bomb.Locked = true
  909. wait(3)
  910. local Explosion = Instance.new('Explosion')
  911. Explosion.Parent = game.Workspace
  912. Explosion.Position = Bomb.Position
  913. Explosion.BlastRadius = 10
  914. Explosion.BlastPressure = 1000000
  915. Bomb:Destroy()
  916.  
  917. end)
  918.  
  919. LocalPlayerPage1.Sit.MouseButton1Down:connect(function ()
  920.  
  921. Player.Character.Humanoid.Sit = true
  922.  
  923. end)
  924.  
  925. LocalPlayerPage1.Sphere.MouseButton1Down:connect(function ()
  926.  
  927. local Sphere = Instance.new('SelectionSphere', Player.Character)
  928. Sphere.Adornee = Sphere.Parent
  929.  
  930. end)
  931.  
  932. LocalPlayerPage1.PlayerSphere.MouseButton1Down:connect(function ()
  933.  
  934. local Head = Player.Character.Head
  935. local Torso = Player.Character.Torso
  936. local LLeg = Player.Character['Left Leg']
  937. local RLeg = Player.Character['Right Leg']
  938. local LArm = Player.Character['Left Arm']
  939. local RArm = Player.Character['Right Arm']
  940.  
  941. Head.Transparency = 1
  942. Torso.Transparency = 1
  943. LLeg.Transparency = 1
  944. RLeg.Transparency = 1
  945. LArm.Transparency = 1
  946. RArm.Transparency = 1
  947.  
  948. local H = Instance.new('SelectionSphere', Head)
  949. H.Adornee = H.Parent
  950.  
  951. local T = Instance.new('SelectionSphere', Torso)
  952. T.Adornee = T.Parent
  953.  
  954. local LL = Instance.new('SelectionSphere', LLeg)
  955. LL.Adornee = LL.Parent
  956.  
  957. local RL = Instance.new('SelectionSphere', RLeg)
  958. RL.Adornee = RL.Parent
  959.  
  960. local LA = Instance.new('SelectionSphere', LArm)
  961. LA.Adornee = LA.Parent
  962.  
  963. local RA = Instance.new('SelectionSphere', RArm)
  964. RA.Adornee = RA.Parent
  965.  
  966. end)
  967.  
  968. LocalPlayerPage1.BoxHead.MouseButton1Down:connect(function ()
  969.  
  970. for _,v in pairs(Player.Character:GetChildren()) do
  971. if v:IsA('Hat') then
  972. v:Destroy()
  973. end
  974. end
  975.  
  976. Player.Character.Head.Size = Vector3.new(2,2,2)
  977. Player.Character.Head.Transparency = 1
  978.  
  979. Player.Character.Head.face.Transparency = 1
  980.  
  981. local SB = Instance.new('SelectionBox', Player.Character.Head)
  982. SB.Adornee = SB.Parent
  983.  
  984. end)
  985.  
  986. LocalPlayerPage1.BigHead.MouseButton1Down:connect(function ()
  987.  
  988. Player.Character.Head.Mesh.Scale = Vector3.new(3.75,3.75,3.75)
  989.  
  990. Player.Character.Head.Mesh.Offset = Vector3.new(0,1.25,0)
  991.  
  992. end)
  993.  
  994. LocalPlayerPage1.SmallHead.MouseButton1Down:connect(function ()
  995.  
  996. Player.Character.Head.Mesh.Scale = Vector3.new(.75,.75,.75)
  997.  
  998. Player.Character.Head.Mesh.Offset = Vector3.new(0,-.2,0)
  999.  
  1000. end)
  1001.  
  1002. LocalPlayerPage1.FireHead.MouseButton1Down:connect(function ()
  1003.  
  1004. Player.Character.Head.Transparency = 1
  1005. Player.Character.Head.face.Transparency = 1
  1006.  
  1007. Instance.new('Fire', Player.Character.Head)
  1008.  
  1009. end)
  1010.  
  1011. LocalPlayerPage1.FixHead.MouseButton1Down:connect(function ()
  1012.  
  1013. Player.Character.Head.Mesh.Scale = Vector3.new(1.25,1.25,1.25)
  1014.  
  1015. Player.Character.Head.Mesh.Offset = Vector3.new(0,0,0)
  1016.  
  1017. Player.Character.Head.Transparency = 0
  1018.  
  1019. Player.Character.Head.face.Transparency = 0
  1020.  
  1021. Player.Character.Head.Size = Vector3.new(2,1,1)
  1022.  
  1023. end)
  1024.  
  1025. LocalPlayerPage1.Purge.MouseButton1Down:connect(function ()
  1026.  
  1027. for _,v in pairs(Player.Character:GetChildren()) do
  1028. if v:IsA('Hat') then
  1029. v:Destroy()
  1030. end
  1031. end
  1032.  
  1033. if Player.Character:FindFirstChild('Shirt') ~= nil then
  1034. Player.Character.Shirt:Destroy()
  1035. end
  1036.  
  1037. if Player.Character:FindFirstChild('Pants') ~= nil then
  1038. Player.Character.Pants:Destroy()
  1039. end
  1040.  
  1041. if Player.Character:FindFirstChild('Shirt Graphic') ~= nil then
  1042. Player.Character['Shirt Graphic'].Graphic = ''
  1043. end
  1044.  
  1045. local Shirt = Instance.new('Shirt', Player.Character)
  1046. Shirt.ShirtTemplate = 'http://www.roblox.com/asset/?id=291066914'
  1047. Shirt.Name = 'Shirt'
  1048.  
  1049. local Pants = Instance.new('Pants', Player.Character)
  1050. Pants.PantsTemplate = 'http://www.roblox.com/asset/?id=291067029'
  1051. Pants.Name = 'Pants'
  1052.  
  1053. game:GetObjects('http://www.roblox.com/asset/?id=32278814')[1].Parent = Player.Character
  1054.  
  1055. game:GetObjects('http://www.roblox.com/asset/?id=20418416')[1].Parent = Player.Character
  1056.  
  1057. local Shotgun = game:GetService('InsertService'):LoadAsset(94233344) --Shotgun
  1058. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  1059. for _,j in pairs(Shotgun:GetChildren()) do
  1060. if j:IsA('Tool') then
  1061. j.Parent = Player.Backpack
  1062. end
  1063. end
  1064. end
  1065.  
  1066. local Knife = game:GetService('InsertService'):LoadAsset(170897263) --Knife
  1067. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  1068. for _,j in pairs(Knife:GetChildren()) do
  1069. if j:IsA('Tool') then
  1070. j.Parent = Player.Backpack
  1071. end
  1072. end
  1073. end
  1074.  
  1075. local TimmyGun = game:GetService('InsertService'):LoadAsset(116693764) --Timmy Gun
  1076. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  1077. for _,j in pairs(TimmyGun:GetChildren()) do
  1078. if j:IsA('Tool') then
  1079. j.Parent = Player.Backpack
  1080. end
  1081. end
  1082. end
  1083.  
  1084. local Missle = game:GetService('InsertService'):LoadAsset(67747912) --Missle Launcher
  1085. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  1086. for _,j in pairs(Missle:GetChildren()) do
  1087. if j:IsA('Tool') then
  1088. j.Parent = Player.Backpack
  1089. end
  1090. end
  1091. end
  1092.  
  1093. end)
  1094.  
  1095. LocalPlayerPage1.WP.MouseButton1Down:connect(function ()
  1096.  
  1097. for a, mod in pairs(Player.Character:GetChildren()) do
  1098.  
  1099. if mod:FindFirstChild('NameTagger') then
  1100.  
  1101. Player.Character.Head.Transparency = 0 mod:Destroy()
  1102.  
  1103. end
  1104.  
  1105. end
  1106.  
  1107. local Model = Instance.new('Model', Player.Character)
  1108. Model.Name = 'Your Mom'
  1109.  
  1110. local Clone = Player.Character.Head:Clone()
  1111. Clone.Parent = Model
  1112. Clone.BrickColor = BrickColor.new('Cool yellow')
  1113.  
  1114. local Humanoid = Instance.new('Humanoid', Model)
  1115. Humanoid.Name = 'NameTagger'
  1116. Humanoid.MaxHealth = 100
  1117. Humanoid.Health = 100
  1118.  
  1119. local Weld = Instance.new('Weld', Clone)
  1120. Weld.Part0 = Clone
  1121. Weld.Part1 = Player.Character.Head
  1122.  
  1123. Player.Character.Head.Transparency = 1
  1124.  
  1125. if Player.Character:FindFirstChild('Shirt') ~= nil then
  1126.  
  1127. Player.Character.Shirt:Destroy()
  1128.  
  1129. end
  1130.  
  1131. if Player.Character:FindFirstChild('Pants') ~= nil then
  1132.  
  1133. Player.Character.Pants:Destroy()
  1134.  
  1135. end
  1136.  
  1137. if Player.Character:FindFirstChild('Shirt Graphic') ~= nil then
  1138.  
  1139. Player.Character['Shirt Graphic'].Graphic = ''
  1140.  
  1141. end
  1142.  
  1143. Player.Character['Body Colors'].HeadColor = BrickColor.new('Cool yellow')
  1144.  
  1145. Player.Character['Body Colors'].LeftArmColor = BrickColor.new('Cool yellow')
  1146.  
  1147. Player.Character['Body Colors'].LeftLegColor = BrickColor.new('Medium blue')
  1148.  
  1149. Player.Character['Body Colors'].RightArmColor = BrickColor.new('Cool yellow')
  1150.  
  1151. Player.Character['Body Colors'].RightLegColor = BrickColor.new('Medium blue')
  1152.  
  1153. Player.Character['Body Colors'].TorsoColor = BrickColor.new('Bright blue')
  1154.  
  1155. for _,v in pairs(Player.Character:GetChildren()) do
  1156. if v:IsA('Hat') then
  1157. v:Destroy()
  1158. end
  1159. end
  1160.  
  1161. end)
  1162.  
  1163. LocalPlayerPage1.CylinderPlayer.MouseButton1Down:connect(function ()
  1164.  
  1165. Instance.new('CylinderMesh', Player.Character.Head)
  1166.  
  1167. Instance.new('CylinderMesh', Player.Character.Torso)
  1168.  
  1169. Instance.new('CylinderMesh', Player.Character['Left Arm'])
  1170.  
  1171. Instance.new('CylinderMesh', Player.Character['Right Arm'])
  1172.  
  1173. Instance.new('CylinderMesh', Player.Character['Left Leg'])
  1174.  
  1175. Instance.new('CylinderMesh', Player.Character['Right Leg'])
  1176.  
  1177. end)
  1178.  
  1179. LocalPlayerPage1.FatPlayer.MouseButton1Down:connect(function ()
  1180.  
  1181. Instance.new('SpecialMesh', Player.Character.Head)
  1182.  
  1183. Instance.new('SpecialMesh', Player.Character.Torso).Scale = Vector3.new(1,1,2)
  1184.  
  1185. Instance.new('SpecialMesh', Player.Character['Left Arm'])
  1186.  
  1187. Instance.new('SpecialMesh', Player.Character['Right Arm'])
  1188.  
  1189. Instance.new('SpecialMesh', Player.Character['Left Leg'])
  1190.  
  1191. Instance.new('SpecialMesh', Player.Character['Right Leg'])
  1192.  
  1193. end)
  1194.  
  1195. LocalPlayerPage1.PaperPlayer.MouseButton1Down:connect(function ()
  1196.  
  1197. Instance.new('BlockMesh', Player.Character.Torso).Scale = Vector3.new(1,1,0)
  1198.  
  1199. Instance.new('BlockMesh', Player.Character['Left Arm']).Scale = Vector3.new(1,1,0)
  1200.  
  1201. Instance.new('BlockMesh', Player.Character['Right Arm']).Scale = Vector3.new(1,1,0)
  1202.  
  1203. Instance.new('BlockMesh', Player.Character['Left Leg']).Scale = Vector3.new(1,1,0)
  1204.  
  1205. Instance.new('BlockMesh', Player.Character['Right Leg']).Scale = Vector3.new(1,1,0)
  1206.  
  1207. end)
  1208.  
  1209. --LocalPlayer Page 2--
  1210.  
  1211. LocalPlayerPage2.Midget.MouseButton1Down:connect(function ()
  1212.  
  1213. function scale(chr,scl)
  1214.  
  1215. for _,v in pairs(Player.Character:GetChildren()) do
  1216. if v:IsA('Hat') then
  1217. v:Clone()
  1218. v.Parent = game.Lighting
  1219. end
  1220. end
  1221.  
  1222. local Head = chr['Head']
  1223. local Torso = chr['Torso']
  1224. local LA = chr['Left Arm']
  1225. local RA = chr['Right Arm']
  1226. local LL = chr['Left Leg']
  1227. local RL = chr['Right Leg']
  1228. local HRP = chr['HumanoidRootPart']
  1229.  
  1230. wait(0.1)
  1231.  
  1232. Head.formFactor = 3
  1233. Torso.formFactor = 3
  1234. LA.formFactor = 3
  1235. RA.formFactor = 3
  1236. LL.formFactor = 3
  1237. RL.formFactor = 3
  1238. HRP.formFactor = 3
  1239.  
  1240. Head.Size = Vector3.new(scl * 2, scl, scl)
  1241. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  1242. LA.Size = Vector3.new(scl, scl * 2, scl)
  1243. RA.Size = Vector3.new(scl, scl * 2, scl)
  1244. LL.Size = Vector3.new(scl, scl * 2, scl)
  1245. RL.Size = Vector3.new(scl, scl * 2, scl)
  1246. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  1247.  
  1248. local Motor1 = Instance.new('Motor6D', Torso)
  1249. Motor1.Part0 = Torso
  1250. Motor1.Part1 = Head
  1251. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  1252. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  1253. Motor1.Name = 'Neck'
  1254.  
  1255. local Motor2 = Instance.new('Motor6D', Torso)
  1256. Motor2.Part0 = Torso
  1257. Motor2.Part1 = LA
  1258. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1259. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1260. Motor2.Name = 'Left Shoulder'
  1261.  
  1262. local Motor3 = Instance.new('Motor6D', Torso)
  1263. Motor3.Part0 = Torso
  1264. Motor3.Part1 = RA
  1265. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1266. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1267. Motor3.Name = 'Right Shoulder'
  1268.  
  1269. local Motor4 = Instance.new('Motor6D', Torso)
  1270. Motor4.Part0 = Torso
  1271. Motor4.Part1 = LL
  1272. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1273. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1274. Motor4.Name = 'Left Hip'
  1275.  
  1276. local Motor5 = Instance.new('Motor6D', Torso)
  1277. Motor5.Part0 = Torso
  1278. Motor5.Part1 = RL
  1279. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1280. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1281. Motor5.Name = 'Right Hip'
  1282.  
  1283. local Motor6 = Instance.new('Motor6D', HRP)
  1284. Motor6.Part0 = HRP
  1285. Motor6.Part1 = Torso
  1286. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  1287. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  1288.  
  1289. end
  1290.  
  1291. scale(game.Players.LocalPlayer.Character, 0.5)
  1292.  
  1293. for _,v in pairs(game.Lighting:GetChildren()) do
  1294. if v:IsA('Hat') then
  1295. v.Parent = Player.Character
  1296. end
  1297. end
  1298.  
  1299. end)
  1300.  
  1301. LocalPlayerPage2.Giant.MouseButton1Down:connect(function ()
  1302.  
  1303. function scale(chr,scl)
  1304.  
  1305. for _,v in pairs(Player.Character:GetChildren()) do
  1306. if v:IsA('Hat') then
  1307. v:Clone()
  1308. v.Parent = game.Lighting
  1309. end
  1310. end
  1311.  
  1312. local Head = chr['Head']
  1313. local Torso = chr['Torso']
  1314. local LA = chr['Left Arm']
  1315. local RA = chr['Right Arm']
  1316. local LL = chr['Left Leg']
  1317. local RL = chr['Right Leg']
  1318. local HRP = chr['HumanoidRootPart']
  1319.  
  1320. wait(0.1)
  1321.  
  1322. Head.formFactor = 3
  1323. Torso.formFactor = 3
  1324. LA.formFactor = 3
  1325. RA.formFactor = 3
  1326. LL.formFactor = 3
  1327. RL.formFactor = 3
  1328. HRP.formFactor = 3
  1329.  
  1330. Head.Size = Vector3.new(scl * 2, scl, scl)
  1331. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  1332. LA.Size = Vector3.new(scl, scl * 2, scl)
  1333. RA.Size = Vector3.new(scl, scl * 2, scl)
  1334. LL.Size = Vector3.new(scl, scl * 2, scl)
  1335. RL.Size = Vector3.new(scl, scl * 2, scl)
  1336. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  1337.  
  1338. local Motor1 = Instance.new('Motor6D', Torso)
  1339. Motor1.Part0 = Torso
  1340. Motor1.Part1 = Head
  1341. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  1342. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  1343. Motor1.Name = 'Neck'
  1344.  
  1345. local Motor2 = Instance.new('Motor6D', Torso)
  1346. Motor2.Part0 = Torso
  1347. Motor2.Part1 = LA
  1348. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1349. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1350. Motor2.Name = 'Left Shoulder'
  1351.  
  1352. local Motor3 = Instance.new('Motor6D', Torso)
  1353. Motor3.Part0 = Torso
  1354. Motor3.Part1 = RA
  1355. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1356. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1357. Motor3.Name = 'Right Shoulder'
  1358.  
  1359. local Motor4 = Instance.new('Motor6D', Torso)
  1360. Motor4.Part0 = Torso
  1361. Motor4.Part1 = LL
  1362. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1363. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1364. Motor4.Name = 'Left Hip'
  1365.  
  1366. local Motor5 = Instance.new('Motor6D', Torso)
  1367. Motor5.Part0 = Torso
  1368. Motor5.Part1 = RL
  1369. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1370. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1371. Motor5.Name = 'Right Hip'
  1372.  
  1373. local Motor6 = Instance.new('Motor6D', HRP)
  1374. Motor6.Part0 = HRP
  1375. Motor6.Part1 = Torso
  1376. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  1377. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  1378.  
  1379. end
  1380.  
  1381. scale(game.Players.LocalPlayer.Character, 5)
  1382.  
  1383. for _,v in pairs(game.Lighting:GetChildren()) do
  1384. if v:IsA('Hat') then
  1385. v.Parent = Player.Character
  1386. end
  1387. end
  1388.  
  1389. end)
  1390.  
  1391. LocalPlayerPage2.Fly.MouseButton1Down:connect(function ()
  1392.  
  1393. loadstring(game:GetObjects('rbxassetid://293298728')[1].Source)()
  1394.  
  1395. end)
  1396.  
  1397. LocalPlayerPage2.Cape.MouseButton1Down:connect(function ()
  1398.  
  1399. loadstring(game:GetObjects('rbxassetid://293812864')[1].Source)()
  1400.  
  1401. end)
  1402.  
  1403.  
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409.  
  1410.  
  1411.  
  1412.  
  1413. --Toys Page 1--
  1414.  
  1415. ToysPage1.Telekinesis.MouseButton1Down:connect(function ()
  1416.  
  1417. loadstring(game:GetObjects('rbxassetid://288628070')[1].Source)()
  1418.  
  1419. end)
  1420.  
  1421. ToysPage1.L85A2.MouseButton1Down:connect(function ()
  1422.  
  1423. local tool = DATA.L85A2:Clone()
  1424. tool.Parent = Player.Backpack
  1425.  
  1426. end)
  1427.  
  1428. ToysPage1.SuicideVest.MouseButton1Down:connect(function ()
  1429.  
  1430. local tool = DATA.Detonator:Clone()
  1431. tool.Parent = Player.Backpack
  1432. local hit = game.Players.LocalPlayer.Character.Torso
  1433. if hit.Parent:findFirstChild('Humanoid') ~= nil and hit.Parent:findFirstChild('Chest') == nil then
  1434. local g = DATA.Chest:Clone()
  1435. g.Parent = hit.Parent
  1436. local C = g:GetChildren()
  1437. for i=1, #C do
  1438. if C[i].className == 'Part' or C[i].className == 'WedgePart' then
  1439. local W = Instance.new('Weld')
  1440. W.Part0 = g.Middle
  1441. W.Part1 = C[i]
  1442. local CJ = CFrame.new(g.Middle.Position)
  1443. local C0 = g.Middle.CFrame:inverse()*CJ
  1444. local C1 = C[i].CFrame:inverse()*CJ
  1445. W.C0 = C0
  1446. W.C1 = C1
  1447. W.Parent = g.Middle
  1448. end
  1449. local Y = Instance.new('Weld')
  1450. Y.Part0 = hit.Parent.Torso
  1451. Y.Part1 = g.Middle
  1452. Y.C0 = CFrame.new(0, 0, 0)
  1453. Y.Parent = Y.Part0
  1454. end
  1455. local h = g:GetChildren()
  1456. for i = 1, # h do
  1457. h[i].Anchored = false
  1458. h[i].CanCollide = false
  1459. end
  1460. g.Middle.CFrame = hit.Parent.Torso.CFrame
  1461. end
  1462.  
  1463. end)
  1464.  
  1465. ToysPage1.Boom.MouseButton1Down:connect(function ()
  1466.  
  1467. local tool = DATA.Bomb:Clone()
  1468. tool.Parent = Player.Backpack
  1469.  
  1470. end)
  1471.  
  1472. ToysPage1.PartMaker.MouseButton1Down:connect(function ()
  1473.  
  1474. game:GetObjects('rbxassetid://288113452')[1].Parent = game.Players.LocalPlayer.PlayerGui
  1475.  
  1476. end)
  1477.  
  1478. ToysPage1.RainbowPath.MouseButton1Down:connect(function ()
  1479.  
  1480. local tool = DATA.RainbowRoad:Clone()
  1481. tool.Parent = Player.Backpack
  1482.  
  1483. end)
  1484.  
  1485. ToysPage1.BrightRed.MouseButton1Down:connect(function ()
  1486.  
  1487. local tool = DATA.RedPath:Clone()
  1488. tool.Parent = Player.Backpack
  1489.  
  1490. end)
  1491.  
  1492. ToysPage1.BrightBlue.MouseButton1Down:connect(function ()
  1493.  
  1494. local tool = DATA.BluePath:Clone()
  1495. tool.Parent = Player.Backpack
  1496.  
  1497. end)
  1498.  
  1499. ToysPage1.BrightViolet.MouseButton1Down:connect(function ()
  1500.  
  1501. local tool = DATA.VioletPath:Clone()
  1502. tool.Parent = Player.Backpack
  1503.  
  1504. end)
  1505.  
  1506. ToysPage1.BrightGreen.MouseButton1Down:connect(function ()
  1507.  
  1508. local tool = DATA.GreenPath:Clone()
  1509. tool.Parent = Player.Backpack
  1510.  
  1511. end)
  1512.  
  1513. ToysPage1.BrightOrange.MouseButton1Down:connect(function ()
  1514.  
  1515. local tool = DATA.OrangePath:Clone()
  1516. tool.Parent = Player.Backpack
  1517.  
  1518. end)
  1519.  
  1520. ToysPage1.Pink.MouseButton1Down:connect(function ()
  1521.  
  1522. local tool = DATA.PinkPath:Clone()
  1523. tool.Parent = Player.Backpack
  1524.  
  1525. end)
  1526.  
  1527. ToysPage1.Minigun.MouseButton1Down:connect(function ()
  1528.  
  1529. local tool = DATA.M134:Clone()
  1530. tool.Parent = Player.Backpack
  1531.  
  1532. end)
  1533.  
  1534. ToysPage1.Jeep.MouseButton1Down:connect(function ()
  1535.  
  1536. local Jeep = game:GetObjects('rbxassetid://264273799')[1]
  1537. Jeep.Parent = game.Workspace
  1538. Jeep:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  1539. Jeep:MakeJoints()
  1540.  
  1541. end)
  1542.  
  1543. ToysPage1.L33T.MouseButton1Down:connect(function ()
  1544.  
  1545. local tool = DATA.L33T:Clone()
  1546. tool.Parent = Player.Backpack
  1547.  
  1548. end)
  1549.  
  1550. ToysPage1.LaserArm.MouseButton1Down:connect(function ()
  1551.  
  1552. local tool = DATA.LaserArm:Clone()
  1553. tool.Parent = Player.Backpack
  1554.  
  1555. end)
  1556.  
  1557. ToysPage1.OS.MouseButton1Down:connect(function ()
  1558.  
  1559. local tool = DATA.OrbitalStrike:Clone()
  1560. tool.Parent = Player.Backpack
  1561.  
  1562. end)
  1563.  
  1564. ToysPage1.Bait.MouseButton1Down:connect(function ()
  1565.  
  1566. loadstring(game:GetObjects('rbxassetid://293026637')[1].Source)()
  1567.  
  1568. end)
  1569.  
  1570. ToysPage1.HR.MouseButton1Down:connect(function ()
  1571.  
  1572. loadstring(game:GetObjects('rbxassetid://293039308')[1].Source)()
  1573.  
  1574. end)
  1575.  
  1576. ToysPage1.RL.MouseButton1Down:connect(function ()
  1577.  
  1578. local tool = DATA.RocketLauncher:Clone()
  1579. tool.Parent = Player.Backpack
  1580.  
  1581. end)
  1582.  
  1583. ToysPage1.Trowel.MouseButton1Down:connect(function ()
  1584.  
  1585. local tool = DATA.ClassicTrowel:Clone()
  1586. tool.Parent = Player.Backpack
  1587.  
  1588. end)
  1589.  
  1590. ToysPage1.Sword.MouseButton1Down:connect(function ()
  1591.  
  1592. local tool = DATA.Sword:Clone()
  1593. tool.Parent = Player.Backpack
  1594.  
  1595. end)
  1596.  
  1597. ToysPage1.Barrett.MouseButton1Down:connect(function ()
  1598.  
  1599. if game.Workspace:FindFirstChild('BulletHolder') then
  1600. game.Workspace.BulletHolder:Destroy()
  1601. end
  1602.  
  1603. local BulletHolder = DATA.BulletHolder:Clone()
  1604. BulletHolder.Parent = game.Workspace
  1605.  
  1606. wait(0.1)
  1607.  
  1608. local tool = DATA['Barrett .50Cal']:Clone()
  1609. tool.Parent = Player.Backpack
  1610.  
  1611. end)
  1612.  
  1613. ToysPage1.R700.MouseButton1Down:connect(function ()
  1614.  
  1615. if game.Workspace:FindFirstChild('BulletHolder') then
  1616. game.Workspace.BulletHolder:Destroy()
  1617. end
  1618.  
  1619. local BulletHolder = DATA.BulletHolder:Clone()
  1620. BulletHolder.Parent = game.Workspace
  1621.  
  1622. wait(0.1)
  1623.  
  1624. local tool = DATA.R700:Clone()
  1625. tool.Parent = Player.Backpack
  1626.  
  1627. end)
  1628.  
  1629. ToysPage1.G36C.MouseButton1Down:connect(function ()
  1630.  
  1631. if game.Workspace:FindFirstChild('BulletHolder') then
  1632. game.Workspace.BulletHolder:Destroy()
  1633. end
  1634.  
  1635. local BulletHolder = DATA.BulletHolder:Clone()
  1636. BulletHolder.Parent = game.Workspace
  1637.  
  1638. wait(0.1)
  1639.  
  1640. local tool = DATA.G36C:Clone()
  1641. tool.Parent = Player.Backpack
  1642.  
  1643. end)
  1644.  
  1645. ToysPage1.L86.MouseButton1Down:connect(function ()
  1646.  
  1647. if game.Workspace:FindFirstChild('BulletHolder') then
  1648. game.Workspace.BulletHolder:Destroy()
  1649. end
  1650.  
  1651. local BulletHolder = DATA.BulletHolder:Clone()
  1652. BulletHolder.Parent = game.Workspace
  1653.  
  1654. wait(0.1)
  1655.  
  1656. local tool = DATA['L86 LSW']:Clone()
  1657. tool.Parent = Player.Backpack
  1658.  
  1659. end)
  1660.  
  1661. ToysPage1.M1014.MouseButton1Down:connect(function ()
  1662.  
  1663. if game.Workspace:FindFirstChild('BulletHolder') then
  1664. game.Workspace.BulletHolder:Destroy()
  1665. end
  1666.  
  1667. local BulletHolder = DATA.BulletHolder:Clone()
  1668. BulletHolder.Parent = game.Workspace
  1669.  
  1670. wait(0.1)
  1671.  
  1672. local tool = DATA.M1014:Clone()
  1673. tool.Parent = Player.Backpack
  1674.  
  1675. end)
  1676.  
  1677.  
  1678. ToysPage1.M16.MouseButton1Down:connect(function ()
  1679.  
  1680. if game.Workspace:FindFirstChild('BulletHolder') then
  1681. game.Workspace.BulletHolder:Destroy()
  1682. end
  1683.  
  1684. local BulletHolder = DATA.BulletHolder:Clone()
  1685. BulletHolder.Parent = game.Workspace
  1686.  
  1687. wait(0.1)
  1688.  
  1689. local tool = DATA.M16:Clone()
  1690. tool.Parent = Player.Backpack
  1691.  
  1692. end)
  1693.  
  1694. ToysPage1.M4A1.MouseButton1Down:connect(function ()
  1695.  
  1696. if game.Workspace:FindFirstChild('BulletHolder') then
  1697. game.Workspace.BulletHolder:Destroy()
  1698. end
  1699.  
  1700. local BulletHolder = DATA.BulletHolder:Clone()
  1701. BulletHolder.Parent = game.Workspace
  1702.  
  1703. wait(0.1)
  1704.  
  1705. local tool = DATA.M4A1:Clone()
  1706. tool.Parent = Player.Backpack
  1707.  
  1708. end)
  1709.  
  1710.  
  1711. ToysPage1.SCAR.MouseButton1Down:connect(function ()
  1712.  
  1713. if game.Workspace:FindFirstChild('BulletHolder') then
  1714. game.Workspace.BulletHolder:Destroy()
  1715. end
  1716.  
  1717. local BulletHolder = DATA.BulletHolder:Clone()
  1718. BulletHolder.Parent = game.Workspace
  1719.  
  1720. wait(0.1)
  1721.  
  1722. local tool = DATA['SCAR-L']:Clone()
  1723. tool.Parent = Player.Backpack
  1724.  
  1725. end)
  1726.  
  1727. ToysPage1.TAR.MouseButton1Down:connect(function ()
  1728.  
  1729. if game.Workspace:FindFirstChild('BulletHolder') then
  1730. game.Workspace.BulletHolder:Destroy()
  1731. end
  1732.  
  1733. local BulletHolder = DATA.BulletHolder:Clone()
  1734. BulletHolder.Parent = game.Workspace
  1735.  
  1736. wait(0.1)
  1737.  
  1738. local tool = DATA['TAR-21']:Clone()
  1739. tool.Parent = Player.Backpack
  1740.  
  1741. end)
  1742.  
  1743.  
  1744.  
  1745.  
  1746.  
  1747.  
  1748.  
  1749.  
  1750.  
  1751.  
  1752.  
  1753. --Players Page--
  1754.  
  1755. local BannedPlayers = {}
  1756.  
  1757. game.Players.PlayerAdded:connect(function(player)
  1758.  
  1759. for i,v in pairs(BannedPlayers) do
  1760.  
  1761. if player == v then
  1762. player:Destroy()
  1763. end
  1764.  
  1765. end
  1766.  
  1767. end)
  1768.  
  1769. wait(1)
  1770.  
  1771. local PlayersList = PlayersPage:WaitForChild('PlayersList')
  1772. local Commands = PlayersPage:WaitForChild('Commands')
  1773.  
  1774. function LoadPlayers()
  1775.  
  1776. for i,v in pairs(PlayersList:GetChildren())do
  1777. v:Destroy()
  1778. end
  1779.  
  1780. local GetPlayers = game.Players:GetPlayers()
  1781. for i = 1, #GetPlayers do
  1782.  
  1783. local YSize = 25
  1784. local Position = ((i * YSize) - YSize)
  1785. local PlayerLabel = PlayersPage.PlayersExample:Clone()
  1786. PlayerLabel.Name = GetPlayers[i].Name
  1787. PlayerLabel.Parent = PlayersList
  1788. PlayerLabel.Text = GetPlayers[i].Name
  1789. PlayerLabel.Position = UDim2.new(0, 5, 0, Position + 5)
  1790. PlayersList.CanvasSize = UDim2.new(0, 0, 0, Position + 35)
  1791.  
  1792. PlayerLabel.BackgroundTransparency = 0.5
  1793. PlayerLabel.TextTransparency = 0
  1794.  
  1795. PlayerLabel.MouseButton1Down:connect(function ()
  1796.  
  1797. Commands.SelectedPlayer.Value = PlayerLabel.Text
  1798. PlayersPage.Player.Text = PlayerLabel.Text
  1799.  
  1800. end)
  1801.  
  1802. end
  1803.  
  1804. end
  1805.  
  1806. LoadPlayers()
  1807.  
  1808. game.Players.ChildAdded:connect(LoadPlayers)
  1809.  
  1810. game.Players.ChildRemoved:connect(LoadPlayers)
  1811.  
  1812. for _,v in pairs(Commands:GetChildren()) do
  1813.  
  1814. if v:IsA('TextButton') then
  1815.  
  1816. v.MouseButton1Down:connect(function ()
  1817.  
  1818. if Commands.SelectedPlayer.Value ~= '' then
  1819.  
  1820. local PlayerSelected = game.Players[Commands.SelectedPlayer.Value]
  1821. if v.Name == 'FF' then
  1822. local FF = Instance.new('ForceField', PlayerSelected.Character)
  1823.  
  1824. elseif v.Name == 'FIRE' then
  1825. local FIRE1 = Instance.new('Fire', PlayerSelected.Character.Head)
  1826. local FIRE2 = Instance.new('Fire', PlayerSelected.Character.Torso)
  1827. local FIRE3 = Instance.new('Fire', PlayerSelected.Character['Left Arm'])
  1828. local FIRE4 = Instance.new('Fire', PlayerSelected.Character['Right Arm'])
  1829. local FIRE5 = Instance.new('Fire', PlayerSelected.Character['Left Leg'])
  1830. local FIRE6 = Instance.new('Fire', PlayerSelected.Character['Right Leg'])
  1831.  
  1832. elseif v.Name == 'SPARKLES' then
  1833. local SP1 = Instance.new('Sparkles', PlayerSelected.Character.Head)
  1834. local SP2 = Instance.new('Sparkles', PlayerSelected.Character.Torso)
  1835. local SP3 = Instance.new('Sparkles', PlayerSelected.Character['Left Arm'])
  1836. local SP4 = Instance.new('Sparkles', PlayerSelected.Character['Right Arm'])
  1837. local SP5 = Instance.new('Sparkles', PlayerSelected.Character['Left Leg'])
  1838. local SP6 = Instance.new('Sparkles', PlayerSelected.Character['Right Leg'])
  1839.  
  1840. elseif v.Name == 'SMOKE' then
  1841. local SMOKE = Instance.new('Smoke', PlayerSelected.Character.Torso)
  1842.  
  1843. elseif v.Name == 'BOX' then
  1844. local SB = Instance.new('SelectionBox', PlayerSelected.Character)
  1845. SB.Adornee = SB.Parent
  1846.  
  1847. elseif v.Name == 'SPHERE' then
  1848. local SS = Instance.new('SelectionSphere', PlayerSelected.Character)
  1849. SS.Adornee = SS.Parent
  1850.  
  1851. elseif v.Name == 'SPAM' then
  1852. while wait(0) do
  1853. game.Chat:Chat(PlayerSelected.Character.Head, 'FREE EXPLOITS? XDDDD')
  1854. wait(0.2)
  1855. game.Chat:Chat(PlayerSelected.Character.Head, 'STIGMA V69???')
  1856. wait(0.2)
  1857. game.Chat:Chat(PlayerSelected.Character.Head, 'FREE HAX??')
  1858. wait(0.2)
  1859. end
  1860.  
  1861. elseif v.Name == 'SIT' then
  1862. PlayerSelected.Character.Humanoid.Sit = true
  1863.  
  1864. elseif v.Name == 'BTOOLS' then
  1865. Instance.new('HopperBin', PlayerSelected.Backpack).BinType = 2
  1866. Instance.new('HopperBin', PlayerSelected.Backpack).BinType = 3
  1867. Instance.new('HopperBin', PlayerSelected.Backpack).BinType = 4
  1868.  
  1869. elseif v.Name == 'LAG' then
  1870. PlayerSelected.Character.Torso.Anchored = true
  1871. PlayerSelected.CameraMode = 'LockFirstPerson'
  1872. while wait(0) do
  1873. Instance.new('Smoke', PlayerSelected.Character.Head)
  1874. Instance.new('Smoke', PlayerSelected.Character.Torso)
  1875. Instance.new('Smoke', PlayerSelected.Character['Left Arm'])
  1876. Instance.new('Smoke', PlayerSelected.Character['Right Arm'])
  1877. Instance.new('Smoke', PlayerSelected.Character['Left Leg'])
  1878. Instance.new('Smoke', PlayerSelected.Character['Right Leg'])
  1879. end
  1880.  
  1881. elseif v.Name == 'KICK' then
  1882. PlayerSelected:Destroy()
  1883.  
  1884. elseif v.Name == 'BAN' then
  1885. BannedPlayers[#BannedPlayers + 1] = v
  1886. PlayerSelected:Destroy()
  1887.  
  1888. end
  1889.  
  1890. end
  1891.  
  1892. end)
  1893.  
  1894. end
  1895.  
  1896. end
  1897.  
  1898.  
  1899.  
  1900.  
  1901.  
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907.  
  1908. --Hats Page--
  1909.  
  1910. InHatsPage.RemoveHats.MouseButton1Down:connect(function ()
  1911.  
  1912. for _,v in pairs(Player.Character:GetChildren()) do
  1913. if v:IsA('Hat') then
  1914. v:Destroy()
  1915. end
  1916. end
  1917.  
  1918. end)
  1919.  
  1920. InHatsPage.STF.MouseButton1Down:connect(function ()
  1921.  
  1922. game:GetObjects('http://www.roblox.com/asset/?id=1285307')[1].Parent = Player.Character
  1923.  
  1924. end)
  1925.  
  1926. InHatsPage.RSTF.MouseButton1Down:connect(function ()
  1927.  
  1928. game:GetObjects('http://www.roblox.com/asset/?id=72082328')[1].Parent = Player.Character
  1929.  
  1930. end)
  1931.  
  1932. InHatsPage.OSTF.MouseButton1Down:connect(function ()
  1933.  
  1934. game:GetObjects('http://www.roblox.com/asset/?id=215751161')[1].Parent = Player.Character
  1935.  
  1936. end)
  1937.  
  1938. InHatsPage.PSTF.MouseButton1Down:connect(function ()
  1939.  
  1940. game:GetObjects('http://www.roblox.com/asset/?id=63043890')[1].Parent = Player.Character
  1941.  
  1942. end)
  1943.  
  1944. InHatsPage.GSTF.MouseButton1Down:connect(function ()
  1945.  
  1946. game:GetObjects('http://www.roblox.com/asset/?id=100929604')[1].Parent = Player.Character
  1947.  
  1948. end)
  1949.  
  1950. InHatsPage.TSTF.MouseButton1Down:connect(function ()
  1951.  
  1952. game:GetObjects('http://www.roblox.com/asset/?id=147180077')[1].Parent = Player.Character
  1953.  
  1954. end)
  1955.  
  1956. InHatsPage.BSTF.MouseButton1Down:connect(function ()
  1957.  
  1958. game:GetObjects('http://www.roblox.com/asset/?id=259423244')[1].Parent = Player.Character
  1959.  
  1960. end)
  1961.  
  1962. InHatsPage.BSSTF.MouseButton1Down:connect(function ()
  1963.  
  1964. game:GetObjects('http://www.roblox.com/asset/?id=98346834')[1].Parent = Player.Character
  1965.  
  1966. end)
  1967.  
  1968. InHatsPage.MBSTF.MouseButton1Down:connect(function ()
  1969.  
  1970. game:GetObjects('http://www.roblox.com/asset/?id=119916949')[1].Parent = Player.Character
  1971.  
  1972. end)
  1973.  
  1974. InHatsPage.CWS.MouseButton1Down:connect(function ()
  1975.  
  1976. game:GetObjects('http://www.roblox.com/asset/?id=11748356')[1].Parent = Player.Character
  1977.  
  1978. end)
  1979.  
  1980. InHatsPage.CWHP.MouseButton1Down:connect(function ()
  1981.  
  1982. game:GetObjects('http://www.roblox.com/asset/?id=1235488')[1].Parent = Player.Character
  1983.  
  1984. end)
  1985.  
  1986. InHatsPage.BBR.MouseButton1Down:connect(function ()
  1987.  
  1988. game:GetObjects('http://www.roblox.com/asset/?id=52458643')[1].Parent = Player.Character
  1989.  
  1990. end)
  1991.  
  1992. InHatsPage.DE.MouseButton1Down:connect(function ()
  1993.  
  1994. game:GetObjects('http://www.roblox.com/asset/?id=21070012')[1].Parent = Player.Character
  1995.  
  1996. end)
  1997.  
  1998. InHatsPage.DF.MouseButton1Down:connect(function ()
  1999.  
  2000. game:GetObjects('http://www.roblox.com/asset/?id=48545806')[1].Parent = Player.Character
  2001.  
  2002. end)
  2003.  
  2004. InHatsPage.DI.MouseButton1Down:connect(function ()
  2005.  
  2006. game:GetObjects('http://www.roblox.com/asset/?id=31101391')[1].Parent = Player.Character
  2007.  
  2008. end)
  2009.  
  2010. InHatsPage.DAS.MouseButton1Down:connect(function ()
  2011.  
  2012. game:GetObjects('http://www.roblox.com/asset/?id=162067148')[1].Parent = Player.Character
  2013.  
  2014. end)
  2015.  
  2016. InHatsPage.DM.MouseButton1Down:connect(function ()
  2017.  
  2018. game:GetObjects('http://www.roblox.com/asset/?id=64444871')[1].Parent = Player.Character
  2019.  
  2020. end)
  2021.  
  2022. InHatsPage.DAU.MouseButton1Down:connect(function ()
  2023.  
  2024. game:GetObjects('http://www.roblox.com/asset/?id=138932314')[1].Parent = Player.Character
  2025.  
  2026. end)
  2027.  
  2028. InHatsPage.DR.MouseButton1Down:connect(function ()
  2029.  
  2030. game:GetObjects('http://www.roblox.com/asset/?id=250395631')[1].Parent = Player.Character
  2031.  
  2032. end)
  2033.  
  2034. InHatsPage.DV.MouseButton1Down:connect(function ()
  2035.  
  2036. game:GetObjects('http://www.roblox.com/asset/?id=96103379')[1].Parent = Player.Character
  2037.  
  2038. end)
  2039.  
  2040.  
  2041.  
  2042.  
  2043.  
  2044.  
  2045.  
  2046.  
  2047.  
  2048.  
  2049.  
  2050. --Settings Page--
  2051.  
  2052. SettingsPage.BorderBlack.MouseButton1Down:connect(function ()
  2053.  
  2054. local ColorX = 0
  2055. local ColorY = 0
  2056. local ColorZ = 0
  2057.  
  2058. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2059. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2060. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2061. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2062. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2063. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2064.  
  2065. end)
  2066.  
  2067. SettingsPage.BorderRed.MouseButton1Down:connect(function ()
  2068.  
  2069. local ColorX = 255
  2070. local ColorY = 0
  2071. local ColorZ = 0
  2072.  
  2073. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2074. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2075. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2076. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2077. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2078. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2079.  
  2080. end)
  2081.  
  2082. SettingsPage.BorderGreen.MouseButton1Down:connect(function ()
  2083.  
  2084. local ColorX = 0
  2085. local ColorY = 255
  2086. local ColorZ = 0
  2087.  
  2088. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2089. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2090. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2091. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2092. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2093. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2094.  
  2095. end)
  2096.  
  2097. SettingsPage.BorderBlue.MouseButton1Down:connect(function ()
  2098.  
  2099. local ColorX = 0
  2100. local ColorY = 0
  2101. local ColorZ = 255
  2102.  
  2103. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2104. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2105. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2106. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2107. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2108. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2109.  
  2110. end)
  2111.  
  2112. SettingsPage.BorderPink.MouseButton1Down:connect(function ()
  2113.  
  2114. local ColorX = 255
  2115. local ColorY = 0
  2116. local ColorZ = 255
  2117.  
  2118. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2119. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2120. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2121. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2122. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2123. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2124.  
  2125. end)
  2126.  
  2127. SettingsPage.BorderYellow.MouseButton1Down:connect(function ()
  2128.  
  2129. local ColorX = 255
  2130. local ColorY = 255
  2131. local ColorZ = 0
  2132.  
  2133. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2134. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2135. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2136. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2137. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2138. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2139.  
  2140. end)
  2141.  
  2142. SettingsPage.BorderLightBlue.MouseButton1Down:connect(function ()
  2143.  
  2144. local ColorX = 0
  2145. local ColorY = 255
  2146. local ColorZ = 255
  2147.  
  2148. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2149. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2150. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2151. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2152. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2153. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2154.  
  2155. end)
  2156.  
  2157. SettingsPage.BorderWhite.MouseButton1Down:connect(function ()
  2158.  
  2159. local ColorX = 255
  2160. local ColorY = 255
  2161. local ColorZ = 255
  2162.  
  2163. GUI.Top.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2164. GUI.Bottom.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2165. GUI.Left.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2166. GUI.Right.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2167. GUI.Right1.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2168. GUI.Tabs.BackgroundColor = BrickColor.new(ColorX,ColorY,ColorZ)
  2169.  
  2170. end)
  2171.  
  2172. SettingsPage.Execute.MouseButton1Down:connect(function ()
  2173.  
  2174. delay(0, function ()
  2175.  
  2176. local Script, Loaderr = loadstring(SettingsPage.Script.Text)
  2177.  
  2178. if not Script then
  2179.  
  2180. SettingsPage.Output.Text = 'ERROR: ' .. Loaderr
  2181.  
  2182. return
  2183.  
  2184. end
  2185.  
  2186. local Success, Runerr = pcall(Script)
  2187.  
  2188. if not Success then
  2189.  
  2190. SettingsPage.Output.Text = 'ERROR ' .. Runerr
  2191.  
  2192. return
  2193.  
  2194. end
  2195.  
  2196. end)
  2197.  
  2198. end)
  2199.  
  2200. SettingsPage.ClearS.MouseButton1Down:connect(function ()
  2201.  
  2202. SettingsPage.Script.Text = ''
  2203.  
  2204. end)
  2205.  
  2206. SettingsPage.ClearO.MouseButton1Down:connect(function ()
  2207.  
  2208. SettingsPage.Output.Text = ''
  2209. end)
  2210.  
  2211. SettingsPage.Set.SetSize.MouseButton1Down:connect(function ()
  2212.  
  2213. function scale(chr,scl)
  2214.  
  2215. for _,v in pairs(Player.Character:GetChildren()) do
  2216. if v:IsA('Hat') then
  2217. v:Clone()
  2218. v.Parent = game.Lighting
  2219. end
  2220. end
  2221.  
  2222. local Head = chr['Head']
  2223. local Torso = chr['Torso']
  2224. local LA = chr['Left Arm']
  2225. local RA = chr['Right Arm']
  2226. local LL = chr['Left Leg']
  2227. local RL = chr['Right Leg']
  2228. local HRP = chr['HumanoidRootPart']
  2229.  
  2230. wait(0.1)
  2231.  
  2232. Head.formFactor = 3
  2233. Torso.formFactor = 3
  2234. LA.formFactor = 3
  2235. RA.formFactor = 3
  2236. LL.formFactor = 3
  2237. RL.formFactor = 3
  2238. HRP.formFactor = 3
  2239.  
  2240. Head.Size = Vector3.new(scl * 2, scl, scl)
  2241. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  2242. LA.Size = Vector3.new(scl, scl * 2, scl)
  2243. RA.Size = Vector3.new(scl, scl * 2, scl)
  2244. LL.Size = Vector3.new(scl, scl * 2, scl)
  2245. RL.Size = Vector3.new(scl, scl * 2, scl)
  2246. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  2247.  
  2248. local Motor1 = Instance.new('Motor6D', Torso)
  2249. Motor1.Part0 = Torso
  2250. Motor1.Part1 = Head
  2251. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  2252. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  2253. Motor1.Name = 'Neck'
  2254.  
  2255. local Motor2 = Instance.new('Motor6D', Torso)
  2256. Motor2.Part0 = Torso
  2257. Motor2.Part1 = LA
  2258. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2259. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2260. Motor2.Name = 'Left Shoulder'
  2261.  
  2262. local Motor3 = Instance.new('Motor6D', Torso)
  2263. Motor3.Part0 = Torso
  2264. Motor3.Part1 = RA
  2265. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2266. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2267. Motor3.Name = 'Right Shoulder'
  2268.  
  2269. local Motor4 = Instance.new('Motor6D', Torso)
  2270. Motor4.Part0 = Torso
  2271. Motor4.Part1 = LL
  2272. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2273. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2274. Motor4.Name = 'Left Hip'
  2275.  
  2276. local Motor5 = Instance.new('Motor6D', Torso)
  2277. Motor5.Part0 = Torso
  2278. Motor5.Part1 = RL
  2279. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2280. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2281. Motor5.Name = 'Right Hip'
  2282.  
  2283. local Motor6 = Instance.new('Motor6D', HRP)
  2284. Motor6.Part0 = HRP
  2285. Motor6.Part1 = Torso
  2286. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  2287. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  2288.  
  2289. end
  2290.  
  2291. scale(game.Players.LocalPlayer.Character, SettingsPage.Set.SizeNumber.Text)
  2292.  
  2293. for _,v in pairs(game.Lighting:GetChildren()) do
  2294. if v:IsA('Hat') then
  2295. v.Parent = Player.Character
  2296. end
  2297. end
  2298.  
  2299. end)
  2300.  
  2301. SettingsPage.Set.SetTime.MouseButton1Down:connect(function ()
  2302.  
  2303. game.Lighting.TimeOfDay = SettingsPage.Set.TimeNumber.Text
  2304.  
  2305. end)
  2306.  
  2307. SettingsPage.Set.OutlinesTrue.MouseButton1Down:connect(function ()
  2308.  
  2309. SettingsPage.Set.OutlinesTrue.Visible = false
  2310.  
  2311. SettingsPage.Set.OutlinesFalse.Visible = true
  2312.  
  2313. game.Lighting.Outlines = false
  2314.  
  2315. end)
  2316.  
  2317. SettingsPage.Set.OutlinesFalse.MouseButton1Down:connect(function ()
  2318.  
  2319. SettingsPage.Set.OutlinesTrue.Visible = true
  2320.  
  2321. SettingsPage.Set.OutlinesFalse.Visible = false
  2322.  
  2323. game.Lighting.Outlines = true
  2324.  
  2325. end)
  2326.  
  2327. SettingsPage.Set.DecalSpam.MouseButton1Down:connect(function ()
  2328.  
  2329. for i,v in pairs(game.Workspace:GetChildren()) do
  2330.  
  2331. for i = 0, 5 do
  2332.  
  2333. local Decal = Instance.new('Decal', v)
  2334. Decal.Face = i
  2335. Decal.Texture = 'http://www.roblox.com/asset/?id=' .. SettingsPage.Set.SpamNumber.Text
  2336. Decal.Name = 'YourMomSpam'
  2337.  
  2338. end
  2339.  
  2340. end
  2341.  
  2342. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement