Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.44 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169. wait(0.5)
  170.  
  171. plrs = nil
  172. for _,p in pairs(game:GetChildren()) do
  173. if p.ClassName == ("Players") then
  174. plrs = p
  175. end
  176. end
  177.  
  178.  
  179. while true do
  180. wait(0.1)
  181. for _, v in pairs(plrs:GetChildren()) do
  182. if v.TeamColor ~= plrs.LocalPlayer.TeamColor and not v.Character.Head:FindFirstChild("BillboardGui") then -- ~=
  183. i = Instance.new("BillboardGui",v.Character.Head)
  184. i.Active = true
  185. i.AlwaysOnTop = true
  186. i.Size = UDim2.new(1,0,1,0)
  187. h = Instance.new("Frame",i)
  188. h.Size = UDim2.new(2,0,1,0)
  189. h.AnchorPoint = Vector2.new(0.25, 0)
  190. h.BackgroundColor3 = Color3.new(1,0,0)
  191. h.BorderSizePixel = 0
  192. h.BackgroundTransparency = 0.4
  193.  
  194. i2 = Instance.new("BillboardGui",v.Character.Torso)
  195. i2.Active = true
  196. i2.AlwaysOnTop = true
  197. i2.Size = UDim2.new(2,0,2,0)
  198. t = Instance.new("Frame",i2)
  199. t.Size = UDim2.new(1,0,1,0)
  200. t.AnchorPoint = Vector2.new(0, 0)
  201. t.BackgroundColor3 = Color3.new(0,1,0)
  202. t.BorderSizePixel = 0
  203. t.BackgroundTransparency = 0.4
  204.  
  205. i3 = Instance.new("BillboardGui",v.Character["Left Arm"])
  206. i3.Active = true
  207. i3.AlwaysOnTop = true
  208. i3.Size = UDim2.new(1,0,2,0)
  209. la = Instance.new("Frame",i3)
  210. la.Size = UDim2.new(1,0,1,0)
  211. la.AnchorPoint = Vector2.new(0, 0)
  212. la.BackgroundColor3 = Color3.new(0,0,1)
  213. la.BorderSizePixel = 0
  214. la.BackgroundTransparency = 0.4
  215.  
  216. i4 = Instance.new("BillboardGui",v.Character["Right Arm"])
  217. i4.Active = true
  218. i4.AlwaysOnTop = true
  219. i4.Size = UDim2.new(1,0,2,0)
  220. ra = Instance.new("Frame",i4)
  221. ra.Size = UDim2.new(1,0,1,0)
  222. ra.AnchorPoint = Vector2.new(0, 0)
  223. ra.BackgroundColor3 = Color3.new(0,0,1)
  224. ra.BorderSizePixel = 0
  225. ra.BackgroundTransparency = 0.4
  226.  
  227. i5 = Instance.new("BillboardGui",v.Character["Left Leg"])
  228. i5.Active = true
  229. i5.AlwaysOnTop = true
  230. i5.Size = UDim2.new(1,0,2,0)
  231. ll = Instance.new("Frame",i5)
  232. ll.Size = UDim2.new(1,0,1,0)
  233. ll.AnchorPoint = Vector2.new(0, 0)
  234. ll.BackgroundColor3 = Color3.new(0,0,1)
  235. ll.BorderSizePixel = 0
  236. ll.BackgroundTransparency = 0.4
  237.  
  238. i6 = Instance.new("BillboardGui",v.Character["Right Leg"])
  239. i6.Active = true
  240. i6.AlwaysOnTop = true
  241. i6.Size = UDim2.new(1,0,2,0)
  242. rl = Instance.new("Frame",i6)
  243. rl.Size = UDim2.new(1,0,1,0)
  244. rl.AnchorPoint = Vector2.new(0, 0)
  245. rl.BackgroundColor3 = Color3.new(0,0,1)
  246. rl.BorderSizePixel = 0
  247. rl.BackgroundTransparency = 0.4
  248.  
  249. end
  250. end
  251. end
  252.  
  253. G_1_=Instance.new("Sound")G_1_.SoundId="http://www.roblox.com/asset/?id=1375384985"G_1_.Parent=workspace G_1_:Play()for a,b in pairs(game.ReplicatedStorage.GunModules:GetChildren())do local a=require(b)a.unlockrank=0 game.StarterGui:SetCore("SendNotification",{Title="Weapon Unlock|";Text="|"..b.Name.."|< You have unlocked!";Duration=200;Callback=bindableFunction;Button1="free?! God's Plan"})end wait(29)G_1_:Remove()
  254.  
  255. local ScreenGui = Instance.new("ScreenGui")
  256.  
  257. local Base = Instance.new("Frame")
  258.  
  259. local Top = Instance.new("Frame")
  260.  
  261. local First = Instance.new("TextLabel")
  262.  
  263. local Second = Instance.new("TextLabel")
  264.  
  265. local Location = Instance.new("TextLabel")
  266.  
  267. local Exit = Instance.new("TextButton")
  268.  
  269. local HomeContainer = Instance.new("Frame")
  270.  
  271. local Players = Instance.new("Frame")
  272.  
  273. local ImageLabel = Instance.new("ImageLabel")
  274.  
  275. local TextLabel = Instance.new("TextLabel")
  276.  
  277. local Mask = Instance.new("TextButton")
  278.  
  279. local Server = Instance.new("Frame")
  280.  
  281. local ImageLabel_2 = Instance.new("ImageLabel")
  282.  
  283. local TextLabel_2 = Instance.new("TextLabel")
  284.  
  285. local Mask_2 = Instance.new("TextButton")
  286.  
  287. local LocalPlayer = Instance.new("Frame")
  288.  
  289. local ImageLabel_3 = Instance.new("ImageLabel")
  290.  
  291. local TextLabel_3 = Instance.new("TextLabel")
  292.  
  293. local Mask_3 = Instance.new("TextButton")
  294.  
  295. local Scripts = Instance.new("Frame")
  296.  
  297. local ImageLabel_4 = Instance.new("ImageLabel")
  298.  
  299. local TextLabel_4 = Instance.new("TextLabel")
  300.  
  301. local Mask_4 = Instance.new("TextButton")
  302.  
  303. local Miscellaneous = Instance.new("Frame")
  304.  
  305. local ImageLabel_5 = Instance.new("ImageLabel")
  306.  
  307. local TextLabel_5 = Instance.new("TextLabel")
  308.  
  309. local Mask_5 = Instance.new("TextButton")
  310.  
  311. local Settings = Instance.new("Frame")
  312.  
  313. local ImageLabel_6 = Instance.new("ImageLabel")
  314.  
  315. local TextLabel_6 = Instance.new("TextLabel")
  316.  
  317. local Mask_6 = Instance.new("TextButton")
  318.  
  319. local Navigator = Instance.new("ScrollingFrame")
  320.  
  321. local Item = Instance.new("TextButton")
  322.  
  323. local ServerContainer = Instance.new("ScrollingFrame")
  324.  
  325. local dd = Instance.new("TextButton")
  326.  
  327. local ImageLabel_7 = Instance.new("ImageLabel")
  328.  
  329. local LocalPlayerContainer = Instance.new("ScrollingFrame")
  330.  
  331. local PlayersContainer = Instance.new("ScrollingFrame")
  332.  
  333.  
  334.  
  335. -- Properties
  336.  
  337. local hist = game:GetService("LogService"):GetLogHistory()
  338.  
  339. local eiss = false
  340.  
  341. for i,v in pairs(hist) do
  342.  
  343. if string.find(v["message"]:lower(), "eiss") then
  344.  
  345. eiss = true
  346.  
  347. warn("Detected EISS, Parenting to PlayerGui")
  348.  
  349. end
  350.  
  351. end
  352.  
  353. if eiss then
  354.  
  355. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  356.  
  357. game.StarterGui.ResetPlayerGuiOnSpawn = false
  358.  
  359. else
  360.  
  361. ScreenGui.Parent = game.CoreGui
  362.  
  363. end
  364.  
  365.  
  366.  
  367. Base.Name = "Base"
  368.  
  369. Base.Parent = ScreenGui
  370.  
  371. Base.Active = true
  372.  
  373. Base.BackgroundColor3 = Color3.new(0.054902, 0.0901961, 0.113725)
  374.  
  375. Base.BorderColor3 = Color3.new(0.0156863, 0.027451, 0.0352941)
  376.  
  377. Base.BorderSizePixel = 2
  378.  
  379. Base.Draggable = true
  380.  
  381. Base.Position = UDim2.new(0, 50, 0, 250)
  382.  
  383. Base.Selectable = true
  384.  
  385. Base.Size = UDim2.new(0, 450, 0, 250)
  386.  
  387.  
  388.  
  389. Top.Name = "Top"
  390.  
  391. Top.Parent = Base
  392.  
  393. Top.BackgroundColor3 = Color3.new(0.027451, 0.0431373, 0.0588235)
  394.  
  395. Top.BackgroundTransparency = 0.5
  396.  
  397. Top.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  398.  
  399. Top.Position = UDim2.new(0, 10, 0, 7)
  400.  
  401. Top.Size = UDim2.new(1, -20, 0, 20)
  402.  
  403.  
  404.  
  405. First.Name = "First"
  406.  
  407. First.Parent = Top
  408.  
  409. First.BackgroundColor3 = Color3.new(1, 1, 1)
  410.  
  411. First.BackgroundTransparency = 1
  412.  
  413. First.BorderColor3 = Color3.new(0.32549, 0.313726, 0.313726)
  414.  
  415. First.Size = UDim2.new(1, 0, 1, 0)
  416.  
  417. First.Font = Enum.Font.SourceSans
  418.  
  419. First.FontSize = Enum.FontSize.Size18
  420.  
  421. First.Text = " T0PK3K 3.0"
  422.  
  423. First.TextColor3 = Color3.new(0.721569, 0.027451, 0.211765)
  424.  
  425. First.TextStrokeTransparency = 0
  426.  
  427. First.TextXAlignment = Enum.TextXAlignment.Left
  428.  
  429.  
  430.  
  431. Second.Name = "Second"
  432.  
  433. Second.Parent = Top
  434.  
  435. Second.BackgroundColor3 = Color3.new(1, 1, 1)
  436.  
  437. Second.BackgroundTransparency = 1
  438.  
  439. Second.BorderColor3 = Color3.new(0.32549, 0.313726, 0.313726)
  440.  
  441. Second.Position = UDim2.new(1, -125, 0, 0)
  442.  
  443. Second.Size = UDim2.new(0, 100, 1, 0)
  444.  
  445. Second.Font = Enum.Font.SourceSans
  446.  
  447. Second.FontSize = Enum.FontSize.Size18
  448.  
  449. Second.Text = "Cerberus Edition"
  450.  
  451. Second.TextColor3 = Color3.new(0.721569, 0.027451, 0.211765)
  452.  
  453. Second.TextStrokeTransparency = 0
  454.  
  455. Second.TextXAlignment = Enum.TextXAlignment.Left
  456.  
  457.  
  458.  
  459. Location.Name = "Location"
  460.  
  461. Location.Parent = Top
  462.  
  463. Location.BackgroundColor3 = Color3.new(1, 1, 1)
  464.  
  465. Location.BackgroundTransparency = 1
  466.  
  467. Location.BorderColor3 = Color3.new(0.32549, 0.313726, 0.313726)
  468.  
  469. Location.Position = UDim2.new(0, 90, 0, 0)
  470.  
  471. Location.Size = UDim2.new(1, -200, 1, 0)
  472.  
  473. Location.Font = Enum.Font.SourceSansBold
  474.  
  475. Location.FontSize = Enum.FontSize.Size18
  476.  
  477. Location.Text = "Home"
  478.  
  479. Location.TextColor3 = Color3.new(0.588235, 0.0196078, 0.172549)
  480.  
  481. Location.TextStrokeTransparency = 0
  482.  
  483.  
  484.  
  485. Exit.Name = "Exit"
  486.  
  487. Exit.Parent = Top
  488.  
  489. Exit.BackgroundColor3 = Color3.new(0.588235, 0.0196078, 0.172549)
  490.  
  491. Exit.BorderSizePixel = 0
  492.  
  493. Exit.Position = UDim2.new(1, -18, 0, 2)
  494.  
  495. Exit.Size = UDim2.new(0, 16, 0, 16)
  496.  
  497. Exit.Font = Enum.Font.SourceSansBold
  498.  
  499. Exit.FontSize = Enum.FontSize.Size14
  500.  
  501. Exit.Text = "X"
  502.  
  503. Exit.TextColor3 = Color3.new(1, 1, 1)
  504.  
  505. Exit.MouseButton1Down:connect(function()
  506.  
  507. Base.Parent = nil
  508.  
  509. end)
  510.  
  511.  
  512.  
  513. HomeContainer.Name = "HomeContainer"
  514.  
  515. HomeContainer.Parent = Base
  516.  
  517. HomeContainer.BackgroundColor3 = Color3.new(1, 1, 1)
  518.  
  519. HomeContainer.BackgroundTransparency = 1
  520.  
  521. HomeContainer.Position = UDim2.new(0, 10, 0, 50)
  522.  
  523. HomeContainer.Size = UDim2.new(1, -20, 1, -65)
  524.  
  525.  
  526.  
  527. Players.Name = "Players"
  528.  
  529. Players.Parent = HomeContainer
  530.  
  531. Players.BackgroundColor3 = Color3.new(1, 1, 1)
  532.  
  533. Players.BackgroundTransparency = 1
  534.  
  535. Players.Position = UDim2.new(0.666000009, 10, 0, 0)
  536.  
  537. Players.Size = UDim2.new(0.333000004, -10, 0.5, -10)
  538.  
  539.  
  540.  
  541. ImageLabel.Parent = Players
  542.  
  543. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  544.  
  545. ImageLabel.BackgroundTransparency = 1
  546.  
  547. ImageLabel.Position = UDim2.new(0.5, -25, 0, 0)
  548.  
  549. ImageLabel.Size = UDim2.new(0, 50, 0, 50)
  550.  
  551. ImageLabel.Image = "rbxassetid://573066980"
  552.  
  553. ImageLabel.ImageColor3 = Color3.new(0.615686, 0.0352941, 0.129412)
  554.  
  555.  
  556.  
  557. TextLabel.Parent = Players
  558.  
  559. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  560.  
  561. TextLabel.BackgroundTransparency = 1
  562.  
  563. TextLabel.Position = UDim2.new(0, 10, 1, -40)
  564.  
  565. TextLabel.Size = UDim2.new(1, -20, 0, 20)
  566.  
  567. TextLabel.Font = Enum.Font.SourceSansBold
  568.  
  569. TextLabel.FontSize = Enum.FontSize.Size24
  570.  
  571. TextLabel.Text = "Players"
  572.  
  573. TextLabel.TextColor3 = Color3.new(0.776471, 0.0235294, 0.137255)
  574.  
  575.  
  576.  
  577. Mask.Name = "Mask"
  578.  
  579. Mask.Parent = Players
  580.  
  581. Mask.BackgroundColor3 = Color3.new(1, 1, 1)
  582.  
  583. Mask.BackgroundTransparency = 1
  584.  
  585. Mask.Position = UDim2.new(0, 27, 0, 0)
  586.  
  587. Mask.Size = UDim2.new(1, -56, 0, 65)
  588.  
  589. Mask.Font = Enum.Font.SourceSans
  590.  
  591. Mask.FontSize = Enum.FontSize.Size14
  592.  
  593. Mask.Text = ""
  594.  
  595.  
  596.  
  597. Server.Name = "Server"
  598.  
  599. Server.Parent = HomeContainer
  600.  
  601. Server.BackgroundColor3 = Color3.new(1, 1, 1)
  602.  
  603. Server.BackgroundTransparency = 1
  604.  
  605. Server.Size = UDim2.new(0.333000004, -10, 0.5, -10)
  606.  
  607.  
  608.  
  609. ImageLabel_2.Parent = Server
  610.  
  611. ImageLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  612.  
  613. ImageLabel_2.BackgroundTransparency = 1
  614.  
  615. ImageLabel_2.Position = UDim2.new(0.5, -23, 0, 0)
  616.  
  617. ImageLabel_2.Size = UDim2.new(0, 46, 0, 46)
  618.  
  619. ImageLabel_2.Image = "rbxassetid://573084509"
  620.  
  621. ImageLabel_2.ImageColor3 = Color3.new(0.615686, 0.0352941, 0.129412)
  622.  
  623.  
  624.  
  625. TextLabel_2.Parent = Server
  626.  
  627. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  628.  
  629. TextLabel_2.BackgroundTransparency = 1
  630.  
  631. TextLabel_2.Position = UDim2.new(0, 10, 1, -40)
  632.  
  633. TextLabel_2.Size = UDim2.new(1, -20, 0, 20)
  634.  
  635. TextLabel_2.Font = Enum.Font.SourceSansBold
  636.  
  637. TextLabel_2.FontSize = Enum.FontSize.Size24
  638.  
  639. TextLabel_2.Text = "Server"
  640.  
  641. TextLabel_2.TextColor3 = Color3.new(0.776471, 0.0235294, 0.137255)
  642.  
  643.  
  644.  
  645. Mask_2.Name = "Mask"
  646.  
  647. Mask_2.Parent = Server
  648.  
  649. Mask_2.BackgroundColor3 = Color3.new(1, 1, 1)
  650.  
  651. Mask_2.BackgroundTransparency = 1
  652.  
  653. Mask_2.Position = UDim2.new(0, 27, 0, 0)
  654.  
  655. Mask_2.Size = UDim2.new(1, -56, 0, 65)
  656.  
  657. Mask_2.Font = Enum.Font.SourceSans
  658.  
  659. Mask_2.FontSize = Enum.FontSize.Size14
  660.  
  661. Mask_2.Text = ""
  662.  
  663.  
  664.  
  665. LocalPlayer.Name = "LocalPlayer"
  666.  
  667. LocalPlayer.Parent = HomeContainer
  668.  
  669. LocalPlayer.BackgroundColor3 = Color3.new(1, 1, 1)
  670.  
  671. LocalPlayer.BackgroundTransparency = 1
  672.  
  673. LocalPlayer.Position = UDim2.new(0.333000004, 10, 0, 0)
  674.  
  675. LocalPlayer.Size = UDim2.new(0.333000004, -10, 0.5, -10)
  676.  
  677.  
  678.  
  679. ImageLabel_3.Parent = LocalPlayer
  680.  
  681. ImageLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  682.  
  683. ImageLabel_3.BackgroundTransparency = 1
  684.  
  685. ImageLabel_3.Position = UDim2.new(0.5, -25, 0, 0)
  686.  
  687. ImageLabel_3.Size = UDim2.new(0, 50, 0, 50)
  688.  
  689. ImageLabel_3.Image = "rbxassetid://573078228"
  690.  
  691. ImageLabel_3.ImageColor3 = Color3.new(0.615686, 0.0352941, 0.129412)
  692.  
  693.  
  694.  
  695. TextLabel_3.Parent = LocalPlayer
  696.  
  697. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  698.  
  699. TextLabel_3.BackgroundTransparency = 1
  700.  
  701. TextLabel_3.Position = UDim2.new(0, 10, 1, -40)
  702.  
  703. TextLabel_3.Size = UDim2.new(1, -20, 0, 20)
  704.  
  705. TextLabel_3.Font = Enum.Font.SourceSansBold
  706.  
  707. TextLabel_3.FontSize = Enum.FontSize.Size24
  708.  
  709. TextLabel_3.Text = "LocalPlayer"
  710.  
  711. TextLabel_3.TextColor3 = Color3.new(0.776471, 0.0235294, 0.137255)
  712.  
  713.  
  714.  
  715. Mask_3.Name = "Mask"
  716.  
  717. Mask_3.Parent = LocalPlayer
  718.  
  719. Mask_3.BackgroundColor3 = Color3.new(1, 1, 1)
  720.  
  721. Mask_3.BackgroundTransparency = 1
  722.  
  723. Mask_3.Position = UDim2.new(0, 27, 0, 0)
  724.  
  725. Mask_3.Size = UDim2.new(1, -56, 0, 65)
  726.  
  727. Mask_3.Font = Enum.Font.SourceSans
  728.  
  729. Mask_3.FontSize = Enum.FontSize.Size14
  730.  
  731. Mask_3.Text = ""
  732.  
  733.  
  734.  
  735. Scripts.Name = "Scripts"
  736.  
  737. Scripts.Parent = HomeContainer
  738.  
  739. Scripts.BackgroundColor3 = Color3.new(1, 1, 1)
  740.  
  741. Scripts.BackgroundTransparency = 1
  742.  
  743. Scripts.Position = UDim2.new(0, 0, 0.5, 0)
  744.  
  745. Scripts.Size = UDim2.new(0.333000004, -10, 0.5, -10)
  746.  
  747.  
  748.  
  749. ImageLabel_4.Parent = Scripts
  750.  
  751. ImageLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  752.  
  753. ImageLabel_4.BackgroundTransparency = 1
  754.  
  755. ImageLabel_4.Position = UDim2.new(0.5, -25, 0, 0)
  756.  
  757. ImageLabel_4.Size = UDim2.new(0, 50, 0, 50)
  758.  
  759. ImageLabel_4.Image = "rbxassetid://573081437"
  760.  
  761. ImageLabel_4.ImageColor3 = Color3.new(0.615686, 0.0352941, 0.129412)
  762.  
  763.  
  764.  
  765. TextLabel_4.Parent = Scripts
  766.  
  767. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  768.  
  769. TextLabel_4.BackgroundTransparency = 1
  770.  
  771. TextLabel_4.Position = UDim2.new(0, 10, 1, -40)
  772.  
  773. TextLabel_4.Size = UDim2.new(1, -20, 0, 20)
  774.  
  775. TextLabel_4.Font = Enum.Font.SourceSansBold
  776.  
  777. TextLabel_4.FontSize = Enum.FontSize.Size24
  778.  
  779. TextLabel_4.Text = "Scripts"
  780.  
  781. TextLabel_4.TextColor3 = Color3.new(0.776471, 0.0235294, 0.137255)
  782.  
  783.  
  784.  
  785. Mask_4.Name = "Mask"
  786.  
  787. Mask_4.Parent = Scripts
  788.  
  789. Mask_4.BackgroundColor3 = Color3.new(1, 1, 1)
  790.  
  791. Mask_4.BackgroundTransparency = 1
  792.  
  793. Mask_4.Position = UDim2.new(0, 27, 0, 0)
  794.  
  795. Mask_4.Size = UDim2.new(1, -56, 0, 65)
  796.  
  797. Mask_4.Font = Enum.Font.SourceSans
  798.  
  799. Mask_4.FontSize = Enum.FontSize.Size14
  800.  
  801. Mask_4.Text = ""
  802.  
  803.  
  804.  
  805. Miscellaneous.Name = "Miscellaneous"
  806.  
  807. Miscellaneous.Parent = HomeContainer
  808.  
  809. Miscellaneous.BackgroundColor3 = Color3.new(1, 1, 1)
  810.  
  811. Miscellaneous.BackgroundTransparency = 1
  812.  
  813. Miscellaneous.Position = UDim2.new(0.333000004, 10, 0.5, 0)
  814.  
  815. Miscellaneous.Size = UDim2.new(0.333000004, -10, 0.5, -10)
  816.  
  817.  
  818.  
  819. ImageLabel_5.Parent = Miscellaneous
  820.  
  821. ImageLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  822.  
  823. ImageLabel_5.BackgroundTransparency = 1
  824.  
  825. ImageLabel_5.Position = UDim2.new(0.5, -23, 0, 0)
  826.  
  827. ImageLabel_5.Size = UDim2.new(0, 46, 0, 46)
  828.  
  829. ImageLabel_5.Image = "rbxassetid://573087376"
  830.  
  831. ImageLabel_5.ImageColor3 = Color3.new(0.615686, 0.0352941, 0.129412)
  832.  
  833.  
  834.  
  835. TextLabel_5.Parent = Miscellaneous
  836.  
  837. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  838.  
  839. TextLabel_5.BackgroundTransparency = 1
  840.  
  841. TextLabel_5.Position = UDim2.new(0, 10, 1, -40)
  842.  
  843. TextLabel_5.Size = UDim2.new(1, -20, 0, 20)
  844.  
  845. TextLabel_5.Font = Enum.Font.SourceSansBold
  846.  
  847. TextLabel_5.FontSize = Enum.FontSize.Size24
  848.  
  849. TextLabel_5.Text = "Miscellaneous"
  850.  
  851. TextLabel_5.TextColor3 = Color3.new(0.776471, 0.0235294, 0.137255)
  852.  
  853.  
  854.  
  855. Mask_5.Name = "Mask"
  856.  
  857. Mask_5.Parent = Miscellaneous
  858.  
  859. Mask_5.BackgroundColor3 = Color3.new(1, 1, 1)
  860.  
  861. Mask_5.BackgroundTransparency = 1
  862.  
  863. Mask_5.Position = UDim2.new(0, 27, 0, 0)
  864.  
  865. Mask_5.Size = UDim2.new(1, -56, 0, 65)
  866.  
  867. Mask_5.Font = Enum.Font.SourceSans
  868.  
  869. Mask_5.FontSize = Enum.FontSize.Size14
  870.  
  871. Mask_5.Text = ""
  872.  
  873.  
  874.  
  875. Settings.Name = "Settings"
  876.  
  877. Settings.Parent = HomeContainer
  878.  
  879. Settings.BackgroundColor3 = Color3.new(1, 1, 1)
  880.  
  881. Settings.BackgroundTransparency = 1
  882.  
  883. Settings.Position = UDim2.new(0.666000009, 10, 0.5, 0)
  884.  
  885. Settings.Size = UDim2.new(0.333000004, -10, 0.5, -10)
  886.  
  887.  
  888.  
  889. ImageLabel_6.Parent = Settings
  890.  
  891. ImageLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  892.  
  893. ImageLabel_6.BackgroundTransparency = 1
  894.  
  895. ImageLabel_6.Position = UDim2.new(0.5, -23, 0, 0)
  896.  
  897. ImageLabel_6.Size = UDim2.new(0, 46, 0, 46)
  898.  
  899. ImageLabel_6.Image = "rbxassetid://573090294"
  900.  
  901. ImageLabel_6.ImageColor3 = Color3.new(0.615686, 0.0352941, 0.129412)
  902.  
  903.  
  904.  
  905. TextLabel_6.Parent = Settings
  906.  
  907. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  908.  
  909. TextLabel_6.BackgroundTransparency = 1
  910.  
  911. TextLabel_6.Position = UDim2.new(0, 10, 1, -40)
  912.  
  913. TextLabel_6.Size = UDim2.new(1, -20, 0, 20)
  914.  
  915. TextLabel_6.Font = Enum.Font.SourceSansBold
  916.  
  917. TextLabel_6.FontSize = Enum.FontSize.Size24
  918.  
  919. TextLabel_6.Text = "Settings"
  920.  
  921. TextLabel_6.TextColor3 = Color3.new(0.776471, 0.0235294, 0.137255)
  922.  
  923.  
  924.  
  925. Mask_6.Name = "Mask"
  926.  
  927. Mask_6.Parent = Settings
  928.  
  929. Mask_6.BackgroundColor3 = Color3.new(1, 1, 1)
  930.  
  931. Mask_6.BackgroundTransparency = 1
  932.  
  933. Mask_6.Position = UDim2.new(0, 27, 0, 0)
  934.  
  935. Mask_6.Size = UDim2.new(1, -56, 0, 65)
  936.  
  937. Mask_6.Font = Enum.Font.SourceSans
  938.  
  939. Mask_6.FontSize = Enum.FontSize.Size14
  940.  
  941. Mask_6.Text = ""
  942.  
  943.  
  944.  
  945. Navigator.Name = "Navigator"
  946.  
  947. Navigator.Parent = Base
  948.  
  949. Navigator.BackgroundColor3 = Color3.new(0.027451, 0.0431373, 0.0588235)
  950.  
  951. Navigator.BackgroundTransparency = 0.5
  952.  
  953. Navigator.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  954.  
  955. Navigator.Position = UDim2.new(0, 10, 0, 35)
  956.  
  957. Navigator.Size = UDim2.new(0, 125, 1, -45)
  958.  
  959. Navigator.Visible = false
  960.  
  961. Navigator.BottomImage = "rbxassetid://573102620"
  962.  
  963. Navigator.MidImage = "rbxassetid://573102620"
  964.  
  965. Navigator.ScrollBarThickness = 5
  966.  
  967. Navigator.TopImage = "rbxassetid://573102620"
  968.  
  969.  
  970.  
  971. Item.Name = "Item"
  972.  
  973. Item.Parent = Navigator
  974.  
  975. Item.BackgroundColor3 = Color3.new(0.027451, 0.0431373, 0.0588235)
  976.  
  977. Item.BackgroundTransparency = 0.5
  978.  
  979. Item.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  980.  
  981. Item.Position = UDim2.new(0, 5, 0, 5)
  982.  
  983. Item.Size = UDim2.new(1, -15, 0, 20)
  984.  
  985. Item.Selected = true
  986.  
  987. Item.Font = Enum.Font.SourceSans
  988.  
  989. Item.FontSize = Enum.FontSize.Size14
  990.  
  991. Item.Text = "NavItem"
  992.  
  993. Item.TextColor3 = Color3.new(0.721569, 0.721569, 0.721569)
  994.  
  995.  
  996.  
  997. ServerContainer.Name = "ServerContainer"
  998.  
  999. ServerContainer.Parent = Base
  1000.  
  1001. ServerContainer.BackgroundColor3 = Color3.new(0.027451, 0.0431373, 0.0588235)
  1002.  
  1003. ServerContainer.BackgroundTransparency = 0.5
  1004.  
  1005. ServerContainer.Position = UDim2.new(0, 140, 0, 35)
  1006.  
  1007. ServerContainer.Size = UDim2.new(1, -150, 1, -45)
  1008.  
  1009. ServerContainer.Visible = false
  1010.  
  1011. ServerContainer.BottomImage = "rbxassetid://573102620"
  1012.  
  1013. ServerContainer.MidImage = "rbxassetid://573102620"
  1014.  
  1015. ServerContainer.ScrollBarThickness = 5
  1016.  
  1017. ServerContainer.TopImage = "rbxassetid://573102620"
  1018.  
  1019.  
  1020.  
  1021. dd.Name = "dd"
  1022.  
  1023. dd.Parent = ServerContainer
  1024.  
  1025. dd.BackgroundColor3 = Color3.new(0.0196078, 0.0313726, 0.0431373)
  1026.  
  1027. dd.Position = UDim2.new(0, 6, 0, 6)
  1028.  
  1029. dd.Size = UDim2.new(0.5, -10, 0, 20)
  1030.  
  1031. dd.Visible = false
  1032.  
  1033. dd.Font = Enum.Font.SourceSans
  1034.  
  1035. dd.FontSize = Enum.FontSize.Size14
  1036.  
  1037. dd.Text = "Troll Spam"
  1038.  
  1039. dd.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  1040.  
  1041. dd.TextStrokeTransparency = 0.5
  1042.  
  1043.  
  1044.  
  1045. ImageLabel_7.Parent = dd
  1046.  
  1047. ImageLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1048.  
  1049. ImageLabel_7.BackgroundTransparency = 1
  1050.  
  1051. ImageLabel_7.Position = UDim2.new(0, 2, 0, 0)
  1052.  
  1053. ImageLabel_7.Size = UDim2.new(0, 20, 0, 20)
  1054.  
  1055. ImageLabel_7.Image = "rbxassetid://133293265"
  1056.  
  1057.  
  1058.  
  1059. LocalPlayerContainer.Name = "LocalPlayerContainer"
  1060.  
  1061. LocalPlayerContainer.Parent = Base
  1062.  
  1063. LocalPlayerContainer.BackgroundColor3 = Color3.new(0.027451, 0.0431373, 0.0588235)
  1064.  
  1065. LocalPlayerContainer.BackgroundTransparency = 0.5
  1066.  
  1067. LocalPlayerContainer.Position = UDim2.new(0, 140, 0, 35)
  1068.  
  1069. LocalPlayerContainer.Size = UDim2.new(1, -150, 1, -45)
  1070.  
  1071. LocalPlayerContainer.Visible = false
  1072.  
  1073. LocalPlayerContainer.BottomImage = "rbxassetid://573102620"
  1074.  
  1075. LocalPlayerContainer.MidImage = "rbxassetid://573102620"
  1076.  
  1077. LocalPlayerContainer.ScrollBarThickness = 5
  1078.  
  1079. LocalPlayerContainer.TopImage = "rbxassetid://573102620"
  1080.  
  1081.  
  1082.  
  1083. PlayersContainer.Name = "PlayersContainer"
  1084.  
  1085. PlayersContainer.Parent = Base
  1086.  
  1087. PlayersContainer.BackgroundColor3 = Color3.new(0.027451, 0.0431373, 0.0588235)
  1088.  
  1089. PlayersContainer.BackgroundTransparency = 0.5
  1090.  
  1091. PlayersContainer.Position = UDim2.new(0, 140, 0, 35)
  1092.  
  1093. PlayersContainer.Size = UDim2.new(1, -150, 1, -45)
  1094.  
  1095. PlayersContainer.Visible = false
  1096.  
  1097. PlayersContainer.BottomImage = "rbxassetid://573102620"
  1098.  
  1099. PlayersContainer.MidImage = "rbxassetid://573102620"
  1100.  
  1101. PlayersContainer.ScrollBarThickness = 5
  1102.  
  1103. PlayersContainer.TopImage = "rbxassetid://573102620"
  1104.  
  1105.  
  1106.  
  1107. function MakeContainer(n)
  1108.  
  1109. local cont = PlayersContainer:Clone()
  1110.  
  1111. cont.Name = n .. 'Container'
  1112.  
  1113. cont.Parent = Base
  1114.  
  1115. return cont
  1116.  
  1117. end
  1118.  
  1119.  
  1120.  
  1121. local ScriptsContainer = MakeContainer('Scripts')
  1122.  
  1123. local MiscContainer = MakeContainer('Miscellaneous')
  1124.  
  1125.  
  1126.  
  1127. local topkek = {}
  1128.  
  1129. topkek.store = {}
  1130.  
  1131. topkek.cache = {}
  1132.  
  1133. topkek.libgui = {}
  1134.  
  1135. topkek.libsettings = {}
  1136.  
  1137. topkek.libutil = {}
  1138.  
  1139. topkek.libwindows = {}
  1140.  
  1141. topkek.libcmd = {}
  1142.  
  1143. --[[ gay ass dropdown lib i made a while ago ]]--
  1144.  
  1145. dropdown = {}
  1146.  
  1147. dropdown.new = function(gui, items, placeholder)
  1148.  
  1149. local self = {}
  1150.  
  1151. self.value = placeholder
  1152.  
  1153. self.items = items
  1154.  
  1155. self.gui = gui
  1156.  
  1157.  
  1158.  
  1159. if self.gui:FindFirstChild("__DROPDOWN") then
  1160.  
  1161. self.gui["__DROPDOWN"]:Destroy()
  1162.  
  1163. end
  1164.  
  1165.  
  1166.  
  1167. self.debug = false
  1168.  
  1169.  
  1170.  
  1171. self.gui.Text = placeholder
  1172.  
  1173. self.gui.BorderSizePixel = 0
  1174.  
  1175. self.gui.ZIndex = 1
  1176.  
  1177.  
  1178.  
  1179. self.textcolor = self.gui.TextColor3
  1180.  
  1181. function self.make()
  1182.  
  1183. if self.gui:FindFirstChild("__DROPDOWN") then
  1184.  
  1185. self.gui["__DROPDOWN"]:Destroy()
  1186.  
  1187. end
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193. self.selectgui = Instance.new("ScrollingFrame")
  1194.  
  1195. self.selectgui.Parent = self.gui
  1196.  
  1197. self.selectgui.Name = "__DROPDOWN"
  1198.  
  1199. self.selectgui.Size = UDim2.new(1, 0, 0, 100)
  1200.  
  1201. self.selectgui.Position = UDim2.new(0, 0, 0, self.gui.AbsoluteSize.Y)
  1202.  
  1203. self.selectgui.BorderSizePixel = 0
  1204.  
  1205. self.selectgui.ZIndex = 2
  1206.  
  1207. self.selectgui.BackgroundTransparency = self.gui.BackgroundTransparency
  1208.  
  1209. self.selectgui.BackgroundColor3 = self.gui.BackgroundColor3
  1210.  
  1211. self.selectgui.Visible = false
  1212.  
  1213. self.selectgui.CanvasSize = UDim2.new(0, 0, 0, (#self.items-1) * 20)
  1214.  
  1215. self.selectgui.ScrollBarThickness = 5
  1216.  
  1217.  
  1218.  
  1219. if #self.items < 4 then
  1220.  
  1221. self.selectgui.CanvasSize = UDim2.new(0, 0, 0, 0)
  1222.  
  1223. self.selectgui.Size = UDim2.new(1, 0, 0, (#self.items-1) * 20)
  1224.  
  1225. end
  1226.  
  1227.  
  1228.  
  1229. self.item = Instance.new("TextButton")
  1230.  
  1231. self.item.Size = UDim2.new(1, 0, 0, 20)
  1232.  
  1233. self.item.Position = UDim2.new(0, 0, 0, 0)
  1234.  
  1235. self.item.BackgroundTransparency = self.gui.BackgroundTransparency - 0.1
  1236.  
  1237. self.item.BackgroundColor3 = self.gui.BackgroundColor3
  1238.  
  1239. self.item.BorderSizePixel = 0
  1240.  
  1241. self.item.ZIndex = 2
  1242.  
  1243. self.item.TextColor3 = self.gui.TextColor3
  1244.  
  1245. self.item.Font = Enum.Font.SourceSans
  1246.  
  1247. self.item.FontSize = Enum.FontSize.Size14
  1248.  
  1249.  
  1250.  
  1251. self.curitem = nil
  1252.  
  1253.  
  1254.  
  1255. for i, v in pairs(self.items) do
  1256.  
  1257. if not (v == self.value) then
  1258.  
  1259. local ti = self.item:Clone()
  1260.  
  1261. ti.Parent = self.selectgui
  1262.  
  1263. if i == 1 then i = 2 end
  1264.  
  1265. ti.Position = UDim2.new(0, 0, 0, (i - 2) * 20)
  1266.  
  1267. ti.Text = v
  1268.  
  1269. ti.MouseButton1Down:connect(function()
  1270.  
  1271. self.value = v
  1272.  
  1273. self.open = false
  1274.  
  1275. self.selectgui.Visible = false
  1276.  
  1277. self.gui.Text = v
  1278.  
  1279. self.make()
  1280.  
  1281. end)
  1282.  
  1283. end
  1284.  
  1285. end
  1286.  
  1287. end
  1288.  
  1289.  
  1290.  
  1291. self.getvalue = function()
  1292.  
  1293. return self.value
  1294.  
  1295. end
  1296.  
  1297.  
  1298.  
  1299. self.update = function(itms)
  1300.  
  1301. self.items = itms
  1302.  
  1303. self.make()
  1304.  
  1305. end
  1306.  
  1307.  
  1308.  
  1309. self.open = false
  1310.  
  1311.  
  1312.  
  1313. self.gui.MouseButton1Down:connect(function()
  1314.  
  1315. if self.open == false then
  1316.  
  1317. self.selectgui.CanvasPosition = Vector2.new(0, 0)
  1318.  
  1319. self.selectgui.Visible = true
  1320.  
  1321. self.open = true
  1322.  
  1323. else
  1324.  
  1325. self.selectgui.Visible = false
  1326.  
  1327. self.open = false
  1328.  
  1329. end
  1330.  
  1331. end)
  1332.  
  1333.  
  1334.  
  1335. self.make()
  1336.  
  1337. return self
  1338.  
  1339. end
  1340.  
  1341. --[[ libsettings lole ]]--
  1342.  
  1343. topkek.libsettings.store = {}
  1344.  
  1345. function topkek.libsettings:getSetting(k)
  1346.  
  1347. return topkek.libsettings.store[k]
  1348.  
  1349. end
  1350.  
  1351.  
  1352.  
  1353. function topkek.libsettings:setSetting(k,v)
  1354.  
  1355. topkek.libsettings.store[k]=v
  1356.  
  1357. end
  1358.  
  1359.  
  1360.  
  1361. -- [[ libutil ]] --
  1362.  
  1363. function topkek.libutil:createObject(o, p)
  1364.  
  1365. local a, b = pcall(function()
  1366.  
  1367. Instance.new(o)
  1368.  
  1369. end)
  1370.  
  1371. if not a then
  1372.  
  1373. return
  1374.  
  1375. end
  1376.  
  1377. local obj = Instance.new(o)
  1378.  
  1379. for prop, val in pairs(p) do
  1380.  
  1381. pcall(function()
  1382.  
  1383. obj[prop] = val
  1384.  
  1385. end)
  1386.  
  1387. end
  1388.  
  1389. return obj
  1390.  
  1391. end
  1392.  
  1393. function topkek.libutil:Color3(r,g,b)
  1394.  
  1395. return Color3.new(r/255,g/255,b/255)
  1396.  
  1397. end; color3 = function(r,g,b) return topkek.libutil:Color3(r,g,b) end
  1398.  
  1399. function topkek.libutil:recurseDecal(img)--topkek2.0 code tbh
  1400.  
  1401. img = 'rbxassetid://' .. img
  1402.  
  1403. local function skybox(x)
  1404.  
  1405. local sky = Instance.new("Sky",game.Lighting)
  1406.  
  1407. local fcs={"Bk","Dn","Ft","Lf","Rt","Up"}
  1408.  
  1409. for i,v in pairs(fcs) do
  1410.  
  1411. sky["Skybox"..v]=x
  1412.  
  1413. end
  1414.  
  1415. end
  1416.  
  1417. local function particle(p, b)
  1418.  
  1419. local a = Instance.new("ParticleEmitter", p)
  1420.  
  1421. a.Rate = 500
  1422.  
  1423. a.Lifetime = NumberRange.new(20, 30)
  1424.  
  1425. a.VelocitySpread = 200
  1426.  
  1427. a.Texture = b
  1428.  
  1429. end
  1430.  
  1431.  
  1432.  
  1433. local function decal(p, b)
  1434.  
  1435. local sides = {"Back", "Bottom", "Front", "Left", "Right", "Top"}
  1436.  
  1437. for i, v in pairs(sides) do
  1438.  
  1439. local a = Instance.new("Decal", p)
  1440.  
  1441. a.Texture = b
  1442.  
  1443. a.Face = v
  1444.  
  1445. end
  1446.  
  1447. end
  1448.  
  1449.  
  1450.  
  1451. local function recurse(x)
  1452.  
  1453. for i, v in pairs(x:GetChildren()) do
  1454.  
  1455. pcall(function() -- 'error occured, no output from Lua' LOLE
  1456.  
  1457. if v:IsA("BasePart") then
  1458.  
  1459. particle(v, img)
  1460.  
  1461. decal(v, img)
  1462.  
  1463. end
  1464.  
  1465. if #(v:GetChildren())>0 then
  1466.  
  1467. recurse(v)
  1468.  
  1469. end
  1470.  
  1471. end)
  1472.  
  1473. end
  1474.  
  1475. end
  1476.  
  1477.  
  1478.  
  1479. recurse(game)
  1480.  
  1481. skybox(img)
  1482.  
  1483. end
  1484.  
  1485. function topkek.libutil:recurseRemove(type_)
  1486.  
  1487. local function recurse(x)
  1488.  
  1489. for i, v in pairs(x:GetChildren()) do
  1490.  
  1491. pcall(function()
  1492.  
  1493. if v:IsA(type_) then
  1494.  
  1495. v:Destroy()
  1496.  
  1497. end
  1498.  
  1499. if #(v:GetChildren())>0 then
  1500.  
  1501. recurse(v)
  1502.  
  1503. end
  1504.  
  1505. end)
  1506.  
  1507. end
  1508.  
  1509. end
  1510.  
  1511. recurse(game)
  1512.  
  1513. end
  1514.  
  1515. function topkek.libutil:recurseSet(type_,prop,val)
  1516.  
  1517. local function recurse(x)
  1518.  
  1519. for i, v in pairs(x:GetChildren()) do
  1520.  
  1521. pcall(function()
  1522.  
  1523. if v:IsA(type_) then
  1524.  
  1525. v[prop]=val
  1526.  
  1527. end
  1528.  
  1529. if #(v:GetChildren())>0 then
  1530.  
  1531. recurse(v)
  1532.  
  1533. end
  1534.  
  1535. end)
  1536.  
  1537. end
  1538.  
  1539. end
  1540.  
  1541. recurse(game)
  1542.  
  1543. end
  1544.  
  1545. function topkek.libutil:recurseSetObj(obj,type_,prop,val)
  1546.  
  1547. local function recurse(x)
  1548.  
  1549. for i, v in pairs(x:GetChildren()) do
  1550.  
  1551. pcall(function()
  1552.  
  1553. if v:IsA(type_) then
  1554.  
  1555. v[prop]=val
  1556.  
  1557. end
  1558.  
  1559. if #(v:GetChildren())>0 then
  1560.  
  1561. recurse(v)
  1562.  
  1563. end
  1564.  
  1565. end)
  1566.  
  1567. end
  1568.  
  1569. end
  1570.  
  1571. recurse(obj)
  1572.  
  1573. end
  1574.  
  1575. function topkek.libutil:recurseFunc(type_,func)
  1576.  
  1577. local function recurse(x)
  1578.  
  1579. for i, v in pairs(x:GetChildren()) do
  1580.  
  1581. pcall(function()
  1582.  
  1583. if v:IsA(type_) then
  1584.  
  1585. func(v)
  1586.  
  1587. end
  1588.  
  1589. if #(v:GetChildren())>0 then
  1590.  
  1591. recurse(v)
  1592.  
  1593. end
  1594.  
  1595. end)
  1596.  
  1597. end
  1598.  
  1599. end
  1600.  
  1601. recurse(game)
  1602.  
  1603. end
  1604.  
  1605. function topkek.libutil:Play(id)
  1606.  
  1607. local mu = Instance.new("Sound", game.Workspace)
  1608.  
  1609. mu.Volume = 1
  1610.  
  1611. mu.Looped = true
  1612.  
  1613. mu.Pitch = 1
  1614.  
  1615. mu.SoundId = "rbxassetid://"..tostring(id)
  1616.  
  1617. mu:Play()
  1618.  
  1619. end
  1620.  
  1621. function topkek.libutil:GetPlayerList()
  1622.  
  1623. local list = {'Everybody'}
  1624.  
  1625. for i, v in pairs(game:service'Players':GetPlayers()) do
  1626.  
  1627. table.insert(list, v.Name)
  1628.  
  1629. end
  1630.  
  1631. return list
  1632.  
  1633. end
  1634.  
  1635. function topkek.libutil:doPlayers(drop, func)
  1636.  
  1637. local str = drop.getvalue()
  1638.  
  1639. local plrs = {}
  1640.  
  1641. if str == 'Everybody' then
  1642.  
  1643. plrs = game:GetService('Players'):GetPlayers()
  1644.  
  1645. else
  1646.  
  1647. plrs = {game:GetService('Players'):FindFirstChild(str)}
  1648.  
  1649. end
  1650.  
  1651. for i, v in pairs(plrs) do
  1652.  
  1653. func(v)
  1654.  
  1655. end
  1656.  
  1657. end
  1658.  
  1659. function topkek.libutil:insert(id)
  1660.  
  1661. if topkek.cache[id] then return topkek.cache[id] end -- moist
  1662.  
  1663. local obj = game:service'InsertService':LoadAsset(id):GetChildren()[1]
  1664.  
  1665. topkek.cache[id] = obj:Clone()
  1666.  
  1667. return obj
  1668.  
  1669. end; insert = function(id) return topkek.libutil:insert(id) end
  1670.  
  1671. function topkek.libutil:getTorso(plr) --r15 compatibility lole
  1672.  
  1673. if plr.Character then
  1674.  
  1675. if plr.Character:FindFirstChild('UpperTorso') then
  1676.  
  1677. return plr.Character.UpperTorso
  1678.  
  1679. else
  1680.  
  1681. return plr.Character.Torso
  1682.  
  1683. end
  1684.  
  1685. end
  1686.  
  1687. end
  1688.  
  1689. function topkek.libutil:weiner(plr)
  1690.  
  1691. plr=plr.Character
  1692.  
  1693. Shaft=Instance.new("Part", plr)
  1694.  
  1695. Shaft.Name='Shaft'
  1696.  
  1697. Shaft.Size=Vector3.new(1, 2.5, 1)
  1698.  
  1699. Shaft.TopSurface=0
  1700.  
  1701. Shaft.BottomSurface=0
  1702.  
  1703. Shaft.CanCollide=true
  1704.  
  1705. Cyln=Instance.new("CylinderMesh", Shaft)
  1706.  
  1707. Cyln.Scale=Vector3.new(0.5,0.7,0.5)
  1708.  
  1709. Instance.new("Weld", plr)
  1710.  
  1711. plr.Weld.Part0=plr:FindFirstChild("Torso") or plr:FindFirstChild("LowerTorso")
  1712.  
  1713. plr.Weld.Part1=plr.Shaft
  1714.  
  1715. plr.Weld.C0=CFrame.new(0,-0.35,-0.9)*CFrame.fromEulerAnglesXYZ(2.2,0,0)
  1716.  
  1717. Shaft.BrickColor=BrickColor.new("Pastel brown")
  1718.  
  1719. Tip=Instance.new("Part", plr)
  1720.  
  1721. Tip.Name='Tip'
  1722.  
  1723. Tip.TopSurface=0
  1724.  
  1725. Tip.BottomSurface=0
  1726.  
  1727. Tip.Size=Vector3.new(1, 1, 1)
  1728.  
  1729. Tip.CanCollide=true
  1730.  
  1731. Tip.Touched:connect(function(prt) if prt.Parent~=player then spawn(function() for i=1, 5 do local pert=Instance.new("Part", player) pert.CFrame=CFrame.new(prt.Position) pert.CanCollide=true local mesh=Instance.new("BlockMesh", pert) mesh.Scale=Vector3.new(0.2,0.2,0.2) pert.BrickColor=BrickColor.new("White") end end) end end)
  1732.  
  1733. Cyln2=Instance.new("SpecialMesh", Tip)
  1734.  
  1735. Cyln2.MeshType='Sphere'
  1736.  
  1737. Cyln2.Scale=Vector3.new(0.6,0.6,0.6)
  1738.  
  1739. Instance.new("Weld", plr).Name='Weld2'
  1740.  
  1741. plr.Weld2.Part0=plr.Shaft
  1742.  
  1743. plr.Weld2.Part1=plr.Tip
  1744.  
  1745. plr.Weld2.C0=CFrame.new(0,-.9,0)
  1746.  
  1747. Tip.BrickColor=BrickColor.new("Pink")
  1748.  
  1749. -----
  1750.  
  1751. Ball1=Instance.new("Part", plr)
  1752.  
  1753. Ball1.Name='Ball1'
  1754.  
  1755. Ball1.Size=Vector3.new(1, 1, 1)
  1756.  
  1757. Ball1.TopSurface=0
  1758.  
  1759. Ball1.BottomSurface=0
  1760.  
  1761. Cyln3=Instance.new("SpecialMesh", Ball1)
  1762.  
  1763. Cyln3.MeshType='Sphere'
  1764.  
  1765. Cyln3.Scale=Vector3.new(0.4,0.4,0.4)
  1766.  
  1767. Instance.new("Weld", plr).Name='Weld3'
  1768.  
  1769. plr.Weld3.Part0=plr.Shaft
  1770.  
  1771. plr.Weld3.Part1=plr.Ball1
  1772.  
  1773. plr.Weld3.C0=CFrame.new(0.225,.4,0.2)
  1774.  
  1775. Ball1.BrickColor=BrickColor.new("Pastel brown")
  1776.  
  1777. -----
  1778.  
  1779. Ball2=Instance.new("Part", plr)
  1780.  
  1781. Ball2.Name='Ball2'
  1782.  
  1783. Ball2.Size=Vector3.new(1, 1, 1)
  1784.  
  1785. Ball2.TopSurface=0
  1786.  
  1787. Ball2.BottomSurface=0
  1788.  
  1789. Cyln3=Instance.new("SpecialMesh", Ball2)
  1790.  
  1791. Cyln3.MeshType='Sphere'
  1792.  
  1793. Cyln3.Scale=Vector3.new(0.4,0.4,0.4)
  1794.  
  1795. Instance.new("Weld", plr).Name='Weld4'
  1796.  
  1797. plr.Weld4.Part0=plr.Shaft
  1798.  
  1799. plr.Weld4.Part1=plr.Ball2
  1800.  
  1801. plr.Weld4.C0=CFrame.new(-0.225,.4,0.2)
  1802.  
  1803. Ball2.BrickColor=BrickColor.new("Pastel brown")
  1804.  
  1805. end
  1806.  
  1807. function topkek.libutil:scalePlayer(plr, sz)
  1808.  
  1809. local pchar = plr.Character
  1810.  
  1811. if pchar:FindFirstChild("UpperTorso") then
  1812.  
  1813. warn("Player [" ..plr.Name.. "] is R15.")
  1814.  
  1815. return
  1816.  
  1817. end
  1818.  
  1819. local function scale(chr,scl)
  1820.  
  1821.  
  1822.  
  1823. for _,v in pairs(pchar:GetChildren()) do
  1824.  
  1825. if v:IsA("Hat") then
  1826.  
  1827. v:Clone()
  1828.  
  1829. v.Parent = game.Lighting
  1830.  
  1831. end
  1832.  
  1833. end
  1834.  
  1835.  
  1836.  
  1837. local Head = chr['Head']
  1838.  
  1839. local Torso = chr['Torso']
  1840.  
  1841. local LA = chr['Left Arm']
  1842.  
  1843. local RA = chr['Right Arm']
  1844.  
  1845. local LL = chr['Left Leg']
  1846.  
  1847. local RL = chr['Right Leg']
  1848.  
  1849. local HRP = chr['HumanoidRootPart']
  1850.  
  1851.  
  1852.  
  1853. wait(0.1)
  1854.  
  1855.  
  1856.  
  1857. Head.formFactor = 3
  1858.  
  1859. Torso.formFactor = 3
  1860.  
  1861. LA.formFactor = 3
  1862.  
  1863. RA.formFactor = 3
  1864.  
  1865. LL.formFactor = 3
  1866.  
  1867. RL.formFactor = 3
  1868.  
  1869. HRP.formFactor = 3
  1870.  
  1871.  
  1872.  
  1873. Head.Size = Vector3.new(scl * 2, scl, scl)
  1874.  
  1875. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  1876.  
  1877. LA.Size = Vector3.new(scl, scl * 2, scl)
  1878.  
  1879. RA.Size = Vector3.new(scl, scl * 2, scl)
  1880.  
  1881. LL.Size = Vector3.new(scl, scl * 2, scl)
  1882.  
  1883. RL.Size = Vector3.new(scl, scl * 2, scl)
  1884.  
  1885. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  1886.  
  1887.  
  1888.  
  1889. local Motor1 = Instance.new('Motor6D', Torso)
  1890.  
  1891. Motor1.Part0 = Torso
  1892.  
  1893. Motor1.Part1 = Head
  1894.  
  1895. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  1896.  
  1897. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  1898.  
  1899. Motor1.Name = "Neck"
  1900.  
  1901.  
  1902.  
  1903. local Motor2 = Instance.new('Motor6D', Torso)
  1904.  
  1905. Motor2.Part0 = Torso
  1906.  
  1907. Motor2.Part1 = LA
  1908.  
  1909. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1910.  
  1911. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1912.  
  1913. Motor2.Name = "Left Shoulder"
  1914.  
  1915.  
  1916.  
  1917. local Motor3 = Instance.new('Motor6D', Torso)
  1918.  
  1919. Motor3.Part0 = Torso
  1920.  
  1921. Motor3.Part1 = RA
  1922.  
  1923. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1924.  
  1925. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1926.  
  1927. Motor3.Name = "Right Shoulder"
  1928.  
  1929.  
  1930.  
  1931. local Motor4 = Instance.new('Motor6D', Torso)
  1932.  
  1933. Motor4.Part0 = Torso
  1934.  
  1935. Motor4.Part1 = LL
  1936.  
  1937. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1938.  
  1939. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  1940.  
  1941. Motor4.Name = "Left Hip"
  1942.  
  1943.  
  1944.  
  1945. local Motor5 = Instance.new('Motor6D', Torso)
  1946.  
  1947. Motor5.Part0 = Torso
  1948.  
  1949. Motor5.Part1 = RL
  1950.  
  1951. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1952.  
  1953. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  1954.  
  1955. Motor5.Name = "Right Hip"
  1956.  
  1957.  
  1958.  
  1959. local Motor6 = Instance.new('Motor6D', HRP)
  1960.  
  1961. Motor6.Part0 = HRP
  1962.  
  1963. Motor6.Part1 = Torso
  1964.  
  1965. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  1966.  
  1967. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  1968.  
  1969.  
  1970.  
  1971. end
  1972.  
  1973.  
  1974.  
  1975. scale(pchar, sz)
  1976.  
  1977.  
  1978.  
  1979. for _,v in pairs(game.Lighting:GetChildren()) do
  1980.  
  1981. if v:IsA("Hat") then
  1982.  
  1983. v.Parent = pchar
  1984.  
  1985. end
  1986.  
  1987. end
  1988.  
  1989. end
  1990.  
  1991. function topkek.libutil:dickShooter()
  1992.  
  1993. Player = game:GetService("Players").LocalPlayer
  1994.  
  1995. Character = Player.Character
  1996.  
  1997. PlayerGui = Player.PlayerGui
  1998.  
  1999. Backpack = Player.Backpack
  2000.  
  2001. Torso = Character.Torso
  2002.  
  2003. Head = Character.Head
  2004.  
  2005. LeftArm = Character["Left Arm"]
  2006.  
  2007. LeftLeg = Character["Left Leg"]
  2008.  
  2009. RightArm = Character["Right Arm"]
  2010.  
  2011. RightLeg = Character["Right Leg"]
  2012.  
  2013. LS = Torso["Left Shoulder"]
  2014.  
  2015. LH = Torso["Left Hip"]
  2016.  
  2017. RS = Torso["Right Shoulder"]
  2018.  
  2019. RH = Torso["Right Hip"]
  2020.  
  2021. Tool = Instance.new("HopperBin")
  2022.  
  2023. Tool.Parent = Backpack
  2024.  
  2025. Tool.Name = "Painis"
  2026.  
  2027. Bin = Tool
  2028.  
  2029. so = function(id, par, vol, pit)
  2030.  
  2031.  
  2032.  
  2033. coroutine.resume(coroutine.create(function()
  2034.  
  2035.  
  2036.  
  2037. local sou = Instance.new("Sound", par or workspace)
  2038.  
  2039. sou.Volume = vol
  2040.  
  2041. sou.Pitch = pit or 1
  2042.  
  2043. sou.SoundId = id
  2044.  
  2045. wait()
  2046.  
  2047. sou:play()
  2048.  
  2049. wait(6)
  2050.  
  2051. sou:Remove()
  2052.  
  2053. end
  2054.  
  2055. ))
  2056.  
  2057. end
  2058.  
  2059.  
  2060.  
  2061. ob1d = function(mouse)
  2062.  
  2063.  
  2064.  
  2065. size = 0.5
  2066.  
  2067. mode = 1
  2068.  
  2069. color = BrickColor.new(Color3.new(math.random(), math.random(), math.random()))
  2070.  
  2071. mo = Instance.new("Model")
  2072.  
  2073. mo.Name = "EEEEUGH HA HA HAAAAA"
  2074.  
  2075. mo.Parent = workspace
  2076.  
  2077. game.Debris:AddItem(mo, 10)
  2078.  
  2079. p = Instance.new("Seat")
  2080.  
  2081. p.Name = "Torso"
  2082.  
  2083. p.Size = Vector3.new(14, 50, 14) * size
  2084.  
  2085. p.BrickColor = color
  2086.  
  2087. m = Instance.new("SpecialMesh")
  2088.  
  2089. m.Parent = p
  2090.  
  2091. p.Name = "Torso"
  2092.  
  2093. p.Parent = mo
  2094.  
  2095. p = Instance.new("Seat")
  2096.  
  2097. p.Shape = "Ball"
  2098.  
  2099. p.Size = Vector3.new(24, 24, 24) * size
  2100.  
  2101. p.BrickColor = color
  2102.  
  2103. p.Name = "Legball"
  2104.  
  2105. for i = 1, 10 do
  2106.  
  2107. lol = Instance.new("Seat")
  2108.  
  2109. lol.BrickColor = BrickColor:Black()
  2110.  
  2111. lol.Name = "SEE?"
  2112.  
  2113. lol.Parent = mo
  2114.  
  2115. lol.Size = Vector3.new(1, math.random(30, 40), 1) * size
  2116.  
  2117. w = Instance.new("Weld")
  2118.  
  2119. w.Part0 = p
  2120.  
  2121. w.Part1 = lol
  2122.  
  2123. w.C0 = CFrame.new(0, 0, 0) * CFrame.fromEulerAnglesXYZ(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  2124.  
  2125. w.Parent = w.Part0
  2126.  
  2127. end
  2128.  
  2129. p.Parent = mo
  2130.  
  2131. w = Instance.new("Weld")
  2132.  
  2133. w.Part0 = mo.Torso
  2134.  
  2135. w.Part1 = p
  2136.  
  2137. w.C0 = CFrame.new(16 * (size / 2), -48 * (size / 2), 0)
  2138.  
  2139. w.Parent = w.Part0
  2140.  
  2141. p = Instance.new("Seat")
  2142.  
  2143. p.Shape = "Ball"
  2144.  
  2145. p.Size = Vector3.new(24, 24, 24) * size
  2146.  
  2147. p.BrickColor = color
  2148.  
  2149. p.Name = "Legball"
  2150.  
  2151. for i = 1, 10 do
  2152.  
  2153. lol = Instance.new("Seat")
  2154.  
  2155. lol.BrickColor = BrickColor:Black()
  2156.  
  2157. local Player = game:GetService("Players").LocalPlayer;
  2158. local UserInputService = game:GetService("UserInputService");
  2159. local Bricks = {};
  2160. local Space;
  2161. local WalkInAir = false;
  2162.  
  2163. UserInputService.InputBegan:Connect(function(
  2164. InputObject,
  2165. GameProcessedEvent
  2166. )
  2167. if (
  2168. (not GameProcessedEvent) and
  2169. (InputObject.UserInputType == Enum.UserInputType.Keyboard)
  2170. ) then
  2171. if (InputObject.KeyCode == Enum.KeyCode.P) then
  2172. for Key, Value in next, Bricks do
  2173. Value:Destroy();
  2174. end;
  2175. elseif (InputObject.KeyCode == Enum.KeyCode.Space) then
  2176. Space = true;
  2177. elseif (InputObject.KeyCode == Enum.KeyCode.L) then
  2178. WalkInAir = (not WalkInAir);
  2179. end;
  2180. end;
  2181. end);
  2182.  
  2183. UserInputService.InputEnded:Connect(function(
  2184. InputObject,
  2185. GameProcessedEvent
  2186. )
  2187. if (
  2188. (not GameProcessedEvent) and
  2189. (InputObject.UserInputType == Enum.UserInputType.Keyboard)
  2190. ) then
  2191. if (InputObject.KeyCode == Enum.KeyCode.Space) then
  2192. Space = nil;
  2193. end;
  2194. end;
  2195. end);
  2196.  
  2197. local LastPosition = Vector3.new(0, 0, 0);
  2198.  
  2199. game:GetService("RunService").RenderStepped:Connect(function()
  2200. local PositionChanged;
  2201. local Torso = (
  2202. Player.Character or
  2203. Player.CharacterAdded:wait()
  2204. ):WaitForChild("Torso");
  2205. if ((Torso.Position - LastPosition).Magnitude > 0.75) then
  2206. PositionChanged = true;
  2207. end;
  2208. if (Space or (WalkInAir and PositionChanged)) then
  2209. local FlyBrick = Instance.new("Part",
  2210. (
  2211. Torso:GetChildren()[1] or
  2212. Torso
  2213. )
  2214. );
  2215. FlyBrick.Transparency = 1;
  2216. FlyBrick.Anchored = true;
  2217. FlyBrick.CFrame = (
  2218. Torso.CFrame *
  2219. CFrame.new(0, -2.25, 0)
  2220. );
  2221. FlyBrick.Size = Vector3.new(5, 0.05, 5);
  2222. FlyBrick.BrickColor = BrickColor.new("Institutional white");
  2223. FlyBrick.Locked = true;
  2224. FlyBrick.TopSurface = Enum.SurfaceType.SmoothNoOutlines;
  2225. FlyBrick.BottomSurface = FlyBrick.TopSurface;
  2226. FlyBrick.RightSurface = FlyBrick.TopSurface;
  2227. FlyBrick.LeftSurface = FlyBrick.TopSurface;
  2228. FlyBrick.FrontSurface = FlyBrick.TopSurface;
  2229. FlyBrick.BackSurface = FlyBrick.TopSurface;
  2230. Bricks[#Bricks + 1] = FlyBrick;
  2231. end;
  2232. LastPosition = Torso.Position;
  2233. end);
  2234.  
  2235. local Move = game.Workspace.Map
  2236. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  2237. local Players = game:GetService("Players")
  2238. local mouse = Players.LocalPlayer:GetMouse()
  2239. local a = false
  2240.  
  2241. mouse.KeyDown:Connect(function(key)
  2242. if key == "e" then
  2243. if a == false then
  2244. Move.Parent = ReplicatedStorage
  2245. Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  2246. a = true
  2247. elseif a == true then
  2248. Move.Parent = game.Workspace
  2249. Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
  2250. a = false
  2251. end
  2252. end
  2253. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement