Guest User

Untitled

a guest
May 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 204.31 KB | None | 0 0
  1. -- Objects
  2.  
  3. local DogeScreenGui = Instance.new("ScreenGui")
  4. local DogeFrame = Instance.new("Frame")
  5. local Open = Instance.new("TextButton")
  6. local Close = Instance.new("TextButton")
  7. local InfiniteYield = Instance.new("TextButton")
  8. local Aimbot = Instance.new("TextButton")
  9. local DCMoneyExploit = Instance.new("TextButton")
  10. local TextBox = Instance.new("TextBox")
  11. local SexGui = Instance.new("TextButton")
  12. local TopKek40 = Instance.new("TextButton")
  13. local FEAnimations = Instance.new("TextButton")
  14. local Gun = Instance.new("TextButton")
  15. local ApocRisingGui = Instance.new("TextButton")
  16. local GrabKnife = Instance.new("TextButton")
  17.  
  18. -- Properties
  19.  
  20. DogeScreenGui.Name = "DogeScreenGui"
  21. DogeScreenGui.Parent = game.CoreGui
  22.  
  23. DogeFrame.Name = "DogeFrame"
  24. DogeFrame.Parent = DogeScreenGui
  25. DogeFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  26. DogeFrame.Visible = false
  27. DogeFrame.BorderSizePixel = 0
  28. DogeFrame.Position = UDim2.new(0, 0, 0.0478087664, 0)
  29. DogeFrame.Size = UDim2.new(0, 362, 0, 345)
  30.  
  31. Open.Name = "Open"
  32. Open.Parent = DogeScreenGui
  33. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  34. Open.BorderSizePixel = 0
  35. Open.Position = UDim2.new(0, 0, 0.788844645, 0)
  36. Open.Size = UDim2.new(0, 126, 0, 50)
  37. Open.Font = Enum.Font.SourceSans
  38. Open.Text = "Open"
  39. Open.TextColor3 = Color3.new(0, 0, 0)
  40. Open.TextSize = 40
  41.  
  42. Close.Name = "Close"
  43. Close.Parent = DogeScreenGui
  44. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  45. Close.BorderSizePixel = 0
  46. Close.Position = UDim2.new(0, 0, 0.788844645, 0)
  47. Close.Visible = false
  48. Close.Size = UDim2.new(0, 126, 0, 50)
  49. Close.Font = Enum.Font.SourceSans
  50. Close.Text = "Close"
  51. Close.TextColor3 = Color3.new(0, 0, 0)
  52. Close.TextSize = 40
  53. Close.TextWrapped = true
  54.  
  55. TextBox.Parent = DogeFrame
  56. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  57. TextBox.BorderSizePixel = 4
  58. TextBox.Position = UDim2.new(0.113259673, 0, 0.0289855078, 0)
  59. TextBox.Size = UDim2.new(0, 280, 0, 50)
  60. TextBox.Font = Enum.Font.SourceSans
  61. TextBox.PlaceholderText = "Dank&Doge V1.00"
  62. TextBox.Text = "Dank&Doge V1.00"
  63. TextBox.TextColor3 = Color3.new(0, 0, 0)
  64. TextBox.TextSize = 40
  65. TextBox.TextWrapped = true
  66.  
  67. GrabKnife.Name = "Grab Knife"
  68. GrabKnife.Parent = DogeFrame
  69. GrabKnife.BackgroundColor3 = Color3.new(1, 1, 1)
  70. GrabKnife.BorderSizePixel = 4
  71. GrabKnife.Position = UDim2.new(0.673029304, 0, 0.585624814, 0)
  72. GrabKnife.Size = UDim2.new(0, 99, 0, 50)
  73. GrabKnife.Font = Enum.Font.SourceSans
  74. GrabKnife.Text = "Grab Knife"
  75. GrabKnife.TextColor3 = Color3.new(0, 0, 0)
  76. GrabKnife.TextSize = 21
  77. GrabKnife.TextWrapped = true
  78.  
  79. GrabKnife.MouseButton1Down:connect(function()
  80. me = game.Players.djface203
  81.  
  82. char = me.Character
  83.  
  84. selected = false
  85.  
  86. attacking = false
  87.  
  88. hurt = false
  89.  
  90. grabbed = nil
  91.  
  92. mode = "drop"
  93.  
  94. bloodcolors = {"Really red", "Bright red"}
  95.  
  96.  
  97.  
  98. function prop(part, parent, collide, tran, ref, x, y, z, color, anchor, form)
  99.  
  100. part.Parent = parent
  101.  
  102. part.formFactor = form
  103.  
  104. part.CanCollide = collide
  105.  
  106. part.Transparency = tran
  107.  
  108. part.Reflectance = ref
  109.  
  110. part.Size = Vector3.new(x,y,z)
  111.  
  112. part.BrickColor = BrickColor.new(color)
  113.  
  114. part.TopSurface = 0
  115.  
  116. part.BottomSurface = 0
  117.  
  118. part.Anchored = anchor
  119.  
  120. part.Locked = true
  121.  
  122. part:BreakJoints()
  123.  
  124. end
  125.  
  126.  
  127. function weld(w, p, p1, a, b, c, x, y, z)
  128.  
  129. w.Parent = p
  130.  
  131. w.Part0 = p
  132.  
  133. w.Part1 = p1
  134.  
  135. w.C1 = CFrame.fromEulerAnglesXYZ(a,b,c) * CFrame.new(x,y,z)
  136.  
  137. end
  138.  
  139.  
  140. function mesh(mesh, parent, x, y, z, type)
  141.  
  142. mesh.Parent = parent
  143.  
  144. mesh.Scale = Vector3.new(x, y, z)
  145.  
  146. mesh.MeshType = type
  147.  
  148. end
  149.  
  150.  
  151. function remgui()
  152.  
  153. for _,v in pairs(me.PlayerGui:GetChildren()) do
  154.  
  155. if v.Name == "Modeshow" then
  156.  
  157. v:remove()
  158.  
  159. end
  160.  
  161. end
  162.  
  163. end
  164.  
  165.  
  166. function inform(text,delay)
  167.  
  168. remgui()
  169.  
  170. local sc = Instance.new("ScreenGui")
  171.  
  172. sc.Parent = me.PlayerGui
  173.  
  174. sc.Name = "Modeshow"
  175.  
  176. local bak = Instance.new("Frame",sc)
  177.  
  178. bak.BackgroundColor3 = Color3.new(1,1,1)
  179.  
  180. bak.Size = UDim2.new(0.94,0,0.1,0)
  181.  
  182. bak.Position = UDim2.new(0.03,0,0.037,0)
  183.  
  184. bak.BorderSizePixel = 0
  185.  
  186. local gi = Instance.new("TextLabel",sc)
  187.  
  188. gi.Size = UDim2.new(0.92,0,0.09,0)
  189.  
  190. gi.BackgroundColor3 = Color3.new(0,0,0)
  191.  
  192. gi.Position = UDim2.new(0.04,0,0.042,0)
  193.  
  194. gi.TextColor3 = Color3.new(1,1,1)
  195.  
  196. gi.FontSize = "Size12"
  197.  
  198. gi.Text = text
  199.  
  200. coroutine.resume(coroutine.create(function()
  201.  
  202. wait(delay)
  203.  
  204. sc:remove()
  205.  
  206. end))
  207.  
  208. end
  209. end)
  210.  
  211.  
  212. ApocRisingGui.Name = "Apoc RisingGui"
  213. ApocRisingGui.Parent = DogeFrame
  214. ApocRisingGui.BackgroundColor3 = Color3.new(1, 1, 1)
  215. ApocRisingGui.BorderSizePixel = 4
  216. ApocRisingGui.Position = UDim2.new(0.362255812, 0, 0.584406495, 0)
  217. ApocRisingGui.Size = UDim2.new(0, 99, 0, 50)
  218. ApocRisingGui.Font = Enum.Font.SourceSans
  219. ApocRisingGui.Text = "Apoc Rising Gui"
  220. ApocRisingGui.TextColor3 = Color3.new(0, 0, 0)
  221. ApocRisingGui.TextSize = 21
  222. ApocRisingGui.TextWrapped = true
  223.  
  224. ApocRisingGui.MouseButton1Down:connect(function()
  225. loadstring(game:HttpGet("https://pastebin.com/raw/1wZas7Vk", true))()
  226. end)
  227.  
  228.  
  229. Gun.Name = "Gun"
  230. Gun.Parent = DogeFrame
  231. Gun.BackgroundColor3 = Color3.new(1, 1, 1)
  232. Gun.BorderSizePixel = 4
  233. Gun.Position = UDim2.new(0.0476305522, 0, 0.584406495, 0)
  234. Gun.Size = UDim2.new(0, 99, 0, 50)
  235. Gun.Font = Enum.Font.SourceSans
  236. Gun.Text = "Tec99"
  237. Gun.TextColor3 = Color3.new(0, 0, 0)
  238. Gun.TextSize = 21
  239. Gun.TextWrapped = true
  240.  
  241. Gun.MouseButton1Down:connect(function()
  242. loadstring(game:HttpGet("https://pastebin.com/raw/94WRd1Uh", true))()
  243. end)
  244.  
  245.  
  246. FEAnimations.Name = "FE Animations"
  247. FEAnimations.Parent = DogeFrame
  248. FEAnimations.BackgroundColor3 = Color3.new(1, 1, 1)
  249. FEAnimations.BorderSizePixel = 4
  250. FEAnimations.Position = UDim2.new(0.674446106, 0, 0.393304259, 0)
  251. FEAnimations.Size = UDim2.new(0, 99, 0, 50)
  252. FEAnimations.Font = Enum.Font.SourceSans
  253. FEAnimations.Text = "FE Animations"
  254. FEAnimations.TextColor3 = Color3.new(0, 0, 0)
  255. FEAnimations.TextSize = 21
  256. FEAnimations.TextWrapped = true
  257.  
  258. FEAnimations.MouseButton1Down:connect(function()
  259. --FE Animation Gui Made by Dark Magic Rblx in ROBLOX Studio, please give credits if you use this.
  260. --You can use all and me in the Name Here Section!
  261. gui = Instance.new("ScreenGui",game.CoreGui)
  262. gui.Name = "FE Animation Gui by Dark Magic Rblx"
  263. box = Instance.new("Frame",gui)
  264. box.Size = UDim2.new(0,400,0,100)
  265. box.Position = UDim2.new(0,800,0,500)
  266. box.BackgroundTransparency = 0
  267. box.BackgroundColor3 = Color3.new(167,0,0)
  268. box.BorderSizePixel = 5
  269. box.BorderColor3 = Color3.new(27,42,53)
  270.  
  271. o = Instance.new("TextBox",gui)
  272. o.Name = "Speed Here"
  273. o.Size = UDim2.new(0,150,0,15)
  274. o.Position = UDim2.new(0,1000,0,590)
  275. o.BackgroundTransparency = 0
  276. o.BackgroundColor3 = Color3.new(0,0,0)
  277. o.BorderSizePixel = 0
  278. o.Font = "Arcade"
  279. o.TextColor3 = Color3.new(255,255,255)
  280. o.TextScaled = true
  281. o.TextWrapped = true
  282. o.Text = "Speed Here"
  283.  
  284. a = Instance.new("TextBox",gui)
  285. a.Name = "ID Here"
  286. a.Size = UDim2.new(0,300,0,25)
  287. a.Position = UDim2.new(0,900,0,530)
  288. a.BackgroundTransparency = 0
  289. a.BackgroundColor3 = Color3.new(0,0,0)
  290. a.BorderSizePixel = 0
  291. a.Font = "Arcade"
  292. a.TextColor3 = Color3.new(255,255,255)
  293. a.TextScaled = true
  294. a.TextWrapped = true
  295. a.Text = "ID Here"
  296.  
  297. b = Instance.new("TextBox",gui)
  298. b.Name = "Namehere"
  299. b.Size = UDim2.new(0,300,0,25)
  300. b.Position = UDim2.new(0,900,0,560)
  301. b.BackgroundTransparency = 0
  302. b.BackgroundColor3 = Color3.new(0,0,0)
  303. b.BorderSizePixel = 0
  304. b.Font = "Arcade"
  305. b.TextColor3 = Color3.new(255,255,255)
  306. b.TextScaled = true
  307. b.TextWrapped = true
  308. b.Text = "Name here"
  309.  
  310. c = Instance.new("TextButton",gui)
  311. c.Name = "Animation"
  312. c.Size = UDim2.new(0,100,0,40)
  313. c.Position = UDim2.new(0,800,0,520)
  314. c.BackgroundTransparency = 0
  315. c.BackgroundColor3 = Color3.new(0,0,0)
  316. c.BorderSizePixel = 0
  317. c.Font = "Arcade"
  318. c.TextColor3 = Color3.new(255,255,255)
  319. c.TextScaled = true
  320. c.TextWrapped = true
  321. c.Text = "Animation"
  322.  
  323. d = Instance.new("TextButton",gui)
  324. d.Name = "Player"
  325. d.Size = UDim2.new(0,100,0,40)
  326. d.Position = UDim2.new(0,800,0,560)
  327. d.BackgroundTransparency = 0
  328. d.BackgroundColor3 = Color3.new(0,0,0)
  329. d.BorderSizePixel = 0
  330. d.Font = "Arcade"
  331. d.TextColor3 = Color3.new(255,255,255)
  332. d.TextScaled = true
  333. d.TextWrapped = true
  334. d.Text = "Player"
  335.  
  336. cred = Instance.new("TextLabel",gui)
  337. cred.Name = "Credits"
  338. cred.Size = UDim2.new(0,400,0,20)
  339. cred.Position = UDim2.new(0,800,0,500)
  340. cred.BackgroundTransparency = 0
  341. cred.BackgroundColor3 = Color3.new(0,0,0)
  342. box.BorderSizePixel = 5
  343. box.BorderColor3 = Color3.new(27,42,53)
  344. cred.Font = "Arcade"
  345. cred.FontSize = "Size24"
  346. cred.TextColor3 = Color3.new(255,255,255)
  347. cred.Text = "FE Animation Gui by Dark Magic Rblx!"
  348. cred.TextSize = 19
  349.  
  350. c.MouseButton1Down:connect(function()
  351. local AnimationId = gui["ID Here"].Text
  352. local Anim = Instance.new("Animation")
  353. Anim.AnimationId = "rbxassetid://"..AnimationId
  354. local Player = game.Players:FindFirstChild(gui.Namehere.Text)
  355. if Player ~= nil then
  356. local k = Player.Character.Humanoid:LoadAnimation(Anim)
  357. k:Play()
  358. k:AdjustSpeed(gui["Speed Here"].Text)
  359. end
  360. if gui.Namehere.Text =="me" then
  361. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  362. k:Play()
  363. k:AdjustSpeed(gui["Speed Here"].Text)
  364. end
  365. if gui.Namehere.Text =="all" then
  366. for i,v in pairs(game.Players:GetChildren()) do
  367. local k = v.Character.Humanoid:LoadAnimation(Anim)
  368. k:Play()
  369. k:AdjustSpeed(gui["Speed Here"].Text)
  370. end
  371. end
  372. end)
  373.  
  374.  
  375. d.MouseButton1Down:connect(function()
  376. local AnimationId = gui["ID Here"].Text
  377. local Anim = Instance.new("Animation")
  378. Anim.AnimationId = "rbxassetid://"..AnimationId
  379. local Player = game.Players:FindFirstChild(gui.Namehere.Text)
  380. if Player ~= nil then
  381. local k = Player.Character.Humanoid:LoadAnimation(Anim)
  382. k:Play()
  383. k:AdjustSpeed(gui["Speed Here"].Text)
  384. end
  385. if gui.Namehere.Text =="me" then
  386. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  387. k:Play()
  388. k:AdjustSpeed(gui["Speed Here"].Text)
  389. end
  390. if gui.Namehere.Text =="all" then
  391. for i,v in pairs(game.Players:GetChildren()) do
  392. local k = v.Character.Humanoid:LoadAnimation(Anim)
  393. k:Play()
  394. k:AdjustSpeed(gui["Speed Here"].Text)
  395. end
  396. end
  397. end)
  398. end)
  399.  
  400.  
  401. TopKek40.Name = "TopKek 4.0"
  402. TopKek40.Parent = DogeFrame
  403. TopKek40.BackgroundColor3 = Color3.new(1, 1, 1)
  404. TopKek40.BorderSizePixel = 4
  405. TopKek40.Position = UDim2.new(0.362882316, 0, 0.393304229, 0)
  406. TopKek40.Size = UDim2.new(0, 99, 0, 50)
  407. TopKek40.Font = Enum.Font.SourceSans
  408. TopKek40.Text = "TopKek 4.0"
  409. TopKek40.TextColor3 = Color3.new(0, 0, 0)
  410. TopKek40.TextSize = 21
  411. TopKek40.TextWrapped = true
  412.  
  413. TopKek40.MouseButton1Down:connect(function()
  414. loadstring(game:HttpGet("https://pastebin.com/raw/RTpSgRRF", true))()
  415. end)
  416.  
  417.  
  418. SexGui.Name = "Sex Gui"
  419. SexGui.Parent = DogeFrame
  420. SexGui.BackgroundColor3 = Color3.new(1, 1, 1)
  421. SexGui.BorderSizePixel = 4
  422. SexGui.Position = UDim2.new(0.0468759015, 0, 0.393304229, 0)
  423. SexGui.Size = UDim2.new(0, 99, 0, 50)
  424. SexGui.Font = Enum.Font.SourceSans
  425. SexGui.Text = "Sex Gui"
  426. SexGui.TextColor3 = Color3.new(0, 0, 0)
  427. SexGui.TextSize = 21
  428. SexGui.TextWrapped = true
  429.  
  430. SexGui.MouseButton1Down:connect(function()
  431. loadstring(game:HttpGet("https://pastebin.com/raw/gaWH4W1R", true))()
  432. end)
  433.  
  434. DCMoneyExploit.Name = "DC Money Exploit"
  435. DCMoneyExploit.Parent = DogeFrame
  436. DCMoneyExploit.BackgroundColor3 = Color3.new(1, 1, 1)
  437. DCMoneyExploit.BorderSizePixel = 4
  438. DCMoneyExploit.Position = UDim2.new(0.674075902, 0, 0.213024497, 0)
  439. DCMoneyExploit.Size = UDim2.new(0, 99, 0, 50)
  440. DCMoneyExploit.Font = Enum.Font.SourceSans
  441. DCMoneyExploit.Text = "DC Rob Script"
  442. DCMoneyExploit.TextColor3 = Color3.new(0, 0, 0)
  443. DCMoneyExploit.TextSize = 21
  444. DCMoneyExploit.TextWrapped = true
  445.  
  446. DCMoneyExploit.MouseButton1Down:connect(function()
  447. --boa
  448. game.Workspace.Bank.Bank.VaultContents:Remove()
  449. while wait(15) do
  450. game.Players.LocalPlayer.PlayerGui:WaitForChild("RobBank")
  451. print('robbing')
  452. game.ReplicatedStorage.Events.RobBank:FireServer(10000, false)
  453. game.ReplicatedStorage.Events.GuiHandler:FireServer(false, "RobBank")
  454. wait(0.1)
  455. game.ReplicatedStorage.Functions.BankDeposit:InvokeServer(10000)
  456. end
  457. end)
  458.  
  459. Aimbot.Name = "Aimbot"
  460. Aimbot.Parent = DogeFrame
  461. Aimbot.BackgroundColor3 = Color3.new(1, 1, 1)
  462. Aimbot.BorderSizePixel = 4
  463. Aimbot.Position = UDim2.new(0.361921191, 0, 0.213024497, 0)
  464. Aimbot.Size = UDim2.new(0, 99, 0, 50)
  465. Aimbot.Font = Enum.Font.SourceSans
  466. Aimbot.Text = "Aimbot"
  467. Aimbot.TextColor3 = Color3.new(0, 0, 0)
  468. Aimbot.TextSize = 21
  469. Aimbot.TextWrapped = true
  470.  
  471. Aimbot.MouseButton1Down:connect(function()
  472. loadstring(game:GetObjects('rbxassetid://340856112')[1].Source)()
  473.  
  474. wait()
  475.  
  476. _G.FREE_FOR_ALL = true
  477.  
  478. _G.BIND = 50 -- LEFT CTRL
  479. _G.ESP_BIND = 52 -- LEFT ALT
  480.  
  481.  
  482.  
  483.  
  484. end)
  485.  
  486. InfiniteYield.Name = "Infinite Yield"
  487. InfiniteYield.Parent = DogeFrame
  488. InfiniteYield.BackgroundColor3 = Color3.new(1, 1, 1)
  489. InfiniteYield.BorderSizePixel = 4
  490. InfiniteYield.Position = UDim2.new(0.0469613262, 0, 0.211594209, 0)
  491. InfiniteYield.Size = UDim2.new(0, 99, 0, 50)
  492. InfiniteYield.Font = Enum.Font.SourceSans
  493. InfiniteYield.Text = "Infinite Yield"
  494. InfiniteYield.TextColor3 = Color3.new(0, 0, 0)
  495. InfiniteYield.TextSize = 21
  496. InfiniteYield.TextWrapped = true
  497.  
  498. InfiniteYield.MouseButton1Down:connect(function()
  499. ---------------------------------------------------------------
  500. ---------------------------------------------------------------
  501. -- _____ __ _ _ _ __ ___ _ _ --
  502. -- |_ _| / _(_) (_) | \ \ / (_) | | | | --
  503. -- | | _ __ | |_ _ _ __ _| |_ ___ \ V / _ ___| | __| | --
  504. -- | || '_ \| _| | '_ \| | __/ _ \ \ / | |/ _ \ |/ _` | --
  505. -- _| || | | | | | | | | | | || __/ | | | | __/ | (_| | --
  506. -- \___/_| |_|_| |_|_| |_|_|\__\___| \_/ |_|\___|_|\__,_| --
  507. -- --
  508. ---------------------------------------------------------------
  509. ---------------------------------------------------------------
  510. -------------------------Version 3.9.5-------------------------
  511. ---------------------------------------------------------------
  512. ---------------------IoIman616---Edge#3467---------------------
  513. -------------Desiredusername1233--bluntboomer#1259-------------
  514. --------------------sweg2hip----Master#9156--------------------
  515. ---------------------------------------------------------------
  516.  
  517. --The message system was created by HARKINIAN @ V3RMILLION
  518. --Bang and fly is from rocky2u
  519. --Thank you for support everyone
  520.  
  521. local gCoreGui = game:GetService('CoreGui')
  522. local gPlayers = game:GetService('Players')
  523. local gLighting = game:GetService('Lighting')
  524. local gWorkspace = game:GetService('Workspace')
  525. local Player = game.Players.LocalPlayer
  526. local Mouse = Player:GetMouse()
  527. local char = Player.Character
  528. local LP = gPlayers.LocalPlayer
  529. local gPlayers = game:GetService("Players")
  530. local admin = gPlayers.LocalPlayer.Name
  531. local _players = game:GetService('Players')
  532. MSGhook = false
  533. local services={}
  534. local cmds={}
  535. local std={}
  536. local loopkillT = {}
  537. local rainbowT = {}
  538. local disabletoolsT = {}
  539. local banT = {}
  540. local admins = {}
  541. function FIND_CHILD(PATH, NAME) if PATH:FindFirstChild(NAME) then return true end return false end
  542. local Version = '3.9.5'
  543. wait(0.1)
  544. services.players=gPlayers
  545. services.lighting=game:GetService('Lighting')
  546. services.workspace=game:GetService('Workspace')
  547. services.events = {}
  548. local user = gPlayers.LocalPlayer
  549. local gCoreGui = game:GetService('CoreGui')
  550. local gPlayers = game:GetService('Players')
  551. local gLighting = game:GetService('Lighting')
  552. local gWorkspace = game:GetService('Workspace')
  553. local cmdprefix=';'
  554. local scriptprefix='\\'
  555. local split=" "
  556. local Checked = Instance.new("BoolValue")
  557. Checked.Name = "notify"
  558. Checked.Value = true
  559. Checked.Parent = game.Players.LocalPlayer
  560. local Checked2 = Instance.new("BoolValue")
  561. Checked2.Name = "allowfriends"
  562. Checked2.Value = true
  563. Checked2.Parent = game.Players.LocalPlayer
  564. local Checked3 = Instance.new("BoolValue")
  565. Checked3.Name = "JLnotify"
  566. Checked3.Value = true
  567. Checked3.Parent = game.Players.LocalPlayer
  568. local Mtime = Instance.new("IntValue")
  569. Mtime.Name = "MSGtime"
  570. Mtime.Value = 7 -- this is adjustable in settings (default is 7 seconds)
  571. Mtime.Parent = game.Players.LocalPlayer
  572. slock = false
  573.  
  574. local origsettings = {abt = game.Lighting.Ambient, brt = game.Lighting.Brightness, time =
  575. game.Lighting.TimeOfDay, fclr = game.Lighting.FogColor, fe =
  576. game.Lighting.FogEnd, fs = game.Lighting.FogStart}
  577.  
  578. function FindTable(Table, Name)
  579. for i,v in pairs(Table) do
  580. if v == Name then
  581. return true
  582. end
  583. end
  584. return false
  585. end
  586. function GetInTable(Table, Name)
  587. for i = 1, #Table do
  588. if Table[i] == Name then
  589. return i
  590. end
  591. end
  592. return false
  593. end
  594. game:GetService('RunService').Stepped:connect(function()
  595. for _, child in pairs( workspace:GetChildren()) do
  596. if MSGhook == false and child.ClassName == "Message" and child.Name ~= "IYmessage" then
  597. child.Name = "IYmessage"
  598. child.Text = ''
  599. MSGhook = true
  600. end
  601. end
  602. end)
  603. function cmdcheck()
  604. for _, child in pairs( game.CoreGui:GetChildren()) do
  605. if child.Name == "CMDs" then
  606. game.CoreGui.CMDs:Destroy()
  607. wait(1)
  608. end
  609. end
  610. end
  611. game:GetService('RunService').Stepped:connect(function()
  612. for _, child in pairs( game.CoreGui:GetChildren()) do
  613. if child.Name == "CMDs" then
  614. game.CoreGui.CMDs.MAIN.Exit.MouseButton1Click:Connect(function()
  615. cmdwin.MAIN:TweenPosition(UDim2.new(0,-250,1,-200),"Out","Quint",0.3,true)
  616. wait(0.4)
  617. cmdOpen = false
  618. cmdcheck()
  619. wait(1)
  620. end)
  621. end
  622. end
  623. end)
  624. wait(0.5)
  625. game:GetService('RunService').Stepped:connect(function()
  626. if workspace:FindFirstChild("IYmessage") then
  627. MSGhook = true
  628. else
  629. MSGhook = false
  630. end
  631. end)
  632. function _G.msg(txt)
  633. if MSGhook == true then
  634. workspace.IYmessage.Text = ''
  635. wait(0.1)
  636. local b = Instance.new("BlurEffect", game.Lighting)
  637. b.Name = "IYmblur"
  638. b.Size = 18
  639. workspace.IYmessage.Text = txt
  640. wait(game.Players.LocalPlayer.MSGtime.Value)
  641. workspace.IYmessage.Text = ''
  642. b:Destroy()
  643. elseif MSGhook == false then
  644. Notify('You need to do ;loadm first! (msg not found)')
  645. end
  646. end
  647. game:GetService('RunService').Stepped:connect(function()
  648. if MSGhook == true and workspace.IYmessage.Text == '' then
  649. for _, child in pairs( game.Lighting:GetChildren()) do
  650. if child.Name == "IYmblur" then
  651. child:Destroy()
  652. end
  653. end
  654. end
  655. end)
  656. game:GetService('RunService').Stepped:connect(function()
  657. for i,v in pairs(_players:GetPlayers()) do
  658. if FindTable(loopkillT, v.Name) then
  659. v.Character:BreakJoints()
  660. end
  661. end
  662. end)
  663. game:GetService('RunService').Stepped:connect(function()
  664. for i,v in pairs(_players:GetPlayers()) do
  665. if FindTable(rainbowT, v.Name) then
  666. v.Neutral = false
  667. v.TeamColor = BrickColor.random()
  668. end
  669. end
  670. end)
  671. local FLYING = false
  672. game:GetService('RunService').Stepped:connect(function()
  673. if LP.Character and LP.Character:FindFirstChild('Humanoid') then
  674. LP.Character.Humanoid.Died:connect(function() FLYING = false end)
  675. repeat wait() until LP.Character.Humanoid.Health > 0
  676. end
  677. end)
  678. function sFLY()
  679. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('Torso') and LP.Character:FindFirstChild('Humanoid')
  680. repeat wait() until Mouse
  681.  
  682. local T = LP.Character.Torso
  683. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  684. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  685. local SPEED = 0
  686.  
  687. local function FLY()
  688. FLYING = true
  689. local BG = Instance.new('BodyGyro', T)
  690. local BV = Instance.new('BodyVelocity', T)
  691. BG.P = 9e4
  692. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  693. BG.cframe = T.CFrame
  694. BV.velocity = Vector3.new(0, 0.1, 0)
  695. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  696. spawn(function()
  697. repeat wait()
  698. LP.Character.Humanoid.PlatformStand = true
  699. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  700. SPEED = 50
  701. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  702. SPEED = 0
  703. end
  704. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  705. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  706. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  707. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  708. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  709. else
  710. BV.velocity = Vector3.new(0, 0.1, 0)
  711. end
  712. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  713. until not FLYING
  714. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  715. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  716. SPEED = 0
  717. BG:destroy()
  718. BV:destroy()
  719. LP.Character.Humanoid.PlatformStand = false
  720. end)
  721. end
  722. Mouse.KeyDown:connect(function(KEY)
  723. if KEY:lower() == 'w' then
  724. CONTROL.F = 1
  725. elseif KEY:lower() == 's' then
  726. CONTROL.B = -1
  727. elseif KEY:lower() == 'a' then
  728. CONTROL.L = -1
  729. elseif KEY:lower() == 'd' then
  730. CONTROL.R = 1
  731. end
  732. end)
  733. Mouse.KeyUp:connect(function(KEY)
  734. if KEY:lower() == 'w' then
  735. CONTROL.F = 0
  736. elseif KEY:lower() == 's' then
  737. CONTROL.B = 0
  738. elseif KEY:lower() == 'a' then
  739. CONTROL.L = 0
  740. elseif KEY:lower() == 'd' then
  741. CONTROL.R = 0
  742. end
  743. end)
  744. FLY()
  745. end
  746. function NOFLY()
  747. FLYING = false
  748. LP.Character.Humanoid.PlatformStand = false
  749. end
  750. game:GetService('RunService').Stepped:connect(function()
  751. for i,n in pairs(_players:GetPlayers()) do
  752. if FindTable(disabletoolsT, n.Name) then
  753. for i,v in pairs(n.Backpack:GetChildren()) do
  754. if v:IsA('Tool') or v:IsA('HopperBin') then
  755. v:destroy()
  756. end
  757. for i,v in pairs(n.Character:GetChildren()) do
  758. if v:IsA('Tool') or v:IsA('HopperBin') then
  759. v:destroy()
  760. end
  761. end
  762. end
  763. end
  764. end
  765. end)
  766.  
  767. -------------------------------------------
  768. ------------Player Joined/Left-------------
  769. -------------------------------------------
  770. waitTime=5
  771. function PlayerEntered(Player)
  772. if Player ~= nil and game.Players.LocalPlayer.JLnotify.Value == true then
  773. local runDummyScript = function(f,scri)
  774. local oldenv = getfenv(f)
  775. local newenv = setmetatable({}, {
  776. __index = function(_, k)
  777. if k:lower() == 'script' then
  778. return scri
  779. else
  780. return oldenv[k]
  781. end
  782. end
  783. })
  784. setfenv(f, newenv)
  785. ypcall(function() f() end)
  786. end
  787. cors = {}
  788. mas = Instance.new("Model",game:GetService("Lighting"))
  789. mas.Name = "CompiledModel"
  790. o1 = Instance.new("ScreenGui")
  791. o2 = Instance.new("Decal")
  792. o3 = Instance.new("Frame")
  793. o4 = Instance.new("ImageLabel")
  794. o5 = Instance.new("TextBox")
  795. o1.Name = "PlayerEntered"
  796. o1.Parent = mas
  797. o2.Parent = o1
  798. o2.Texture = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  799. o3.Parent = o1
  800. o3.Position = UDim2.new(0,-360,0,400)
  801. o3.Size = UDim2.new(0,350,0,100)
  802. o3.Style = Enum.FrameStyle.RobloxSquare
  803. o3.Position = UDim2.new(0,-360,0,400)
  804. o3.BackgroundColor3 = Color3.new(0.658824, 0.654902, 0.666667)
  805. o4.Parent = o3
  806. o4.Size = UDim2.new(0,90,1,0)
  807. o4.BackgroundColor3 = Color3.new(1, 1, 1)
  808. o4.BackgroundTransparency = 0.89999997615814
  809. o4.BorderColor3 = Color3.new(0, 0, 0)
  810. o4.Image = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  811. o5.Parent = o3
  812. o5.Position = UDim2.new(0,100,0,0)
  813. o5.Size = UDim2.new(0,230,1,0)
  814. o5.Text = "-Playername- Joined the Game"
  815. o5.Position = UDim2.new(0,100,0,0)
  816. o5.Active = false
  817. o5.BackgroundColor3 = Color3.new(1, 1, 1)
  818. o5.BackgroundTransparency = 0.89999997615814
  819. o5.BorderColor3 = Color3.new(0, 0, 0)
  820. o5.Font = Enum.Font.ArialBold
  821. o5.FontSize = Enum.FontSize.Size14
  822. o5.TextColor3 = Color3.new(1, 1, 1)
  823. o5.TextStrokeTransparency = 0
  824. mas.Parent = workspace
  825. mas:MakeJoints()
  826. local mas1 = mas:GetChildren()
  827. for i=1,#mas1 do
  828. mas1[i].Parent = game.Players.LocalPlayer.PlayerGui
  829. ypcall(function() mas1[i]:MakeJoints() end)
  830. end
  831. mas:Destroy()
  832. for i=1,#cors do
  833. spawn(cors[i])
  834. end
  835. wait(0.5)
  836. o2.Parent.Frame.Visible=false
  837. link = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username="
  838. o2.Parent.Frame.ImageLabel.Image = link .. Player.Name .. "&RAND=" .. math.random(1,100000)
  839. o2.Parent.Frame.TextBox.Text= Player.Name .. " Joined"
  840. o2.Parent.Frame.Visible=true
  841. o2.Parent.Frame:TweenPosition(UDim2.new(0,0,0,400),"Out","Quint",0.3,true)
  842. wait(waitTime)
  843. o2.Parent.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  844. wait(1)
  845. o1:Destroy()
  846. for _, child in pairs( game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  847. if child.Name == "PlayerEntered" then
  848. child.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  849. wait(1)
  850. child:Destroy()
  851. end
  852. end
  853. end
  854. end
  855.  
  856. game.Players.ChildAdded:connect(PlayerEntered)
  857.  
  858. function PlayerLeft(Player)
  859. if Player ~= nil and game.Players.LocalPlayer.JLnotify.Value == true then
  860. local runDummyScript = function(f,scri)
  861. local oldenv = getfenv(f)
  862. local newenv = setmetatable({}, {
  863. __index = function(_, k)
  864. if k:lower() == 'script' then
  865. return scri
  866. else
  867. return oldenv[k]
  868. end
  869. end
  870. })
  871. setfenv(f, newenv)
  872. ypcall(function() f() end)
  873. end
  874. cors = {}
  875. mas = Instance.new("Model",game:GetService("Lighting"))
  876. mas.Name = "CompiledModel"
  877. o1 = Instance.new("ScreenGui")
  878. o2 = Instance.new("Decal")
  879. o3 = Instance.new("Frame")
  880. o4 = Instance.new("ImageLabel")
  881. o5 = Instance.new("TextBox")
  882. o1.Name = "PlayerEntered"
  883. o1.Parent = mas
  884. o2.Parent = o1
  885. o2.Texture = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  886. o3.Parent = o1
  887. o3.Position = UDim2.new(0,-360,0,400)
  888. o3.Size = UDim2.new(0,350,0,100)
  889. o3.Style = Enum.FrameStyle.RobloxSquare
  890. o3.Position = UDim2.new(0,-360,0,400)
  891. o3.BackgroundColor3 = Color3.new(0.658824, 0.654902, 0.666667)
  892. o4.Parent = o3
  893. o4.Size = UDim2.new(0,90,1,0)
  894. o4.BackgroundColor3 = Color3.new(1, 1, 1)
  895. o4.BackgroundTransparency = 0.89999997615814
  896. o4.BorderColor3 = Color3.new(0, 0, 0)
  897. o4.Image = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  898. o5.Parent = o3
  899. o5.Position = UDim2.new(0,100,0,0)
  900. o5.Size = UDim2.new(0,230,1,0)
  901. o5.Text = "-Playername- Joined the Game"
  902. o5.Position = UDim2.new(0,100,0,0)
  903. o5.Active = false
  904. o5.BackgroundColor3 = Color3.new(1, 1, 1)
  905. o5.BackgroundTransparency = 0.89999997615814
  906. o5.BorderColor3 = Color3.new(0, 0, 0)
  907. o5.Font = Enum.Font.ArialBold
  908. o5.FontSize = Enum.FontSize.Size14
  909. o5.TextColor3 = Color3.new(1, 1, 1)
  910. o5.TextStrokeTransparency = 0
  911. mas.Parent = workspace
  912. mas:MakeJoints()
  913. local mas1 = mas:GetChildren()
  914. for i=1,#mas1 do
  915. mas1[i].Parent = game.Players.LocalPlayer.PlayerGui
  916. ypcall(function() mas1[i]:MakeJoints() end)
  917. end
  918. mas:Destroy()
  919. for i=1,#cors do
  920. spawn(cors[i])
  921. end
  922. wait(0.5)
  923. link = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username="
  924. o2.Parent.Frame.ImageLabel.Image = link .. Player.Name .. "&RAND=" .. math.random(1,100000)
  925. o2.Parent.Frame.TextBox.Text= Player.Name .. " Left"
  926. o2.Parent.Frame.Visible=true
  927. o2.Parent.Frame:TweenPosition(UDim2.new(0,0,0,400),"Out","Quint",0.3,true)
  928. wait(waitTime)
  929. o2.Parent.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  930. wait(1)
  931. o1:Destroy()
  932. for _, child in pairs( game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  933. if child.Name == "PlayerEntered" then
  934. child.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  935. wait(1)
  936. child:Destroy()
  937. end
  938. end
  939. end
  940. end
  941.  
  942. game.Players.PlayerRemoving:connect(PlayerLeft)
  943.  
  944. -------------------------------------------
  945. ---Commands that show up in the CMD list---
  946. -------------------------------------------
  947.  
  948. CMDs = {
  949. '- settings',
  950. '1. ff [plr]',
  951. '2. unff [plr]',
  952. '3. fire [plr] [R G B]',
  953. '4. unfire [plr]',
  954. '5. sparkles [plr] [R G B]',
  955. '6. unsparkles [plr]',
  956. '7. smoke [plr]',
  957. '8. unsmoke [plr]',
  958. '9. btools [plr]',
  959. '10. god [plr]',
  960. '11. ungod [plr]',
  961. '12. smite [plr]',
  962. '13. heal [plr]',
  963. '14. freeze [plr]',
  964. '15. thaw [plr]',
  965. '16. kill [plr]',
  966. '17. sound [ID]',
  967. '18. volume [num]',
  968. '19. pitch [num]',
  969. '20. explode [plr]',
  970. '21. invisible [plr]',
  971. '22. visible [plr]',
  972. '23. goto [plr]',
  973. '24. bring [plr]',
  974. '25. tp [plr] [plr]',
  975. '26. char [plr]',
  976. '27. speed [plr] [num]',
  977. '28. time [num]',
  978. '29. kick [plr]',
  979. '30. sgod [plr]',
  980. '31. unlockws',
  981. '32. lockws',
  982. '33. unanchor',
  983. '34. anchor',
  984. '35. loadm',
  985. '36. m [msg]',
  986. '37. light [plr] [R G B]',
  987. '38. decalspam [ID]',
  988. '39. undecalspam',
  989. '40. firstp [plr]',
  990. '41. thirdp [plr]',
  991. '42. fart [plr]',
  992. '43. name [plr]',
  993. '44. unname [plr]',
  994. '45. stun [plr]',
  995. '46. unstun [plr]',
  996. '47. copytools [plr]',
  997. '48. serverinfo',
  998. '49. damage [plr]',
  999. '50. view [plr]',
  1000. '51. unview [plr]',
  1001. '52. nolimbs [plr]',
  1002. '53. box [plr]',
  1003. '54. nobox [plr]',
  1004. '55. ghost [plr]',
  1005. '56. sphere [plr]',
  1006. '57. loadmap [ID]',
  1007. '58. sky [ID]',
  1008. '59. ambient [R G B]',
  1009. '60. clrterrain',
  1010. '61. jail [plr]',
  1011. '62. unjail [plr]',
  1012. '63. shutdown',
  1013. '64. animation [plr] [anim]',
  1014. '65. normal [plr]',
  1015. '66. creeper [plr]',
  1016. '67. uncreeper [plr]',
  1017. '68. shrek [plr]',
  1018. '69. unshrek [plr]',
  1019. '70. respawn [plr]',
  1020. '71. base',
  1021. '72. control [plr]',
  1022. '73. nuke [plr]',
  1023. '74. infect [plr]',
  1024. '75. uninfect [plr]',
  1025. '76. duck [plr]',
  1026. '77. unduck [plr]',
  1027. '78. disable [plr]',
  1028. '79. enable [plr]',
  1029. '80. size [plr]',
  1030. '81. confuse [plr]',
  1031. '82. unconfuse [plr]',
  1032. '83. clone [plr]',
  1033. '84. spin [plr]',
  1034. '85. unspin [plr]',
  1035. '86. dog [plr]',
  1036. '87. undog [plr]',
  1037. '88. loopheal [plr]',
  1038. '89. unloopheal [plr]',
  1039. '90. fling [plr]',
  1040. '91. ayylmao [plr]',
  1041. '92. nograv [plr]',
  1042. '93. grav [plr]',
  1043. '94. seizure [plr]',
  1044. '95. unseizure [plr]',
  1045. '96. paper [plr]',
  1046. '97. punish [plr]',
  1047. '98. unpunish [plr]',
  1048. '99. fogend [num]',
  1049. '100. fogcolor [R G B]',
  1050. '101. disco',
  1051. '102. undisco',
  1052. '103. fix',
  1053. '104. flood',
  1054. '105. spookyify',
  1055. '106. explorer',
  1056. '107. particles [plr] [ID]',
  1057. '108. noparticles [plr]',
  1058. '109. draw',
  1059. '110. devuzi',
  1060. '111. ban [plr]',
  1061. '112. clrbans',
  1062. '113. float [plr]',
  1063. '114. unfloat [plr]',
  1064. '115. noclip',
  1065. '116. clip',
  1066. '117. hatsize [plr] [num]',
  1067. '118. removehat [plr]',
  1068. '119. cripple [plr]',
  1069. '120. uncripple [plr]',
  1070. '121. blur [num]',
  1071. '122. hipheight [plr] [num]',
  1072. '123. bgui [plr] [text]',
  1073. '124. unbgui [plr]',
  1074. '125. loopkill [plr]',
  1075. '126. unloopkill [plr]',
  1076. '127. removetools [plr]',
  1077. '128. grav [plr] [num]',
  1078. '129. serverlock',
  1079. '130. unserverlock',
  1080. '131. headshake [plr]',
  1081. '132. addstat [plr] [text]',
  1082. '133. change stat [plr] [num]',
  1083. '134. headsize [plr] [num]',
  1084. '135. bang [plr]',
  1085. '136. chat [plr] [msg]',
  1086. '137. gravity [num]',
  1087. '138. disabletools [plr]',
  1088. '139. enabletools [plr]',
  1089. '140. nil [plr]',
  1090. '141. rainbowname [plr]',
  1091. '142. unrainbowname [plr]',
  1092. '143. mesh [plr] [mesh] [texture]',
  1093. '144. neon [plr]',
  1094. '145. longneck [plr]',
  1095. '146. unlongneck [plr]',
  1096. '147. spasm [plr]',
  1097. '148. meteor [plr]',
  1098. '149. countdown [num]',
  1099. '150. bomb [plr]',
  1100. '151. fly',
  1101. '152. unfly',
  1102. '153. crash [plr]',
  1103. '154. admin [plr]',
  1104. '155. unadmin [plr]',
  1105. '156. clradmins',
  1106. '157. executor',
  1107. '158. prefix [string]',
  1108. '159. cmds',
  1109. '160. version'
  1110. }
  1111.  
  1112. -------
  1113. --Lib--
  1114. -------
  1115.  
  1116. updateevents=function()
  1117. for i,v in pairs(services.events) do services.events:remove(i) v:disconnect() end
  1118. for i,v in pairs(gPlayers:players())do
  1119. local ev = v.Chatted:connect(function(msg) do_exec(msg,v) end)
  1120. services.events[#services.events+1] = ev
  1121. end
  1122. end
  1123. std.inTable=function(tbl,val)
  1124. if tbl==nil then return false end
  1125.  
  1126. for _,v in pairs(tbl)do
  1127. if v==val then return true end
  1128. end
  1129. return false
  1130. end
  1131. std.out=function(str)
  1132. print(str)
  1133. end
  1134. std.list=function(tbl)
  1135. local str=''
  1136. for i,v in pairs(tbl)do
  1137. str=str..tostring(v)
  1138. if i~=#tbl then str=str..', ' end
  1139. end
  1140. return str
  1141. end
  1142. std.endat=function(str,val)
  1143. local z=str:find(val)
  1144. if z then
  1145. return str:sub(0,z-string.len(val)),true
  1146. else
  1147. return str,false
  1148. end
  1149. end
  1150. std.first=function(str) return str:sub(1,1) end
  1151. isAdmin=function(name)
  1152. for i,v in pairs(_players:GetPlayers()) do
  1153. if FindTable(admins, v.Name) then
  1154. return true
  1155. elseif name==admin then
  1156. return true
  1157. end
  1158. end
  1159. return false
  1160. end
  1161. local exec=function(str)
  1162. spawn(function()
  1163. local script, loaderr = loadstring(str)
  1164. if not script then
  1165. error(loaderr)
  1166. else
  1167. script()
  1168. end
  1169. end)
  1170. end
  1171. local findCmd=function(cmd_name)
  1172. for i,v in pairs(cmds)do
  1173. if v.NAME:lower()==cmd_name:lower() or std.inTable(v.ALIAS,cmd_name:lower())then
  1174. return v
  1175. end
  1176. end
  1177. end
  1178. local getCmd=function(msg)
  1179. local cmd,hassplit=std.endat(msg:lower(),split)
  1180. if hassplit then
  1181. return {cmd,true}
  1182. else
  1183. return {cmd,false}
  1184. end
  1185. end
  1186. local getprfx=function(strn)
  1187. if strn:sub(1,string.len(cmdprefix))==cmdprefix then return{'cmd',string.len(cmdprefix)+1}
  1188. elseif strn:sub(1,string.len(scriptprefix))==scriptprefix then return{'exec',string.len(scriptprefix)+1}
  1189. end return
  1190. end
  1191. function getArgs(str) local A = {} local NA = nil local HS = nil local S = str repeat NA, HS = std.endat(S:lower(), split) if NA ~= '' then table.insert(A, NA) S = S:sub(string.len(NA) + string.len(split) + 1) end until not HS return A end
  1192. function getCapArgs(str) local A = {} local NA = nil local HS = nil local S = str repeat NA, HS = std.endat(S, split) if NA ~= '' then table.insert(A, NA) S = S:sub(string.len(NA) + string.len(split) + 1) end until not HS return A end
  1193. _players.PlayerAdded:connect(function(player)
  1194. if slock == true and game.Players.LocalPlayer.allowfriends.Value == false then player.CharacterAdded:connect(function()
  1195. spawn(function()
  1196. function Kick(PLAYER)
  1197. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') and PLAYER.Character:FindFirstChild('Torso') then
  1198. PLAYER.Character.HumanoidRootPart.Position = Vector3.new(math.random(999000, 1001000), 10000, 0)
  1199. local Plat = Instance.new('SkateboardPlatform', PLAYER.Character) Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1200. Plat.Name = 'IYkick'
  1201. Plat.Size = Vector3.new(100, 1, 100)
  1202. local PART = Instance.new('Part', PLAYER.Character)
  1203. PART.Position = Plat.Position - Vector3.new(0, 3, 0)
  1204. PART.Size = Vector3.new(100, 1, 100)
  1205. PART.Anchored = true
  1206.  
  1207. PART.Transparency = 1
  1208. Plat.Transparency = 1
  1209.  
  1210. repeat wait(1)
  1211. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') then
  1212. Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1213. end
  1214. Kick(PLAYER)
  1215. until not game.Players:findFirstChild(PLAYER)
  1216. end
  1217. end
  1218. Kick(player)
  1219. end)
  1220. end)
  1221. elseif slock == true and game.Players.LocalPlayer.allowfriends.Value == true and not player:IsFriendsWith(user.userId) then
  1222. spawn(function()
  1223. function Kick(PLAYER)
  1224. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') and PLAYER.Character:FindFirstChild('Torso') then
  1225. PLAYER.Character.HumanoidRootPart.Position = Vector3.new(math.random(999000, 1001000), 10000, 0)
  1226. local Plat = Instance.new('SkateboardPlatform', PLAYER.Character) Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1227. Plat.Name = 'IYkick'
  1228. Plat.Size = Vector3.new(100, 1, 100)
  1229. local PART = Instance.new('Part', PLAYER.Character)
  1230. PART.Position = Plat.Position - Vector3.new(0, 3, 0)
  1231. PART.Size = Vector3.new(100, 1, 100)
  1232. PART.Anchored = true
  1233.  
  1234. PART.Transparency = 1
  1235. Plat.Transparency = 1
  1236.  
  1237. repeat wait(1)
  1238. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') then
  1239. Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1240. end
  1241. Kick(PLAYER)
  1242. until not game.Players:findFirstChild(PLAYER)
  1243. end
  1244. end
  1245. Kick(player)
  1246. end)
  1247. end
  1248. if FindTable(banT, player.userId) then
  1249. spawn(function()
  1250. function Kick(PLAYER)
  1251. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') and PLAYER.Character:FindFirstChild('Torso') then
  1252. PLAYER.Character.HumanoidRootPart.Position = Vector3.new(math.random(999000, 1001000), 10000, 0)
  1253. local Plat = Instance.new('SkateboardPlatform', PLAYER.Character) Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1254. Plat.Name = 'IYkick'
  1255. Plat.Size = Vector3.new(100, 1, 100)
  1256. local PART = Instance.new('Part', PLAYER.Character)
  1257. PART.Position = Plat.Position - Vector3.new(0, 3, 0)
  1258. PART.Size = Vector3.new(100, 1, 100)
  1259. PART.Anchored = true
  1260.  
  1261. PART.Transparency = 1
  1262. Plat.Transparency = 1
  1263.  
  1264. repeat wait(1)
  1265. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') then
  1266. Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1267. end
  1268. Kick(PLAYER)
  1269. until not game.Players:findFirstChild(PLAYER)
  1270. end
  1271. end
  1272. Kick(player)
  1273. end)
  1274. end
  1275. end)
  1276. local function execCmd(str, plr)
  1277. local s_cmd
  1278. local a
  1279. local cmd
  1280. s_cmd = getCmd(str)
  1281. cmd = findCmd(s_cmd[1])
  1282. if cmd == nil then return end
  1283. a = str:sub(string.len(s_cmd[1]) + string.len(split) + 1)
  1284. local args=getArgs(a)
  1285. cargs=getCapArgs(a)
  1286. pcall(function()
  1287. cmd.FUNC(args, plr)
  1288. end)
  1289. end
  1290. function do_exec(str,plr)
  1291. if not isAdmin(plr.Name)then return end
  1292.  
  1293. str=str:gsub('/e ','')
  1294.  
  1295. local t=getprfx(str)
  1296. if t==nil then return end
  1297. str=str:sub(t[2])
  1298. if t[1]=='exec' then
  1299. exec(str)
  1300. elseif t[1]=='cmd' then
  1301. execCmd(str, plr)
  1302. end
  1303. end
  1304. updateevents()
  1305. _G.exec_cmd = execCmd
  1306. --game.Players.LocalPlayer.Chatted:connect(doexec)
  1307. function GLS(lower, start) local AA = '' for i,v in pairs(cargs) do if i > start then if AA ~= '' then AA = AA .. ' ' .. v else AA = AA .. v end end end if not lower then return AA else return string.lower(AA) end end
  1308. local _char=function(plr_name)
  1309. for i,v in pairs(game.Players:GetChildren())do
  1310. if v:IsA'Player'then
  1311. if v.Name==plr_name then return v.Character end
  1312. end
  1313. end
  1314. return
  1315. end
  1316. local _plr=function(plr_name)
  1317. for i,v in pairs(game.Players:GetChildren())do
  1318. if v:IsA'Player'then
  1319. if v.Name==plr_name then return v end
  1320. end
  1321. end
  1322. return
  1323. end
  1324. function addcmd(name,desc,alias,func)
  1325. cmds[#cmds+1]=
  1326. {
  1327. NAME=name;
  1328. DESC=desc;
  1329. ALIAS=alias;
  1330. FUNC=func;
  1331. }
  1332. end
  1333. function getPlayer(name, speaker)
  1334. local name_table = {}
  1335. name = name:lower()
  1336. if name == 'me' then
  1337. table.insert(name_table, speaker.Name)
  1338. elseif name == 'others' then
  1339. for i,v in pairs(_players:GetPlayers()) do if v.Name ~= speaker.Name then table.insert(name_table, v.Name) end end
  1340. elseif name == 'all' then
  1341. for i,v in pairs(_players:GetPlayers()) do table.insert(name_table, v.Name) end
  1342. elseif name == 'random' then
  1343. table.insert(name_table, _players:GetPlayers()[math.random(1, #_players:GetPlayers())].Name)
  1344. elseif name == 'team' then
  1345. for i,v in pairs(_players:GetPlayers()) do if v.TeamColor == speaker.TeamColor then table.insert(name_table, v.Name) end end
  1346. elseif name == "nonteam" then
  1347. for i,v in pairs(gPlayers:GetChildren()) do
  1348. if v.TeamColor ~= user.TeamColor then
  1349. name_table[#name_table+1]=v.Name
  1350. end
  1351. end
  1352. elseif name == 'nonfriends' then
  1353. for i,v in pairs(_players:GetPlayers()) do if not v:IsFriendsWith(speaker.userId) then table.insert(name_table, v.Name) end end
  1354. elseif name == 'friends' then
  1355. for i,v in pairs(_players:GetPlayers()) do if v ~= speaker and v:IsFriendsWith(speaker.userId) then table.insert(name_table, v.Name) end end
  1356. elseif name == 'guests' then
  1357. for i,v in pairs(_players:GetPlayers()) do if v.Guest then table.insert(name_table, v.Name) end end
  1358. elseif name == 'admins' then
  1359. for i,v in pairs(_players:GetPlayers()) do if FindTable(admins, v.Name) then table.insert(name_table, v.Name) end end
  1360. elseif name == 'nonadmins' then
  1361. for i,v in pairs(_players:GetPlayers()) do if not FindTable(admins, v.Name) then table.insert(name_table, v.Name) end end
  1362. else
  1363. for i,v in pairs(_players:GetPlayers()) do local L_name = v.Name:lower() local F = L_name:find(name) if F == 1 then table.insert(name_table, v.Name) end end
  1364. end
  1365. return name_table
  1366. end
  1367. function fWeld(zName, zParent, zPart0, zPart1, zCoco, A, B, C, D, E, F)
  1368. local funcw = Instance.new('Weld') funcw.Name = zName funcw.Parent = zParent funcw.Part0 = zPart0 funcw.Part1 = zPart1
  1369. if (zCoco) then
  1370. funcw.C0 = CFrame.new(A, B, C) * CFrame.fromEulerAnglesXYZ(D, E, F)
  1371. else
  1372. funcw.C1 = CFrame.new(A, B, C) * CFrame.fromEulerAnglesXYZ(D, E, F)
  1373. end
  1374. return funcw
  1375. end
  1376. function rape(victim)
  1377. spawn(function()
  1378. local P1 = _players.LocalPlayer.Character.Torso
  1379. local V1 = _players[victim].Character.Torso
  1380. V1.Parent.Humanoid.PlatformStand = true
  1381. P1['Left Shoulder']:destroy() local LA1 = Instance.new('Weld', P1) LA1.Part0 = P1 LA1.Part1 = P1.Parent['Left Arm'] LA1.C0 = CFrame.new(-1.5, 0, 0) LA1.Name = 'Left Shoulder'
  1382. P1['Right Shoulder']:destroy() local RS1 = Instance.new('Weld', P1) RS1.Part0 = P1 RS1.Part1 = P1.Parent['Right Arm'] RS1.C0 = CFrame.new(1.5, 0, 0) RS1.Name = 'Right Shoulder'
  1383. V1['Left Shoulder']:destroy() local LS2 = Instance.new('Weld', V1) LS2.Part0 = V1 LS2.Part1 = V1.Parent['Left Arm'] LS2.C0 = CFrame.new(-1.5, 0, 0) LS2.Name = 'Left Shoulder'
  1384. V1['Right Shoulder']:destroy() local RS2 = Instance.new('Weld', V1) RS2.Part0 = V1 RS2.Part1 = V1.Parent['Right Arm'] RS2.C0 = CFrame.new(1.5, 0, 0) RS2.Name = 'Right Shoulder'
  1385. V1['Left Hip']:destroy() local LH2 = Instance.new('Weld', V1) LH2.Part0 = V1 LH2.Part1 = V1.Parent['Left Leg'] LH2.C0 = CFrame.new(-0.5, -2, 0) LH2.Name = 'Left Hip'
  1386. V1['Right Hip']:destroy() local RH2 = Instance.new('Weld', V1) RH2.Part0 = V1 RH2.Part1 = V1.Parent['Right Leg'] RH2.C0 = CFrame.new(0.5, -2, 0) RH2.Name = 'Right Hip'
  1387. local D = Instance.new('Part', P1) D.TopSurface = 0 D.BottomSurface = 0 D.CanCollide = false D.BrickColor = BrickColor.new('Pastel brown') D.Shape = 'Ball' D.Size = Vector3.new(1, 1, 1)
  1388. local DM1 = Instance.new('SpecialMesh', D) DM1.MeshType = 'Sphere' DM1.Scale = Vector3.new(0.4, 0.4, 0.4)
  1389. fWeld('weld', P1, P1, D, true, -0.2, -1.3, -0.6, 0, 0, 0)
  1390. local D2 = D:Clone() D2.Parent = P1
  1391. fWeld('weld', P1, P1, D2, true, 0.2, -1.3, -0.6, 0, 0, 0)
  1392. local C = Instance.new('Part', P1) C.TopSurface = 0 C.BottomSurface = 0 C.CanCollide = false C.BrickColor = BrickColor.new('Pastel brown') C.Size = Vector3.new(0.4, 1.3, 0.4)
  1393. fWeld('weld', P1, P1, C, true, 0, -1, -0.52 + (-C.Size.y / 2), math.rad(-80), 0, 0)
  1394. local C2 = D:Clone() C2.BrickColor = BrickColor.new('Pink') C2.Mesh.Scale = Vector3.new(0.4, 0.62, 0.4) C2.Parent = P1
  1395. fWeld('weld', C, C, C2, true, 0, 0 + (C.Size.y / 2), 0, math.rad(-10), 0, 0)
  1396. local CM = Instance.new('CylinderMesh', C)
  1397. local BL = Instance.new('Part', V1) BL.TopSurface = 0 BL.BottomSurface = 0 BL.CanCollide = false BL.BrickColor = BrickColor.new('Pastel brown') BL.Shape = 'Ball' BL.Size = Vector3.new(1, 1, 1)
  1398. local DM2 = Instance.new('SpecialMesh', BL) DM2.MeshType = 'Sphere' DM2.Scale = Vector3.new(1.2, 1.2, 1.2)
  1399. fWeld('weld', V1, V1, BL, true, -0.5, 0.5, -0.6, 0, 0, 0)
  1400. local BR = Instance.new('Part', V1) BR.TopSurface = 0 BR.BottomSurface = 0 BR.CanCollide = false BR.BrickColor = BrickColor.new('Pastel brown') BR.Shape = 'Ball' BR.Size = Vector3.new(1, 1, 1)
  1401. local DM3 = Instance.new('SpecialMesh', BR) DM3.MeshType = 'Sphere' DM3.Scale = Vector3.new(1.2, 1.2, 1.2)
  1402. fWeld('weld', V1, V1, BR, true, 0.5, 0.5, -0.6, 0, 0, 0)
  1403. local BLN = Instance.new('Part', V1) BLN.TopSurface = 0 BLN.BottomSurface = 0 BLN.CanCollide = false BLN.BrickColor = BrickColor.new('Pink') BLN.Shape = 'Ball' BLN.Size = Vector3.new(1, 1, 1)
  1404. local DM4 = Instance.new('SpecialMesh', BLN) DM4.MeshType = 'Sphere' DM4.Scale = Vector3.new(0.2, 0.2, 0.2)
  1405. fWeld('weld', V1, V1, BLN, true, -0.5, 0.5, -1.2, 0, 0, 0)
  1406. local BRN = Instance.new('Part', V1) BRN.TopSurface = 0 BRN.BottomSurface = 0 BRN.CanCollide = false BRN.BrickColor = BrickColor.new('Pink') BRN.Shape = 'Ball' BRN.Size = Vector3.new(1, 1, 1)
  1407. local DM5 = Instance.new('SpecialMesh', BRN) DM5.MeshType = 'Sphere' DM5.Scale = Vector3.new(0.2, 0.2, 0.2)
  1408. fWeld('weld', V1, V1, BRN, true, 0.5, 0.5, -1.2, 0, 0, 0)
  1409. LH2.C1 = CFrame.new(0.2, 1.6, 0.4) * CFrame.Angles(3.9, -0.4, 0) RH2.C1 = CFrame.new(-0.2, 1.6, 0.4) * CFrame.Angles(3.9, 0.4, 0)
  1410. LS2.C1 = CFrame.new(-0.2, 0.9, 0.6) * CFrame.Angles(3.9, -0.2, 0) RS2.C1 = CFrame.new(0.2, 0.9, 0.6) * CFrame.Angles(3.9, 0.2, 0)
  1411. LA1.C1 = CFrame.new(-0.5, 0.7, 0) * CFrame.Angles(-0.9, -0.4, 0) RS1.C1 = CFrame.new(0.5, 0.7, 0) * CFrame.Angles(-0.9, 0.4, 0)
  1412. if P1:FindFirstChild('weldx') then P1.weldx:destroy() end
  1413. WE = fWeld('weldx', P1, P1, V1, true, 0, -0.9, -1.3, math.rad(-90), 0, 0)
  1414. local N = V1.Neck N.C0 = CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-210), math.rad(180), 0)
  1415. end)
  1416. spawn(function() while wait() do for i = 1, 6 do WE.C1 = WE.C1 * CFrame.new(0, -0.3, 0) end for i = 1, 6 do WE.C1 = WE.C1 * CFrame.new(0, 0.3, 0) end end end)
  1417. end
  1418.  
  1419. ----------------
  1420. ----Commands----
  1421. ----------------
  1422. addcmd('exe','gives you a quick executor',{'executor'},
  1423. function(args, speaker)
  1424. local PlayerName = game.Players.LocalPlayer.Name
  1425.  
  1426. Exploit = Instance.new("ScreenGui")
  1427.  
  1428. UI = Instance.new("Frame")
  1429. ScrollingFrame = Instance.new("ScrollingFrame")
  1430. GScrollingFrame = Instance.new("ScrollingFrame")
  1431. Source = Instance.new("TextBox")
  1432. Execute = Instance.new("TextButton")
  1433. Clear = Instance.new("TextButton")
  1434. Close = Instance.new("TextButton")
  1435. Open = Instance.new("TextButton")
  1436. Name = Instance.new("TextLabel")
  1437. TextButton = Instance.new("TextButton")
  1438. -- Properties
  1439.  
  1440. Exploit.Name = "Exploit"
  1441. Exploit.Parent = game.Players.LocalPlayer.PlayerGui
  1442.  
  1443. UI.Name = "UI"
  1444. UI.Parent = Exploit
  1445. UI.Active = true
  1446. UI.BackgroundColor3 = Color3.new(0, 0, 0)
  1447. UI.BorderColor3 = Color3.new(255, 255, 255)
  1448. UI.Draggable = true
  1449. UI.Position = UDim2.new(0, 31, 0, 111)
  1450. UI.Selectable = true
  1451. UI.Size = UDim2.new(0, 600, 0, 300)
  1452. UI.Visible = false
  1453.  
  1454. ScrollingFrame.Parent = UI
  1455. ScrollingFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  1456. ScrollingFrame.BorderColor3 = Color3.new(255, 255, 255)
  1457. ScrollingFrame.Position = UDim2.new(0, 10, 0, 10)
  1458. ScrollingFrame.Size = UDim2.new(0, 580, 0, 240)
  1459. ScrollingFrame.CanvasSize = UDim2.new(0,0,20,0)
  1460. ScrollingFrame.Changed:connect(function()
  1461. GScrollingFrame.CanvasPosition = ScrollingFrame.CanvasPosition
  1462. end)
  1463. Source.Name = "Source"
  1464. Source.Parent = ScrollingFrame
  1465. Source.BackgroundColor3 = Color3.new(0, 0, 0)
  1466. Source.BorderColor3 = Color3.new(0, 0,0)
  1467. Source.Position = UDim2.new(0, 0, 0, 0)
  1468. Source.Size = UDim2.new(0, 550, 0, 3000)
  1469. Source.ClearTextOnFocus = false
  1470. Source.Font = Enum.Font.Code
  1471. Source.FontSize = Enum.FontSize.Size18
  1472. Source.MultiLine = true
  1473. Source.Text = 'print("Hello World!")'
  1474. Source.TextColor3 = Color3.new(255, 255, 255)
  1475. Source.TextSize = 18
  1476. Source.TextWrapped = true
  1477. Source.TextXAlignment = Enum.TextXAlignment.Left
  1478. Source.TextYAlignment = Enum.TextYAlignment.Top
  1479.  
  1480. Execute.Name = "Execute"
  1481. Execute.Parent = UI
  1482. Execute.BackgroundColor3 = Color3.new(0, 0, 0)
  1483. Execute.BorderColor3 = Color3.new(255, 255, 255)
  1484. Execute.Position = UDim2.new(0, 150, 0, 260)
  1485. Execute.Size = UDim2.new(0, 60, 0, 30)
  1486. Execute.Font = Enum.Font.SciFi
  1487. Execute.FontSize = Enum.FontSize.Size14
  1488. Execute.Text = "Execute"
  1489. Execute.TextColor3 = Color3.new(255, 255, 255)
  1490. Execute.TextSize = 14
  1491. Execute.MouseButton1Down:connect(function()
  1492. Name.Text = "Running"
  1493. loadstring(tostring(Source.Text))()
  1494. Name.Text = "Executed"
  1495. wait(1)
  1496. Name.Text = "Quick Exe"
  1497. end)
  1498. Clear.Name = "Clear"
  1499. Clear.Parent = UI
  1500. Clear.BackgroundColor3 = Color3.new(0, 0, 0)
  1501. Clear.BorderColor3 = Color3.new(255, 255, 255)
  1502. Clear.Position = UDim2.new(0, 380, 0, 260)
  1503. Clear.Size = UDim2.new(0, 60, 0, 30)
  1504. Clear.Font = Enum.Font.SciFi
  1505. Clear.FontSize = Enum.FontSize.Size14
  1506. Clear.Text = "Clear"
  1507. Clear.TextColor3 = Color3.new(255, 255, 255)
  1508. Clear.TextSize = 14
  1509. Clear.MouseButton1Down:connect(function()
  1510. Name.Text = "Cleared!"
  1511. Source.Text = ""
  1512. wait(1)
  1513. Name.Text = "Quick Exe"
  1514. end)
  1515.  
  1516. Close.Name = "Close"
  1517. Close.Parent = UI
  1518. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  1519. Close.BorderColor3 = Color3.new(255, 255, 255)
  1520. Close.Position = UDim2.new(0, 270, 0, 301)
  1521. Close.Size = UDim2.new(0, 50, 0, 15)
  1522. Close.Font = Enum.Font.Code
  1523. Close.FontSize = Enum.FontSize.Size14
  1524. Close.Text = "Hide"
  1525. Close.TextColor3 = Color3.new(255, 255, 255)
  1526. Close.TextSize = 14
  1527. Close.MouseButton1Down:connect(function()
  1528. UI.Visible = false
  1529. for Down = 146,600,16 do
  1530. wait(0)
  1531. end
  1532. Open.Visible = true
  1533. end)
  1534. Open.Name = "Open"
  1535. Open.Parent = Exploit
  1536. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  1537. Open.BorderColor3 = Color3.new(255, 255, 255)
  1538. Open.Position = UDim2.new(0, 100, 0.9, 0)
  1539. Open.Size = UDim2.new(0, 300, 0, 30)
  1540. Open.Visible = false
  1541. Open.Font = Enum.Font.Code
  1542. Open.FontSize = Enum.FontSize.Size14
  1543. Open.Text = "Left click = open | Right Click = exit"
  1544. Open.TextColor3 = Color3.new(255, 255, 255)
  1545. Open.TextSize = 14
  1546. Open.MouseButton1Down:connect(function()
  1547. UI.Visible = true
  1548. Open.Visible = false
  1549. for Up = 600,146,-16 do
  1550. wait(0)
  1551. end
  1552. end)
  1553. Open.MouseButton2Down:connect(function()
  1554. Exploit:Destroy()
  1555. for Up = 600,146,-16 do
  1556. wait(0)
  1557. end
  1558. end)
  1559.  
  1560. Name.Name = "Name"
  1561. Name.Parent = UI
  1562. Name.BackgroundColor3 = Color3.new(0, 0, 0)
  1563. Name.BorderColor3 = Color3.new(255, 255, 255)
  1564. Name.Position = UDim2.new(0, 190, 0, -31)
  1565. Name.Size = UDim2.new(0, 220, 0, 30)
  1566. Name.Font = Enum.Font.SciFi
  1567. Name.FontSize = Enum.FontSize.Size24
  1568. Name.Text = "Quick Exe"
  1569. Name.TextColor3 = Color3.new(0.490196, 0.490196, 0.490196)
  1570. Name.TextSize = 24
  1571.  
  1572. UI.Visible = true
  1573. Name.Text = "Quick Exe"
  1574.  
  1575. while true do
  1576. wait(0)
  1577. for i = 255,100,-5 do
  1578. Name.TextColor3 = Color3.fromRGB(i,i,i)
  1579. wait(0)
  1580. end
  1581. for c = 100,255,5 do
  1582. Name.TextColor3 = Color3.fromRGB(c,c,c)
  1583. wait(0)
  1584. end
  1585. end
  1586. end)
  1587.  
  1588. addcmd('ff','gives ff to player',{},
  1589. function(args, speaker)
  1590. local players = getPlayer(args[1], speaker)
  1591. for i,v in pairs(players)do
  1592. local pchar=_char(v)
  1593. Instance.new("ForceField", pchar)
  1594. end
  1595. end)
  1596.  
  1597. addcmd('unff', 'takes away ff from player',{'unff'},
  1598. function(args, speaker)
  1599. local players = getPlayer(args[1], speaker)
  1600. for i,v in pairs(players)do
  1601. local pchar=_char(v)
  1602. for j,v1 in pairs(pchar:GetChildren()) do
  1603. if v1:IsA("ForceField") then
  1604. v1:Destroy()
  1605. end
  1606. end
  1607. end
  1608. end)
  1609.  
  1610. addcmd('spasm','makes someone c r a z y',{},
  1611. function(args, speaker)
  1612. local players = getPlayer(args[1], speaker)
  1613. for i,v in pairs(players)do
  1614. local pchar=_char(v)
  1615. local AnimationId = "33796059"
  1616. local Anim = Instance.new("Animation")
  1617. Anim.AnimationId = "rbxassetid://"..AnimationId
  1618. local k = pchar.Humanoid:LoadAnimation(Anim)
  1619. k:Play()
  1620. k:AdjustSpeed(99)
  1621. end
  1622. end)
  1623.  
  1624.  
  1625. addcmd('fly','makes you fly',{},
  1626. function(args, speaker)
  1627. sFLY()
  1628. end)
  1629.  
  1630. addcmd('unfly','takes away fly',{'nofly'},
  1631. function(args, speaker)
  1632. NOFLY()
  1633. end)
  1634.  
  1635.  
  1636. addcmd('fire', 'set a player on fire',{},
  1637. function(args, speaker)
  1638. local players = getPlayer(args[1], speaker)
  1639. for i,v in pairs(players)do
  1640. spawn(function()
  1641. local pchar=_char(v)
  1642. local Fire1 = Instance.new("Fire", pchar.Head)
  1643. local Fire2 = Instance.new("Fire", pchar.HumanoidRootPart)
  1644. local Fire3 = Instance.new("Fire", pchar["Left Arm"])
  1645. local Fire4 = Instance.new("Fire", pchar["Right Arm"])
  1646. local Fire5 = Instance.new("Fire", pchar["Left Leg"])
  1647. local Fire6 = Instance.new("Fire", pchar["Right Leg"])
  1648. if not args[2] then return end
  1649. Fire1.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1650. Fire1.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1651. Fire2.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1652. Fire2.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1653. Fire3.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1654. Fire3.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1655. Fire4.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1656. Fire4.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1657. Fire5.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1658. Fire5.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1659. Fire6.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1660. Fire6.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1661. end)
  1662. end
  1663. end)
  1664.  
  1665. addcmd('nofire', 'extinguish a player',{'unfire'},
  1666. function(args, speaker)
  1667. local players = getPlayer(args[1], speaker)
  1668. for i,v in pairs(players)do
  1669. local pchar=_char(v)
  1670. for j,v1 in pairs(pchar.Head:GetChildren()) do
  1671. if v1:IsA("Fire") then
  1672. v1:Destroy()
  1673. end
  1674. end
  1675. for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  1676. if v1:IsA("Fire") then
  1677. v1:Destroy()
  1678. end
  1679. end
  1680. for j,v1 in pairs(pchar["Left Arm"]:GetChildren()) do
  1681. if v1:IsA("Fire") then
  1682. v1:Destroy()
  1683. end
  1684. end
  1685. for j,v1 in pairs(pchar["Right Arm"]:GetChildren()) do
  1686. if v1:IsA("Fire") then
  1687. v1:Destroy()
  1688. end
  1689. end
  1690. for j,v1 in pairs(pchar["Left Leg"]:GetChildren()) do
  1691. if v1:IsA("Fire") then
  1692. v1:Destroy()
  1693. end
  1694. end
  1695. for j,v1 in pairs(pchar["Right Leg"]:GetChildren()) do
  1696. if v1:IsA("Fire") then
  1697. v1:Destroy()
  1698. end
  1699. end
  1700. end
  1701. end)
  1702.  
  1703. addcmd('light', 'givs em light',{},
  1704. function(args, speaker)
  1705. local players = getPlayer(args[1], speaker)
  1706. for i,v in pairs(players)do
  1707. spawn(function()
  1708. local pchar=_char(v)
  1709. local light = Instance.new("PointLight", pchar.HumanoidRootPart)
  1710. light.Range = 12
  1711. light.Brightness = 3
  1712. if not args[2] then return end
  1713. light.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1714. light.Range = 12
  1715. light.Brightness = 3
  1716. end)
  1717. end
  1718. end)
  1719.  
  1720. addcmd('nolight', 'no more light',{'unlight'},
  1721. function(args, speaker)
  1722. local players = getPlayer(args[1], speaker)
  1723. for i,v in pairs(players)do
  1724. local pchar=_char(v)
  1725. for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  1726. if v1:IsA("PointLight") then
  1727. v1:Destroy()
  1728. end
  1729. end
  1730. end
  1731. end)
  1732.  
  1733. addcmd('loopkill', 'rip person',{'lkill'},
  1734. function(args, speaker)
  1735. local players = getPlayer(args[1], speaker)
  1736. for i,v in pairs(players)do
  1737. if not FindTable(loopkillT, _players[v].Name) then
  1738. table.insert(loopkillT, _players[v].Name)
  1739. if args[1] == "all" then
  1740. Notify('Loopkilling everyone')
  1741. elseif args[1] == "others" then
  1742. Notify('Loopkilling others')
  1743. elseif args[1] == "friends" then
  1744. Notify('Loopkilling friends')
  1745. elseif args[1] == "nonfriends" then
  1746. Notify('Loopkilling nonfriends')
  1747. elseif args[1] == "team" then
  1748. Notify('Loopkilling your team')
  1749. elseif args[1] == "nonteam" then
  1750. Notify('Loopkilling the opposing team')
  1751. elseif args[1] == "guests" then
  1752. Notify('Loopkilling guests')
  1753. elseif args[1] == "admins" then
  1754. Notify('Loopkilling admins')
  1755. elseif args[1] == "nonadmins" then
  1756. Notify('Loopkilling non admins')
  1757. else
  1758. Notify('Loopkilling ' .. gPlayers[v].Name)
  1759. end
  1760. end
  1761. end
  1762. end)
  1763.  
  1764. addcmd('unloopkill', 'un rip person',{'unlkill'},
  1765. function(args, speaker)
  1766. local players = Player(args[1], speaker)
  1767. for i,v in pairs(players)do
  1768. if FindTable(loopkillT, _players[v].Name) then
  1769. table.remove(loopkillT, GetInTable(loopkillT, _players[v].Name))
  1770. if args[1] == "all" then
  1771. Notify('No longer loopkilling everyone')
  1772. elseif args[1] == "others" then
  1773. Notify('No longer loopkilling others')
  1774. elseif args[1] == "friends" then
  1775. Notify('No longer loopkilling friends')
  1776. elseif args[1] == "nonfriends" then
  1777. Notify('No longer loopkilling nonfriends')
  1778. elseif args[1] == "team" then
  1779. Notify('No longer loopkilling your team')
  1780. elseif args[1] == "nonteam" then
  1781. Notify('No longer loopkilling the opposing team')
  1782. elseif args[1] == "guests" then
  1783. Notify('No longer loopkilling guests')
  1784. elseif args[1] == "admins" then
  1785. Notify('No longer loopkilling admins')
  1786. elseif args[1] == "nonadmins" then
  1787. Notify('No longer loopkilling nonadmins')
  1788. else
  1789. Notify('No longer loopkilling ' .. gPlayers[v].Name)
  1790. end
  1791. end
  1792. end
  1793. end)
  1794.  
  1795. addcmd('disabletools', 'removes their tools',{'loopremovetools'},
  1796. function(args, speaker)
  1797. local players = getPlayer(args[1], speaker)
  1798. for i,v in pairs(players)do
  1799. if not FindTable(disabletoolsT, _players[v].Name) then
  1800. table.insert(disabletoolsT, _players[v].Name)
  1801. if args[1] == "all" then
  1802. Notify('Disabled tools for everyone')
  1803. elseif args[1] == "others" then
  1804. Notify('Disabled tools for others')
  1805. elseif args[1] == "friends" then
  1806. Notify('Disabled tools for friends')
  1807. elseif args[1] == "nonfriends" then
  1808. Notify('Disabled tools for nonfriends')
  1809. elseif args[1] == "team" then
  1810. Notify('Disabled tools for your team')
  1811. elseif args[1] == "nonteam" then
  1812. Notify('Disabled tools for the opposing team')
  1813. elseif args[1] == "guests" then
  1814. Notify('Disabled tools for guests')
  1815. elseif args[1] == "admins" then
  1816. Notify('Disabled tools for admins')
  1817. elseif args[1] == "nonadmins" then
  1818. Notify('Disabled tools for nonadmins')
  1819. else
  1820. Notify('Disabled tools for ' .. gPlayers[v].Name)
  1821. end
  1822. end
  1823. end
  1824. end)
  1825.  
  1826. addcmd('rainbowname', 'color spam their name tag',{'rname'},
  1827. function(args, speaker)
  1828. local players = getPlayer(args[1], speaker)
  1829. for i,v in pairs(players)do
  1830. if not FindTable(rainbowT, _players[v].Name) then
  1831. table.insert(rainbowT, _players[v].Name)
  1832. if args[1] == "all" then
  1833. Notify('Gave everyone rainbow name')
  1834. elseif args[1] == "others" then
  1835. Notify('Gave others rainbow name')
  1836. elseif args[1] == "friends" then
  1837. Notify('Gave friends rainbow name')
  1838. elseif args[1] == "nonfriends" then
  1839. Notify('Gave nonfriends rainbow name')
  1840. elseif args[1] == "team" then
  1841. Notify('Gave your team rainbow name')
  1842. elseif args[1] == "nonteam" then
  1843. Notify('Gave the opposing team rainbow name')
  1844. elseif args[1] == "guests" then
  1845. Notify('Gave guests rainbow name')
  1846. elseif args[1] == "admins" then
  1847. Notify('Gave admins rainbowname')
  1848. elseif args[1] == "nonadmins" then
  1849. Notify('Gave nonadmins rainbow name')
  1850. else
  1851. Notify('Gave ' .. gPlayers[v].Name .. ' rainbow name')
  1852. end
  1853. end
  1854. end
  1855. end)
  1856.  
  1857. addcmd('unrainbowname', 'removes their colorful name',{'unrname'},
  1858. function(args, speaker)
  1859. local players = getPlayer(args[1], speaker)
  1860. for i,v in pairs(players)do
  1861. if FindTable(rainbowT, _players[v].Name) then
  1862. table.remove(rainbowT, GetInTable(rainbowT, _players[v].Name))
  1863. _players[v].Neutral = true
  1864. if args[1] == "all" then
  1865. Notify('Disabled rainbow name for everyone')
  1866. elseif args[1] == "others" then
  1867. Notify('Disabled others rainbow name')
  1868. elseif args[1] == "friends" then
  1869. Notify('Disabled friends rainbow name')
  1870. elseif args[1] == "nonfriends" then
  1871. Notify('Disabled non friends rainbow name')
  1872. elseif args[1] == "team" then
  1873. Notify('Disabled rainbow name for your team')
  1874. elseif args[1] == "nonteam" then
  1875. Notify('Disabled rainbow name for the opposing team')
  1876. elseif args[1] == "guests" then
  1877. Notify('Disabled rainbow name for guests')
  1878. elseif args[1] == "admins" then
  1879. Notify('Disabled rainbow name for admins')
  1880. elseif args[1] == "nonadmins" then
  1881. Notify('Disabled rainbow name for non admins')
  1882. else
  1883. Notify('Disabled rainbow name for ' .. gPlayers[v].Name)
  1884. end
  1885. end
  1886. end
  1887. end)
  1888.  
  1889. addcmd('enabletools', 'lets them have tools',{'unloopremovetools'},
  1890. function(args, speaker)
  1891. local players = getPlayer(args[1], speaker)
  1892. for i,v in pairs(players)do
  1893. if FindTable(disabletoolsT, _players[v].Name) then
  1894. table.remove(disabletoolsT, GetInTable(disabletoolsT, _players[v].Name))
  1895. if args[1] == "all" then
  1896. Notify('Enabled tools for everyone')
  1897. elseif args[1] == "others" then
  1898. Notify('Enabled tools for others')
  1899. elseif args[1] == "friends" then
  1900. Notify('Enabled tools for friends')
  1901. elseif args[1] == "nonfriends" then
  1902. Notify('Enabled tools for nonfriends')
  1903. elseif args[1] == "team" then
  1904. Notify('Enabled tools for your team')
  1905. elseif args[1] == "nonteam" then
  1906. Notify('Enabled tools for the opposing team')
  1907. elseif args[1] == "guests" then
  1908. Notify('Enabled tools for guests')
  1909. elseif args[1] == "admins" then
  1910. Notify('Enabled tools for admins')
  1911. elseif args[1] == "nonadmins" then
  1912. Notify('Enabled tools for nonadmins')
  1913. else
  1914. Notify('Enabled tools for ' .. gPlayers[v].Name)
  1915. end
  1916. end
  1917. end
  1918. end)
  1919.  
  1920. addcmd('nil', 'removes the player',{},
  1921. function(args, speaker)
  1922. local players = getPlayer(args[1], speaker)
  1923. for i,v in pairs(players)do
  1924. pcall(function() gPlayers[v].Character:Remove() end)
  1925. gPlayers[v].Character = nil
  1926. if args[1] == "all" then
  1927. Notify('Made everyone nil')
  1928. elseif args[1] == "others" then
  1929. Notify('Made others nil')
  1930. elseif args[1] == "friends" then
  1931. Notify('Made friends nil')
  1932. elseif args[1] == "nonfriends" then
  1933. Notify('Made non friends nil')
  1934. elseif args[1] == "team" then
  1935. Notify('Made your team nil')
  1936. elseif args[1] == "nonteam" then
  1937. Notify('Made the opposing team nil')
  1938. elseif args[1] == "guests" then
  1939. Notify('Made guests nil')
  1940. elseif args[1] == "admins" then
  1941. Notify('Made admins nil')
  1942. elseif args[1] == "nonadmins" then
  1943. Notify('Made nonadmins nil')
  1944. else
  1945. Notify('Made ' .. gPlayers[v].Name .. ' nil')
  1946. end
  1947. end
  1948. end)
  1949.  
  1950. addcmd('ban', 'goodbye ;)',{},
  1951. function(args, speaker)
  1952. local players = getPlayer(args[1], speaker)
  1953. for i,v in pairs(players)do
  1954. if args[1] == "all" then
  1955. Notify('Banned everyone')
  1956. elseif args[1] == "others" then
  1957. Notify('Banned others')
  1958. elseif args[1] == "friends" then
  1959. Notify('Banned friends')
  1960. elseif args[1] == "nonfriends" then
  1961. Notify('Banned nonfriends')
  1962. elseif args[1] == "team" then
  1963. Notify('Your team has been banned')
  1964. elseif args[1] == "nonteam" then
  1965. Notify('The opposing team has been banned')
  1966. elseif args[1] == "guests" then
  1967. Notify('Guests have been banned')
  1968. elseif args[1] == "nonadmins" then
  1969. Notify('Nonadmins have been banned')
  1970. else
  1971. Notify(gPlayers[v].Name .. ' has been banned')
  1972. end
  1973. spawn(function()
  1974. table.insert(banT, _players[v].userId)
  1975. function Kick(PLAYER)
  1976. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') and PLAYER.Character:FindFirstChild('Torso') then
  1977. PLAYER.Character.HumanoidRootPart.Position = Vector3.new(math.random(999000, 1001000), 10000, 0)
  1978. local Plat = Instance.new('SkateboardPlatform', PLAYER.Character) Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1979. Plat.Name = 'IYkick'
  1980. Plat.Size = Vector3.new(100, 1, 100)
  1981. local PART = Instance.new('Part', PLAYER.Character)
  1982. PART.Position = Plat.Position - Vector3.new(0, 3, 0)
  1983. PART.Size = Vector3.new(100, 1, 100)
  1984. PART.Anchored = true
  1985.  
  1986. PART.Transparency = 1
  1987. Plat.Transparency = 1
  1988.  
  1989. repeat wait(1)
  1990. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') then
  1991. Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  1992. end
  1993. Kick(PLAYER)
  1994. until not game.Players:findFirstChild(PLAYER)
  1995. end
  1996. end
  1997. Kick(gPlayers[v])
  1998. end)
  1999. end
  2000. end)
  2001.  
  2002. addcmd('clearbans', 'welcome back!',{'clrbans'},
  2003. function(args, speaker)
  2004. banT = {}
  2005. Notify('Removed all bans')
  2006. end)
  2007.  
  2008. addcmd('verify', 'dismiss',{''},
  2009. function(args, speaker)
  2010. local players = getPlayer(args[1], speaker)
  2011. for i,v in pairs(players)do
  2012. if gPlayers[v].Character.Head:FindFirstChild("BillboardGui") then
  2013. gPlayers[v].Character.Head:FindFirstChild("BillboardGui"):Remove()
  2014. end
  2015. end
  2016. end)
  2017.  
  2018. addcmd('admin', 'ur an admin now ;o',{},
  2019. function(args, speaker)
  2020. local players = getPlayer(args[1], speaker)
  2021. for i,v in pairs(players)do
  2022. if not FindTable(admins, _players[v].Name) then
  2023. table.insert(admins, _players[v].Name)
  2024. if args[1] == "all" then
  2025. Notify('Everyone has been given admin')
  2026. elseif args[1] == "others" then
  2027. Notify('Others have been given admin')
  2028. elseif args[1] == "friends" then
  2029. Notify('Friends have been given admin')
  2030. elseif args[1] == "team" then
  2031. Notify('Your team has been given admin')
  2032. elseif args[1] == "nonteam" then
  2033. Notify('The opposing team has been given admin')
  2034. else
  2035. Notify(gPlayers[v].Name .. ' has been given admin')
  2036. game.Chat:Chat(gPlayers[v].Character.Head, 'You are now an admin! The prefix is ' .. cmdprefix)
  2037. for a, mod in pairs(gPlayers[v].Character:children()) do
  2038. if mod:FindFirstChild("TAG") then
  2039. gPlayers[v].Character.Head.Transparency = 0
  2040. mod:Destroy()
  2041. end
  2042. end
  2043.  
  2044. if gPlayers[v].Character.Head:FindFirstChild("BillboardGui") then
  2045. gPlayers[v].Character.Head:FindFirstChild("BillboardGui"):Remove()
  2046. end
  2047.  
  2048. y = Instance.new("BillboardGui")
  2049. y.Size = UDim2.new(0,100,0,150)
  2050. y.StudsOffset = Vector3.new(0,1,0)
  2051. y.Parent = gPlayers[v].Character.Head
  2052. y.Adornee = gPlayers[v].Character.Head
  2053. f = Instance.new("TextLabel")
  2054. f.Parent = y
  2055. f.BackgroundTransparency = 1
  2056. f.Position = UDim2.new(0,0,0,-50)
  2057. f.Size = UDim2.new(0,100,0,100)
  2058. f.Font = "ArialBold"
  2059. f.TextSize = 20
  2060. f.Text = "Go to cmds.infiniteyield.x10host.com to view commands (say ;verify me to dismiss)"
  2061. f.TextStrokeColor3 = Color3.new(0,0,0)
  2062. f.TextColor3 = Color3.new(255/255,255/255,255/255)
  2063. f.TextStrokeTransparency = 0
  2064. f.TextYAlignment = "Bottom"
  2065. end
  2066. end
  2067. end
  2068. end)
  2069.  
  2070. addcmd('bang','owo',{'rape'},
  2071. function(args, speaker)
  2072. local players = getPlayer(args[1], speaker)
  2073. for i,v in pairs(players)do
  2074. rape(_players[v].Name)
  2075. end
  2076. end)
  2077.  
  2078. addcmd('clearadmins', 'welcome back!',{'clradmins'},
  2079. function(args, speaker)
  2080. admins = {}
  2081. Notify('Removed all admins')
  2082. end)
  2083.  
  2084. addcmd('unadmin', 'removes the admin',{'noadmin'},
  2085. function(args, speaker)
  2086. local players = getPlayer(args[1], speaker)
  2087. for i,v in pairs(players)do
  2088. if FindTable(admins, _players[v].Name) then
  2089. table.remove(admins, GetInTable(admins, _players[v].Name))
  2090. if args[1] == "all" then
  2091. Notify('Removed everyones admin')
  2092. elseif args[1] == "others" then
  2093. Notify('Others no longer have admin')
  2094. elseif args[1] == "friends" then
  2095. Notify('Friends no longer have admin')
  2096. elseif args[1] == "team" then
  2097. Notify('Your team no longer has admin')
  2098. elseif args[1] == "nonteam" then
  2099. Notify('The opposing team no longer has admin')
  2100. else
  2101. Notify(gPlayers[v].Name .. ' no longer has admin')
  2102. end
  2103. end
  2104. game.Chat:Chat(gPlayers[v].Character.Head, 'You are no longer an admin')
  2105. end
  2106. end)
  2107.  
  2108. addcmd('bgui', 'gives player billboard gui presenting text',{},
  2109. function(args, speaker)
  2110. local players = getPlayer(args[1], speaker)
  2111. for i,v in pairs(players)do
  2112. if gPlayers[v].Character.Head:FindFirstChild("BillboardGui") then
  2113. gPlayers[v].Character.Head:FindFirstChild("BillboardGui"):Remove()
  2114. end
  2115.  
  2116. y = Instance.new("BillboardGui")
  2117. y.Size = UDim2.new(0,100,0,150)
  2118. y.StudsOffset = Vector3.new(0,1,0)
  2119. y.Parent = gPlayers[v].Character.Head
  2120. y.Adornee = gPlayers[v].Character.Head
  2121. f = Instance.new("TextLabel")
  2122. f.Parent = y
  2123. f.BackgroundTransparency = 1
  2124. f.Position = UDim2.new(0,0,0,-50)
  2125. f.Size = UDim2.new(0,100,0,100)
  2126. f.Font = "Highway"
  2127. f.FontSize = "Size48"
  2128. f.Text = GLS(false, 1)
  2129. f.TextStrokeColor3 = Color3.new(0,0,0)
  2130. f.TextColor3 = Color3.new(255/255,255/255,255/255)
  2131. f.TextStrokeTransparency = 0
  2132. f.TextYAlignment = "Bottom"
  2133. end
  2134. end)
  2135.  
  2136. addcmd('unbgui', 'gives player billboard gui presenting text',{'nobgui'},
  2137. function(args, speaker)
  2138. local players = getPlayer(args[1], speaker)
  2139. for i,v in pairs(players)do
  2140. if gPlayers[v].Character.Head:FindFirstChild("BillboardGui") then
  2141. gPlayers[v].Character.Head:FindFirstChild("BillboardGui"):Remove()
  2142. end
  2143. end
  2144. end)
  2145.  
  2146. addcmd('rhats', 'no more hats',{'removehats'},
  2147. function(args, speaker)
  2148. local players = getPlayer(args[1], speaker)
  2149. for i,v in pairs(players) do
  2150. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  2151. if v:IsA('Accessory') then
  2152. v:destroy()
  2153. end
  2154. end
  2155. end
  2156. end)
  2157.  
  2158. addcmd('removetools', 'no more tools',{'rtools'},
  2159. function(args, speaker)
  2160. local players = getPlayer(args[1], speaker)
  2161. for i,v in pairs(players) do
  2162. for i,v in pairs(gPlayers[v].Backpack:GetChildren()) do
  2163. if v:IsA('Tool') or v:IsA('HopperBin') then
  2164. v:destroy()
  2165. end
  2166. for i,v in pairs(players) do
  2167. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  2168. if v:IsA('Tool') or v:IsA('HopperBin') then
  2169. v:destroy()
  2170. end
  2171. end
  2172. end
  2173. end
  2174. end
  2175. end)
  2176.  
  2177. addcmd('copytools', 'copys the tools from a players backpack',{'ctools'},
  2178. function(args, speaker)
  2179. local players = getPlayer(args[1], speaker)
  2180. for i,v in pairs(players) do
  2181. for i,v in pairs(gPlayers[v].Backpack:GetChildren()) do
  2182. if v:IsA('Tool') or v:IsA('HopperBin') then
  2183. v:Clone().Parent = LP.Backpack
  2184. end
  2185. end
  2186. end
  2187. end)
  2188.  
  2189. addcmd('gravity', 'workspace gravity',{''},
  2190. function(args, speaker)
  2191. workspace.Gravity = args[1]
  2192. Notify('Gravity set to ' .. args[1])
  2193. end)
  2194.  
  2195. addcmd('serverinfo', 'gives you info about the server',{'info'},
  2196. function(args, speaker)
  2197. wait(0.5)
  2198.  
  2199. -- Objects
  2200.  
  2201. local Sinfo = Instance.new("ScreenGui")
  2202. local Time = Instance.new("TextLabel")
  2203. local TextLabel = Instance.new("TextLabel")
  2204. local TextLabel3 = Instance.new("TextLabel")
  2205. local name = Instance.new("TextLabel")
  2206. local fe = Instance.new("TextLabel")
  2207. local players = Instance.new("TextLabel")
  2208. local maxplayers = Instance.new("TextLabel")
  2209. local TextLabel2 = Instance.new("TextLabel")
  2210. local playerid = Instance.new("TextLabel")
  2211. local appearance = Instance.new("TextLabel")
  2212. local placeid = Instance.new("TextLabel")
  2213. local exit = Instance.new("TextButton")
  2214.  
  2215. -- Properties
  2216.  
  2217. Sinfo.Name = "Sinfo"
  2218. Sinfo.Parent = game.Players.LocalPlayer.PlayerGui
  2219.  
  2220. Time.Name = "Time"
  2221. Time.Parent = Sinfo
  2222. Time.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2223. Time.BackgroundTransparency = 1
  2224. Time.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2225. Time.Position = UDim2.new(0, 20, 0.924000025, 0)
  2226. Time.Size = UDim2.new(0, 1000, 0, 20)
  2227. Time.Font = Enum.Font.ArialBold
  2228. Time.FontSize = Enum.FontSize.Size14
  2229. Time.Text = "0 Hours, 0 Minute(s), 0 Seconds"
  2230. Time.TextColor3 = Color3.new(1, 1, 1)
  2231. Time.TextStrokeTransparency = 0
  2232.  
  2233. TextLabel.Name = "Text Label"
  2234. TextLabel.Parent = Sinfo
  2235. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  2236. TextLabel.BackgroundTransparency = 1
  2237. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  2238. TextLabel.Position = UDim2.new(0, 50, 0.924000025, 0)
  2239. TextLabel.Size = UDim2.new(0, 600, 0, 20)
  2240. TextLabel.Font = Enum.Font.ArialBold
  2241. TextLabel.FontSize = Enum.FontSize.Size14
  2242. TextLabel.Text = "Server Time:"
  2243. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  2244. TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
  2245. TextLabel.TextStrokeTransparency = 0
  2246.  
  2247. TextLabel3.Name = "Text Label3"
  2248. TextLabel3.Parent = Sinfo
  2249. TextLabel3.BackgroundColor3 = Color3.new(1, 1, 1)
  2250. TextLabel3.BackgroundTransparency = 1
  2251. TextLabel3.BorderColor3 = Color3.new(0, 0, 0)
  2252. TextLabel3.Position = UDim2.new(0, -250, 0.924000025, 0)
  2253. TextLabel3.Size = UDim2.new(0, 600, 0, 20)
  2254. TextLabel3.Font = Enum.Font.ArialBold
  2255. TextLabel3.FontSize = Enum.FontSize.Size14
  2256. TextLabel3.Text = "Local Player:"
  2257. TextLabel3.TextColor3 = Color3.new(0, 0, 0)
  2258. TextLabel3.TextStrokeColor3 = Color3.new(1, 1, 1)
  2259. TextLabel3.TextStrokeTransparency = 0
  2260.  
  2261. name.Name = "name"
  2262. name.Parent = Sinfo
  2263. name.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2264. name.BackgroundTransparency = 1
  2265. name.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2266. name.Position = UDim2.new(0, 350, 0.899999976, 0)
  2267. name.Size = UDim2.new(0, 1000, 0, 20)
  2268. name.Font = Enum.Font.ArialBold
  2269. name.FontSize = Enum.FontSize.Size14
  2270. name.Text = "Loading Place Name"
  2271. name.TextColor3 = Color3.new(1, 1, 1)
  2272. name.TextStrokeTransparency = 0
  2273.  
  2274. fe.Name = "fe"
  2275. fe.Parent = Sinfo
  2276. fe.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2277. fe.BackgroundTransparency = 1
  2278. fe.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2279. fe.Position = UDim2.new(0, 350, 0.949999988, 0)
  2280. fe.Size = UDim2.new(0, 1000, 0, 20)
  2281. fe.Font = Enum.Font.ArialBold
  2282. fe.FontSize = Enum.FontSize.Size14
  2283. fe.Text = "Loading FE Status"
  2284. fe.TextColor3 = Color3.new(1, 1, 1)
  2285. fe.TextStrokeTransparency = 0
  2286.  
  2287. players.Name = "players"
  2288. players.Parent = Sinfo
  2289. players.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2290. players.BackgroundTransparency = 1
  2291. players.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2292. players.Position = UDim2.new(0, 530, 0.899999976, 0)
  2293. players.Size = UDim2.new(0, 1000, 0, 20)
  2294. players.Font = Enum.Font.ArialBold
  2295. players.FontSize = Enum.FontSize.Size14
  2296. players.Text = "Loading Players"
  2297. players.TextColor3 = Color3.new(1, 1, 1)
  2298. players.TextStrokeTransparency = 0
  2299.  
  2300. maxplayers.Name = "maxplayers"
  2301. maxplayers.Parent = Sinfo
  2302. maxplayers.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2303. maxplayers.BackgroundTransparency = 1
  2304. maxplayers.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2305. maxplayers.Position = UDim2.new(0, 530, 0.949999988, 0)
  2306. maxplayers.Size = UDim2.new(0, 1000, 0, 20)
  2307. maxplayers.Font = Enum.Font.ArialBold
  2308. maxplayers.FontSize = Enum.FontSize.Size14
  2309. maxplayers.Text = "Loading Max Players"
  2310. maxplayers.TextColor3 = Color3.new(1, 1, 1)
  2311. maxplayers.TextStrokeTransparency = 0
  2312.  
  2313. TextLabel2.Name = "Text Label2"
  2314. TextLabel2.Parent = Sinfo
  2315. TextLabel2.BackgroundColor3 = Color3.new(1, 1, 1)
  2316. TextLabel2.BackgroundTransparency = 1
  2317. TextLabel2.BorderColor3 = Color3.new(0, 0, 0)
  2318. TextLabel2.Position = UDim2.new(0, 400, 0.924000025, 0)
  2319. TextLabel2.Size = UDim2.new(0, 600, 0, 20)
  2320. TextLabel2.Font = Enum.Font.ArialBold
  2321. TextLabel2.FontSize = Enum.FontSize.Size14
  2322. TextLabel2.Text = "Statistics:"
  2323. TextLabel2.TextColor3 = Color3.new(0, 0, 0)
  2324. TextLabel2.TextStrokeColor3 = Color3.new(1, 1, 1)
  2325. TextLabel2.TextStrokeTransparency = 0
  2326.  
  2327. playerid.Name = "playerid"
  2328. playerid.Parent = Sinfo
  2329. playerid.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2330. playerid.BackgroundTransparency = 1
  2331. playerid.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2332. playerid.Position = UDim2.new(0, -330, 0.899999976, 0)
  2333. playerid.Size = UDim2.new(0, 1000, 0, 20)
  2334. playerid.Font = Enum.Font.ArialBold
  2335. playerid.FontSize = Enum.FontSize.Size14
  2336. playerid.Text = "Loading Player ID"
  2337. playerid.TextColor3 = Color3.new(1, 1, 1)
  2338. playerid.TextStrokeTransparency = 0
  2339.  
  2340. appearance.Name = "appearance"
  2341. appearance.Parent = Sinfo
  2342. appearance.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2343. appearance.BackgroundTransparency = 1
  2344. appearance.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2345. appearance.Position = UDim2.new(0, -330, 0.949999988, 0)
  2346. appearance.Size = UDim2.new(0, 1000, 0, 20)
  2347. appearance.Font = Enum.Font.ArialBold
  2348. appearance.FontSize = Enum.FontSize.Size14
  2349. appearance.Text = "Loading Appearance ID"
  2350. appearance.TextColor3 = Color3.new(1, 1, 1)
  2351. appearance.TextStrokeTransparency = 0
  2352.  
  2353. placeid.Name = "placeid"
  2354. placeid.Parent = Sinfo
  2355. placeid.BackgroundColor3 = Color3.new(0, 0.8, 1)
  2356. placeid.BackgroundTransparency = 1
  2357. placeid.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  2358. placeid.Position = UDim2.new(0, 700, 0.899999976, 0)
  2359. placeid.Size = UDim2.new(0, 1000, 0, 20)
  2360. placeid.Font = Enum.Font.ArialBold
  2361. placeid.FontSize = Enum.FontSize.Size14
  2362. placeid.Text = "Loading Place ID"
  2363. placeid.TextColor3 = Color3.new(1, 1, 1)
  2364. placeid.TextStrokeTransparency = 0
  2365.  
  2366. exit.Name = "exit"
  2367. exit.Parent = Sinfo
  2368. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  2369. exit.BorderColor3 = Color3.new(0, 0, 0)
  2370. exit.Position = UDim2.new(0, 1150, 0.944999993, 0)
  2371. exit.Size = UDim2.new(0, 100, 0, 25)
  2372. exit.FontSize = Enum.FontSize.Size10
  2373. exit.Text = "Exit"
  2374. exit.TextColor3 = Color3.new(0, 0, 0)
  2375.  
  2376. wait(0.5)
  2377. game.Players.LocalPlayer.PlayerGui.Sinfo.name.Text = game.Name
  2378. game.Players.LocalPlayer.PlayerGui.Sinfo.playerid.Text = "Player ID: " ..game.Players.LocalPlayer.UserId
  2379. if game.Workspace.FilteringEnabled == true then
  2380. game.Players.LocalPlayer.PlayerGui.Sinfo.fe.Text = "Filtering Enabled"
  2381. elseif game.Workspace.FilteringEnabled == false then
  2382. game.Players.LocalPlayer.PlayerGui.Sinfo.fe.Text = "Filtering Disabled"
  2383. end
  2384. players = game.Players:getPlayers()
  2385. game.Players.LocalPlayer.PlayerGui.Sinfo.maxplayers.Text = game.Players.MaxPlayers.. " Players Max"
  2386. game.Players.LocalPlayer.PlayerGui.Sinfo.placeid.Text = "Place ID: " ..game.PlaceId
  2387.  
  2388. game.Players.LocalPlayer.PlayerGui.Sinfo.exit.MouseButton1Click:Connect(function()
  2389. wait()
  2390. game.Players.LocalPlayer.PlayerGui.Sinfo:Destroy()
  2391. end)
  2392.  
  2393. while true do
  2394. wait()
  2395. game.Players.LocalPlayer.PlayerGui.Sinfo.players.Text = #players.. " Player(s)"
  2396. game.Players.LocalPlayer.PlayerGui.Sinfo.appearance.Text = "Appearance: " ..game.Players.LocalPlayer.CharacterAppearanceId
  2397. local seconds = math.floor(workspace.DistributedGameTime)
  2398. local minutes = math.floor(workspace.DistributedGameTime / 60)
  2399. local hours = math.floor(workspace.DistributedGameTime / 60 / 60)
  2400. local seconds = seconds - (minutes * 60)
  2401. local minutes = minutes - (hours * 60)
  2402. if hours < 1 then
  2403. if minutes < 1 then
  2404. game.Players.LocalPlayer.PlayerGui.Sinfo.Time.Text = seconds .. " Second(s)"
  2405. else
  2406. game.Players.LocalPlayer.PlayerGui.Sinfo.Time.Text = minutes .. " Minute(s), " .. seconds .. " Second(s)"
  2407. end
  2408. else
  2409. game.Players.LocalPlayer.PlayerGui.Sinfo.Time.Text = hours .. " Hour(s), " .. minutes .. " Minute(s), " .. seconds .. " Second(s)"
  2410. end
  2411. end
  2412. end)
  2413.  
  2414. addcmd('sparkles', 'give a player sparkles',{},
  2415. function(args, speaker)
  2416. local players = getPlayer(args[1], speaker)
  2417. for i,v in pairs(players)do
  2418. spawn(function()
  2419. local pchar=_char(v)
  2420. local Sparkles1 = Instance.new("Sparkles", pchar.Head)
  2421. local Sparkles2 = Instance.new("Sparkles", pchar.HumanoidRootPart)
  2422. local Sparkles3 = Instance.new("Sparkles", pchar["Left Arm"])
  2423. local Sparkles4 = Instance.new("Sparkles", pchar["Right Arm"])
  2424. local Sparkles5 = Instance.new("Sparkles", pchar["Left Leg"])
  2425. local Sparkles6 = Instance.new("Sparkles", pchar["Right Leg"])
  2426. if not args[2] then return end
  2427. Sparkles1.Color = Color3.new((args[2]),(args[3]),(args[4]))
  2428. Sparkles2.Color = Color3.new((args[2]),(args[3]),(args[4]))
  2429. Sparkles3.Color = Color3.new((args[2]),(args[3]),(args[4]))
  2430. Sparkles4.Color = Color3.new((args[2]),(args[3]),(args[4]))
  2431. Sparkles5.Color = Color3.new((args[2]),(args[3]),(args[4]))
  2432. Sparkles6.Color = Color3.new((args[2]),(args[3]),(args[4]))
  2433. end)
  2434. end
  2435. end)
  2436.  
  2437. addcmd('nosparkles', 'remove sparkles from a player',{'unsparkles'},
  2438. function(args, speaker)
  2439. local players = getPlayer(args[1], speaker)
  2440. for i,v in pairs(players)do
  2441. local pchar=_char(v)
  2442. for j,v1 in pairs(pchar.Head:GetChildren()) do
  2443. if v1:IsA("Sparkles") then
  2444. v1:Destroy()
  2445. end
  2446. end
  2447. for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  2448. if v1:IsA("Sparkles") then
  2449. v1:Destroy()
  2450. end
  2451. end
  2452. for j,v1 in pairs(pchar["Left Arm"]:GetChildren()) do
  2453. if v1:IsA("Sparkles") then
  2454. v1:Destroy()
  2455. end
  2456. end
  2457. for j,v1 in pairs(pchar["Right Arm"]:GetChildren()) do
  2458. if v1:IsA("Sparkles") then
  2459. v1:Destroy()
  2460. end
  2461. end
  2462. for j,v1 in pairs(pchar["Left Leg"]:GetChildren()) do
  2463. if v1:IsA("Sparkles") then
  2464. v1:Destroy()
  2465. end
  2466. end
  2467. for j,v1 in pairs(pchar["Right Leg"]:GetChildren()) do
  2468. if v1:IsA("Sparkles") then
  2469. v1:Destroy()
  2470. end
  2471. end
  2472. end
  2473. end)
  2474.  
  2475. addcmd('smoke', 'give a player smoke',{},
  2476. function(args, speaker)
  2477. local players = getPlayer(args[1], speaker)
  2478. for i,v in pairs(players)do
  2479. local pchar=_char(v)
  2480. Instance.new("Smoke", pchar.HumanoidRootPart)
  2481. end
  2482. end)
  2483.  
  2484. addcmd('addstat', 'give a player a stat',{'stat'},
  2485. function(args, speaker)
  2486. local players = getPlayer(args[1], speaker)
  2487. for i,v in pairs(players)do
  2488. spawn(function()
  2489. wait(0.5)
  2490.  
  2491. function meep()
  2492. for _, child in pairs(gPlayers[v].leaderstats:GetChildren()) do
  2493. if child.Name == "IY" then
  2494. child:Destroy()
  2495. end
  2496. end
  2497.  
  2498. local score = Instance.new("StringValue")
  2499.  
  2500. score.Name = "STAT"
  2501. score.Value = GLS(false, 1)
  2502.  
  2503. score.Parent = gPlayers[v].leaderstats
  2504. end
  2505.  
  2506.  
  2507. if gPlayers[v]:FindFirstChild("leaderstats") then
  2508. meep()
  2509. else
  2510. local stats = Instance.new("IntValue")
  2511. stats.Name = "leaderstats"
  2512. stats.Parent = gPlayers[v]
  2513. wait(0.5)
  2514. meep()
  2515. end
  2516. end)
  2517. end
  2518. end)
  2519.  
  2520. addcmd('unsmoke', 'remove smoke from a player',{'nosmoke'},
  2521. function(args, speaker)
  2522. local players = getPlayer(args[1], speaker)
  2523. for i,v in pairs(players)do
  2524. local pchar=_char(v)
  2525. for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  2526. if v1:IsA("Smoke") then
  2527. v1:Destroy()
  2528. end
  2529. end
  2530. end
  2531. end)
  2532.  
  2533. addcmd('longneck', 'makes a player have a really long neck',{'giraffe'},
  2534. function(args, speaker)
  2535. local players = getPlayer(args[1], speaker)
  2536. for i,v in pairs(players)do
  2537. local pchar=_char(v)
  2538. for i,v in pairs(pchar:GetChildren()) do
  2539. if pchar.Torso:FindFirstChild("Neck") then
  2540. pchar.Torso.Neck.C0 = CFrame.new(0,3,0) * CFrame.Angles(-math.rad(90),0,math.rad(180))
  2541. local Neck = pchar:FindFirstChild("Neck") if Neck then Neck:Destroy() end
  2542. Neck = Instance.new("Part", pchar) Neck.Name = "Neck" Neck.Size = Vector3.new(1,3,1)
  2543. Neck.Position = Vector3.new(0,100,0) Neck.BrickColor = BrickColor.new(tostring(pchar.Head.BrickColor)) Neck.Locked = true
  2544. local Mesh = Instance.new("CylinderMesh", Neck) Mesh.Scale = Vector3.new(0.7,1,0.7)
  2545. local Weld = Instance.new("Weld", Neck) Weld.Part0 = Neck Weld.Part1 = pchar.Torso Weld.C0 = CFrame.new(0,-2,0)
  2546. end
  2547. end
  2548. end
  2549. end)
  2550.  
  2551. addcmd('unlongneck', 'makes a player have a really long neck',{'nolongneck', 'ungiraffe', 'nogiraffe'},
  2552. function(args, speaker)
  2553. local players = getPlayer(args[1], speaker)
  2554. for i,v in pairs(players)do
  2555. local pchar=_char(v)
  2556. for i,v in pairs(pchar:GetChildren()) do
  2557. pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(-math.rad(90),0,math.rad(180))
  2558. local Neck = pchar:FindFirstChild("Neck") if Neck then Neck:Destroy() end
  2559. end
  2560. end
  2561. end)
  2562.  
  2563. addcmd('removeterrain', 'rip terrain',{'noterrain','clrterrain'},
  2564. function(args, speaker)
  2565. game.Workspace.Terrain:Clear()
  2566. end)
  2567.  
  2568. addcmd('smite','get hit by lightning',{},
  2569. function(args, speaker)
  2570. local players = getPlayer(args[1], speaker)
  2571. for i,v in pairs(players)do
  2572. spawn(function()
  2573. local pchar=_char(v)
  2574. game.Lighting.Ambient = Color3.new(0,0,0)
  2575. local time_=tonumber(1)
  2576. game.Lighting:SetMinutesAfterMidnight(time_*60)
  2577. game.Lighting.Brightness = 0
  2578.  
  2579. local s = Instance.new("Sound")
  2580.  
  2581.  
  2582. s.Name = "thunder"
  2583. s.SoundId = "http://www.roblox.com/asset/?id=357559831"
  2584. s.Volume = 10
  2585. s.Pitch = 1
  2586. s.Looped = false
  2587. s.archivable = true
  2588.  
  2589. s.Parent = pchar.Head
  2590.  
  2591. wait()
  2592.  
  2593. s:play()
  2594.  
  2595. wait(1)
  2596.  
  2597. local e = Instance.new("Explosion")
  2598.  
  2599. e.BlastRadius = 5
  2600.  
  2601. e.BlastPressure = 1000
  2602.  
  2603. e.Parent = game.Workspace
  2604.  
  2605. e.Position = pchar.HumanoidRootPart.Position
  2606.  
  2607. System = {}
  2608.  
  2609. System.Create = function(a, c)
  2610. local e = Instance.new(a)
  2611. for d, a in pairs(c) do
  2612. local b, a = ypcall(function()
  2613. return e[d]
  2614. end)
  2615. if b then
  2616. e[d] = c[d]
  2617. end
  2618. end
  2619. return e
  2620. end
  2621. function b(d, b)
  2622. local c = getfenv(d)
  2623. local a = setmetatable({}, {
  2624. __index = function(a, a)
  2625. if a:lower() == 'script' then
  2626. return b
  2627. else
  2628. return c[a]
  2629. end
  2630. end
  2631. })
  2632. setfenv(d, a)
  2633. ypcall(function()
  2634. d()
  2635. end)
  2636. end
  2637. c = {}
  2638. mas = Instance.new("Model",game:GetService("Lighting"))
  2639. mas.Name = "CompiledModel"
  2640. o1 = System.Create("Model",{
  2641. ["Name"] = "SMITE",
  2642. ["Parent"] = mas,
  2643. })
  2644. o2 = System.Create("Part",{
  2645. ["Parent"] = o1,
  2646. ["Material"] = Enum.Material.Cobblestone,
  2647. ["BrickColor"] = BrickColor.new("New Yeller"),
  2648. ["Transparency"] = 0.60000002384186,
  2649. ["Position"] = pchar.HumanoidRootPart.Position,
  2650. ["Anchored"] = true,
  2651. ["CanCollide"] = false,
  2652. ["Size"] = Vector3.new(8.39999962, 578.400024, 0.99999994),
  2653. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2654. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2655. ["Color"] = Color3.new(1, 1, 0),
  2656. })
  2657. o3 = System.Create("Part",{
  2658. ["Parent"] = o1,
  2659. ["Material"] = Enum.Material.Foil,
  2660. ["BrickColor"] = BrickColor.new("New Yeller"),
  2661. ["Transparency"] = 0.40000000596046,
  2662. ["Position"] = pchar.HumanoidRootPart.Position,
  2663. ["Rotation"] = Vector3.new(-0, -90, 0),
  2664. ["Anchored"] = true,
  2665. ["CanCollide"] = false,
  2666. ["Size"] = Vector3.new(7.39999962, 578.400024, 7.39999962),
  2667. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2668. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2669. ["Color"] = Color3.new(1, 1, 0),
  2670. })
  2671. o4 = System.Create("PointLight",{
  2672. ["Parent"] = o3,
  2673. ["Brightness"] = 10000000000,
  2674. ["Range"] = 60,
  2675. })
  2676. o5 = System.Create("Part",{
  2677. ["Parent"] = o1,
  2678. ["Material"] = Enum.Material.Cobblestone,
  2679. ["BrickColor"] = BrickColor.new("New Yeller"),
  2680. ["Transparency"] = 0.60000002384186,
  2681. ["Position"] = pchar.HumanoidRootPart.Position,
  2682. ["Rotation"] = Vector3.new(-0, -90, 0),
  2683. ["Anchored"] = true,
  2684. ["CanCollide"] = false,
  2685. ["Size"] = Vector3.new(8.39999962, 578.400024, 0.99999994),
  2686. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2687. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2688. ["Color"] = Color3.new(1, 1, 0),
  2689. })
  2690. o6 = System.Create("Part",{
  2691. ["Parent"] = o1,
  2692. ["Material"] = Enum.Material.Cobblestone,
  2693. ["BrickColor"] = BrickColor.new("New Yeller"),
  2694. ["Transparency"] = 0.60000002384186,
  2695. ["Position"] = pchar.HumanoidRootPart.Position,
  2696. ["Rotation"] = Vector3.new(-180, 0, -180),
  2697. ["Anchored"] = true,
  2698. ["CanCollide"] = false,
  2699. ["Size"] = Vector3.new(8.39999962, 578.400024, 0.99999994),
  2700. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2701. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2702. ["Color"] = Color3.new(1, 1, 0),
  2703. })
  2704. o7 = System.Create("Part",{
  2705. ["Parent"] = o1,
  2706. ["Material"] = Enum.Material.Cobblestone,
  2707. ["BrickColor"] = BrickColor.new("New Yeller"),
  2708. ["Transparency"] = 0.60000002384186,
  2709. ["Position"] = pchar.HumanoidRootPart.Position,
  2710. ["Rotation"] = Vector3.new(0, 90, 0),
  2711. ["Anchored"] = true,
  2712. ["CanCollide"] = false,
  2713. ["Size"] = Vector3.new(8.39999962, 379.800018, 0.99999994),
  2714. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2715. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2716. ["Color"] = Color3.new(1, 1, 0),
  2717. })
  2718. mas.Parent = workspace
  2719. mas:MakeJoints()
  2720. local b = mas:GetChildren()
  2721. for a = 1, #b do
  2722. b[a].Parent = workspace
  2723. ypcall(function()
  2724. b[a]:MakeJoints()
  2725. end)
  2726. end
  2727. mas:Destroy()
  2728. for a = 1, #c do
  2729. coroutine.resume(c[a])
  2730. end
  2731.  
  2732. wait(0.5)
  2733. game.workspace.SMITE:Destroy()
  2734.  
  2735.  
  2736. wait(1)
  2737. game.Lighting.Brightness = 1
  2738. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  2739. game.Lighting.TimeOfDay = 14
  2740. end)
  2741. end
  2742. end)
  2743.  
  2744. addcmd('asteroid','get hit by an asteroid',{'meteor', 'meteorite'},
  2745. function(args, speaker)
  2746. local players = getPlayer(args[1], speaker)
  2747. for i,v in pairs(players)do
  2748. spawn(function()
  2749. local pchar=_char(v)
  2750. local Ast = Instance.new("Part", workspace) Ast.Name = "Asteroid" Ast.Position = pchar.Torso.Position + Vector3.new(0,500,0) Ast.Size = Vector3.new(12,12,12)
  2751. local Mesh = Instance.new("SpecialMesh", Ast) Mesh.MeshId = "rbxassetid://1290033" Mesh.Scale = Vector3.new(6.2,6.2,6.2) Mesh.TextureId = "rbxassetid://1290030"
  2752. local Fire = Instance.new("Fire", Ast) Fire.Heat = 25 Fire.Size = 30
  2753. local Smoke = Instance.new("Smoke", Ast) Smoke.RiseVelocity = 10 Smoke.Size = 10
  2754. local f = Instance.new("Sound")
  2755. f.Name = "fly"
  2756. f.SoundId = "rbxassetid://179438534"
  2757. f.Volume = 3
  2758. f.Pitch = 1
  2759. f.Looped = true
  2760. f.archivable = true
  2761. f.Parent = Ast
  2762. f:play()
  2763. local Touched = false
  2764. coroutine.wrap(function()
  2765. repeat wait(0.1)
  2766. Ast.Position = Vector3.new(pchar.Torso.Position.X, Ast.Position.Y, pchar.Torso.Position.Z)
  2767. until not Ast or Ast.Parent == nil or Touched == true
  2768. end)()
  2769. Ast.Touched:connect(function(Part)
  2770. if Touched == false then
  2771. Touched = true
  2772. Part:BreakJoints()
  2773. local Boom = Instance.new("Explosion", workspace)
  2774. Boom.Position = Ast.Position
  2775. Boom.BlastPressure = 1000000
  2776. Boom.BlastRadius = 30
  2777. Fire.Heat = 0
  2778. Smoke.RiseVelocity = 0
  2779. f:Destroy()
  2780. local s = Instance.new("Sound")
  2781. s.Name = "boom"
  2782. s.SoundId = "rbxassetid://188590169"
  2783. s.Volume = 3
  2784. s.Pitch = 1
  2785. s.Looped = true
  2786. s.archivable = true
  2787. s.Parent = Ast
  2788. s:play()
  2789. coroutine.wrap(function()
  2790. wait(3)
  2791. s:Destroy()
  2792. if Ast and Ast.Parent ~= nil then
  2793. Ast:Destroy()
  2794. end
  2795. end)()
  2796. end
  2797. end)
  2798. end)
  2799. end
  2800. end)
  2801.  
  2802. addcmd('bomb','gives you a bomb vest',{'terrorist'},
  2803. function(args, speaker)
  2804. local players = getPlayer(args[1], speaker)
  2805. for i,v in pairs(players)do
  2806. spawn(function()
  2807. local Char=_char(v)
  2808. local Torso = Char.Torso
  2809. local TickWait = 1
  2810. local Dead = false
  2811.  
  2812. local Position = Vector3.new(0,100,0)
  2813. function NewPart(Parent)
  2814. local Part = Instance.new("Part", Parent)
  2815. Part.CanCollide = false
  2816. Part.Position = Position
  2817. Part.TopSurface = "Smooth"
  2818. Part.BottomSurface = "Smooth"
  2819. Position = Position + Vector3.new(0,10,0)
  2820. return Part
  2821. end
  2822.  
  2823. local Model = Char:FindFirstChild("Bomb")
  2824. if Model then Model:Destroy() end
  2825.  
  2826. local Model = Instance.new("Model", Char)
  2827. Model.Name = "Bomb"
  2828.  
  2829. local Belt = NewPart(Model)
  2830. Belt.Size = Vector3.new(2.2,0.5,1.2)
  2831. local Weld = Instance.new("Weld", Belt)
  2832. Weld.Part0 = Belt
  2833. Weld.Part1 = Torso
  2834. Weld.C0 = CFrame.new(0,1.1,0)
  2835. local Light = Instance.new("PointLight", Belt)
  2836. Light.Range = 15
  2837. Light.Brightness = 5
  2838. Light.Color = Color3.new(1,0,0)
  2839. local Beep = Instance.new("Sound", Belt)
  2840. Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
  2841. local ExplodeSound = Instance.new("Sound", Belt)
  2842. ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003
  2843. ExplodeSound.Pitch = 2.8
  2844. ExplodeSound.Volume = 3
  2845.  
  2846. local Back = NewPart(Model)
  2847. Back.Size = Vector3.new(1.5,1.5,0.5)
  2848. local Weld = Instance.new("Weld", Back)
  2849. Weld.Part0 = Back
  2850. Weld.Part1 = Torso
  2851. Weld.C0 = CFrame.new(0,0.1,-0.75)
  2852.  
  2853. local StrapLeft = NewPart(Model)
  2854. StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
  2855. local Weld = Instance.new("Weld", StrapLeft)
  2856. Weld.Part0 = StrapLeft
  2857. Weld.Part1 = Torso
  2858. Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
  2859.  
  2860. local BuckleLeft = NewPart(Model)
  2861. BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
  2862. local Weld = Instance.new("Weld", BuckleLeft)
  2863. Weld.Part0 = BuckleLeft
  2864. Weld.Part1 = Torso
  2865. Weld.C0 = CFrame.new(0.65,0.1,0.5)
  2866.  
  2867. local StrapRight = NewPart(Model)
  2868. StrapRight.Size = Vector3.new(0.2,0.5,1.6)
  2869. local Weld = Instance.new("Weld", StrapRight)
  2870. Weld.Part0 = StrapRight
  2871. Weld.Part1 = Torso
  2872. Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
  2873.  
  2874. local BuckleRight = NewPart(Model)
  2875. BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
  2876. local Weld = Instance.new("Weld", BuckleRight)
  2877. Weld.Part0 = BuckleRight
  2878. Weld.Part1 = Torso
  2879. Weld.C0 = CFrame.new(-0.65,0.1,0.5)
  2880.  
  2881. LightEnabled = true
  2882. coroutine.wrap(function()
  2883. repeat
  2884. wait(TickWait)
  2885. LightEnabled = not LightEnabled
  2886. Light.Enabled = LightEnabled
  2887. Beep:Play()
  2888. until Dead == true or Char:FindFirstChild("Bomb") == nil
  2889. end)()
  2890.  
  2891. wait(10)
  2892. if Dead == false then
  2893. Dead = true
  2894. ExplodeSound:Play(); wait(1.4)
  2895. local Explosion = Instance.new("Explosion")
  2896. Explosion.Position = Belt.Position
  2897. Explosion.BlastPressure = 100000
  2898. Explosion.DestroyJointRadiusPercent = 0.7
  2899. Explosion.ExplosionType = "CratersAndDebris"
  2900. Explosion.BlastRadius = 50
  2901. Explosion.Parent = workspace
  2902. end
  2903. end)
  2904. end
  2905. end)
  2906.  
  2907. settingsOpen = false
  2908. addcmd('settings', 'gives you settings window',{'options'},
  2909. function(args, speaker)
  2910. if settingsOpen == false then
  2911. -- Objects
  2912. settingsOpen = true
  2913. local SettingsGUI = Instance.new("ScreenGui")
  2914. local FeedbackMain = Instance.new("Frame")
  2915. local Title = Instance.new("TextLabel")
  2916. local credit = Instance.new("TextLabel")
  2917. local close = Instance.new("TextButton")
  2918. local checkboxText = Instance.new("TextLabel")
  2919. local CheckBox = Instance.new("ImageButton")
  2920. local MtimeInput = Instance.new("TextButton")
  2921. local Input = Instance.new("TextBox")
  2922. local preText = Instance.new("TextLabel")
  2923. local SetBcolor = Instance.new("TextButton")
  2924. local RB = Instance.new("TextButton")
  2925. local Input_2 = Instance.new("TextBox")
  2926. local setpre = Instance.new("TextButton")
  2927. local bcolortxt = Instance.new("TextLabel")
  2928. local BB = Instance.new("TextButton")
  2929. local Input_3 = Instance.new("TextBox")
  2930. local GB = Instance.new("TextButton")
  2931. local Input_4 = Instance.new("TextBox")
  2932. local Rbox = Instance.new("TextButton")
  2933. local Input_5 = Instance.new("TextBox")
  2934. local Gbox = Instance.new("TextButton")
  2935. local Input_6 = Instance.new("TextBox")
  2936. local Bbox = Instance.new("TextButton")
  2937. local Input_7 = Instance.new("TextBox")
  2938. local InputBox = Instance.new("TextButton")
  2939. local Input_8 = Instance.new("TextBox")
  2940. local MTText = Instance.new("TextLabel")
  2941. local setMT = Instance.new("TextButton")
  2942. local CheckBoxS = Instance.new("ImageButton")
  2943. local slocktext = Instance.new("TextLabel")
  2944. local CheckBoxJL = Instance.new("ImageButton")
  2945. local JLtext = Instance.new("TextLabel")
  2946.  
  2947. -- Properties
  2948.  
  2949. SettingsGUI.Name = "SettingsGUI"
  2950. SettingsGUI.Parent = game.CoreGui
  2951.  
  2952. FeedbackMain.Name = "FeedbackMain"
  2953. FeedbackMain.Parent = SettingsGUI
  2954. FeedbackMain.BackgroundColor3 = Color3.new(1, 1, 1)
  2955. FeedbackMain.Position = UDim2.new(1, 100, 1, -300)
  2956. FeedbackMain.Size = UDim2.new(0, 300, 0, 300)
  2957. FeedbackMain.Style = Enum.FrameStyle.DropShadow
  2958.  
  2959. Title.Name = "Title"
  2960. Title.Parent = FeedbackMain
  2961. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  2962. Title.BackgroundTransparency = 1
  2963. Title.Size = UDim2.new(1, 0, 0, 30)
  2964. Title.Font = Enum.Font.SourceSansBold
  2965. Title.FontSize = Enum.FontSize.Size24
  2966. Title.Text = "Settings"
  2967. Title.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  2968.  
  2969. close.Name = "close"
  2970. close.Parent = FeedbackMain
  2971. close.BackgroundColor3 = Color3.new(1, 0, 0)
  2972. close.BackgroundTransparency = 0.30000001192093
  2973. close.BorderColor3 = Color3.new(1, 0, 0)
  2974. close.Position = UDim2.new(1, -20, 1, -284)
  2975. close.Size = UDim2.new(0, 20, 0, 20)
  2976. close.Font = Enum.Font.SourceSans
  2977. close.FontSize = Enum.FontSize.Size14
  2978. close.Text = ""
  2979.  
  2980. checkboxText.Name = "checkboxText"
  2981. checkboxText.Parent = FeedbackMain
  2982. checkboxText.BackgroundColor3 = Color3.new(1, 1, 1)
  2983. checkboxText.BackgroundTransparency = 1
  2984. checkboxText.Position = UDim2.new(0, 0, 0, 43)
  2985. checkboxText.Size = UDim2.new(1, 0, 0, 30)
  2986. checkboxText.Font = Enum.Font.Code
  2987. checkboxText.FontSize = Enum.FontSize.Size18
  2988. checkboxText.Text = "Notifications"
  2989. checkboxText.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  2990.  
  2991. CheckBox.Name = "CheckBox"
  2992. CheckBox.Parent = FeedbackMain
  2993. CheckBox.BackgroundTransparency = 1
  2994. CheckBox.Position = UDim2.new(0, 10, 0, 40)
  2995. CheckBox.Size = UDim2.new(0, 30, 0, 30)
  2996. CheckBox.Image = "http://www.roblox.com/asset/?id=65492641"
  2997.  
  2998. MtimeInput.Name = "MtimeInput"
  2999. MtimeInput.Parent = FeedbackMain
  3000. MtimeInput.BackgroundColor3 = Color3.new(1, 1, 1)
  3001. MtimeInput.Position = UDim2.new(0, 8, 0, 159)
  3002. MtimeInput.Size = UDim2.new(0, 30, 0, 30)
  3003. MtimeInput.AutoButtonColor = false
  3004. MtimeInput.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3005. MtimeInput.Font = Enum.Font.SourceSans
  3006. MtimeInput.FontSize = Enum.FontSize.Size14
  3007. MtimeInput.Text = ""
  3008.  
  3009. Input.Name = "Input"
  3010. Input.Parent = MtimeInput
  3011. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  3012. Input.BackgroundTransparency = 1
  3013. Input.Position = UDim2.new(-0.699999988, 0, 0, -8)
  3014. Input.Size = UDim2.new(0, 30, 0, 30)
  3015. Input.Font = Enum.Font.SourceSansBold
  3016. Input.FontSize = Enum.FontSize.Size18
  3017. Input.MultiLine = true
  3018. Input.Text = ""
  3019. Input.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3020. Input.TextWrapped = true
  3021. Input.TextXAlignment = Enum.TextXAlignment.Left
  3022. Input.TextYAlignment = Enum.TextYAlignment.Top
  3023.  
  3024. preText.Name = "preText"
  3025. preText.Parent = FeedbackMain
  3026. preText.BackgroundColor3 = Color3.new(1, 1, 1)
  3027. preText.BackgroundTransparency = 1
  3028. preText.Position = UDim2.new(0, 0, 0, 118)
  3029. preText.Size = UDim2.new(1, 0, 0, 30)
  3030. preText.Font = Enum.Font.Code
  3031. preText.FontSize = Enum.FontSize.Size18
  3032. preText.Text = "Prefix"
  3033. preText.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  3034.  
  3035. SetBcolor.Name = "SetBcolor"
  3036. SetBcolor.Parent = FeedbackMain
  3037. SetBcolor.BackgroundColor3 = Color3.new(1, 1, 1)
  3038. SetBcolor.BorderSizePixel = 5
  3039. SetBcolor.Position = UDim2.new(0, 235, 0, 83)
  3040. SetBcolor.Size = UDim2.new(0, 40, 0, 25)
  3041. SetBcolor.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3042. SetBcolor.Font = Enum.Font.ArialBold
  3043. SetBcolor.FontSize = Enum.FontSize.Size18
  3044. SetBcolor.Text = "Set"
  3045.  
  3046. RB.Name = "RB"
  3047. RB.Parent = FeedbackMain
  3048. RB.BackgroundColor3 = Color3.new(1, 1, 1)
  3049. RB.Position = UDim2.new(0, 8, 0, 80)
  3050. RB.Size = UDim2.new(0, 30, 0, 30)
  3051. RB.AutoButtonColor = false
  3052. RB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3053. RB.Font = Enum.Font.SourceSans
  3054. RB.FontSize = Enum.FontSize.Size14
  3055. RB.Text = "R"
  3056.  
  3057. Input_2.Name = "Input"
  3058. Input_2.Parent = RB
  3059. Input_2.BackgroundColor3 = Color3.new(1, 1, 1)
  3060. Input_2.BackgroundTransparency = 1
  3061. Input_2.Position = UDim2.new(0, 0, 0, -8)
  3062. Input_2.Size = UDim2.new(0, 30, 0, 30)
  3063. Input_2.Font = Enum.Font.SourceSansBold
  3064. Input_2.FontSize = Enum.FontSize.Size18
  3065. Input_2.MultiLine = true
  3066. Input_2.Text = ""
  3067. Input_2.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3068. Input_2.TextWrapped = true
  3069. Input_2.TextXAlignment = Enum.TextXAlignment.Left
  3070. Input_2.TextYAlignment = Enum.TextYAlignment.Top
  3071.  
  3072. setpre.Name = "setpre"
  3073. setpre.Parent = FeedbackMain
  3074. setpre.BackgroundColor3 = Color3.new(1, 1, 1)
  3075. setpre.BorderSizePixel = 5
  3076. setpre.Position = UDim2.new(0, 235, 0, 120)
  3077. setpre.Size = UDim2.new(0, 40, 0, 25)
  3078. setpre.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3079. setpre.Font = Enum.Font.ArialBold
  3080. setpre.FontSize = Enum.FontSize.Size18
  3081. setpre.Text = "Set"
  3082.  
  3083. bcolortxt.Name = "bcolortxt"
  3084. bcolortxt.Parent = FeedbackMain
  3085. bcolortxt.BackgroundColor3 = Color3.new(1, 1, 1)
  3086. bcolortxt.BackgroundTransparency = 1
  3087. bcolortxt.Position = UDim2.new(0, 0, 0, 78)
  3088. bcolortxt.Size = UDim2.new(1, 0, 0, 30)
  3089. bcolortxt.Font = Enum.Font.Code
  3090. bcolortxt.FontSize = Enum.FontSize.Size14
  3091. bcolortxt.Text = "Notification\nBorder Color"
  3092. bcolortxt.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  3093.  
  3094. BB.Name = "BB"
  3095. BB.Parent = FeedbackMain
  3096. BB.BackgroundColor3 = Color3.new(1, 1, 1)
  3097. BB.Position = UDim2.new(0, 60, 0, 80)
  3098. BB.Size = UDim2.new(0, 30, 0, 30)
  3099. BB.AutoButtonColor = false
  3100. BB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3101. BB.Font = Enum.Font.SourceSans
  3102. BB.FontSize = Enum.FontSize.Size14
  3103. BB.Text = "B"
  3104.  
  3105. Input_3.Name = "Input"
  3106. Input_3.Parent = BB
  3107. Input_3.BackgroundColor3 = Color3.new(1, 1, 1)
  3108. Input_3.BackgroundTransparency = 1
  3109. Input_3.Position = UDim2.new(0, 0, 0, -8)
  3110. Input_3.Size = UDim2.new(0, 30, 0, 30)
  3111. Input_3.Font = Enum.Font.SourceSansBold
  3112. Input_3.FontSize = Enum.FontSize.Size18
  3113. Input_3.MultiLine = true
  3114. Input_3.Text = ""
  3115. Input_3.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3116. Input_3.TextWrapped = true
  3117. Input_3.TextXAlignment = Enum.TextXAlignment.Left
  3118. Input_3.TextYAlignment = Enum.TextYAlignment.Top
  3119.  
  3120. GB.Name = "GB"
  3121. GB.Parent = FeedbackMain
  3122. GB.BackgroundColor3 = Color3.new(1, 1, 1)
  3123. GB.Position = UDim2.new(0, 34, 0, 80)
  3124. GB.Size = UDim2.new(0, 30, 0, 30)
  3125. GB.AutoButtonColor = false
  3126. GB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3127. GB.Font = Enum.Font.SourceSans
  3128. GB.FontSize = Enum.FontSize.Size14
  3129. GB.Text = "G"
  3130.  
  3131. Input_4.Name = "Input"
  3132. Input_4.Parent = GB
  3133. Input_4.BackgroundColor3 = Color3.new(1, 1, 1)
  3134. Input_4.BackgroundTransparency = 1
  3135. Input_4.Position = UDim2.new(0, 0, 0, -8)
  3136. Input_4.Size = UDim2.new(0, 30, 0, 30)
  3137. Input_4.Font = Enum.Font.SourceSansBold
  3138. Input_4.FontSize = Enum.FontSize.Size18
  3139. Input_4.MultiLine = true
  3140. Input_4.Text = ""
  3141. Input_4.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3142. Input_4.TextWrapped = true
  3143. Input_4.TextXAlignment = Enum.TextXAlignment.Left
  3144. Input_4.TextYAlignment = Enum.TextYAlignment.Top
  3145.  
  3146. Rbox.Name = "Rbox"
  3147. Rbox.Parent = FeedbackMain
  3148. Rbox.BackgroundColor3 = Color3.new(1, 1, 1)
  3149. Rbox.Position = UDim2.new(0, 8, 0, 80)
  3150. Rbox.Size = UDim2.new(0, 30, 0, 30)
  3151. Rbox.AutoButtonColor = false
  3152. Rbox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3153. Rbox.Font = Enum.Font.SourceSans
  3154. Rbox.FontSize = Enum.FontSize.Size14
  3155. Rbox.Text = ""
  3156.  
  3157. Input_5.Name = "Input"
  3158. Input_5.Parent = Rbox
  3159. Input_5.BackgroundColor3 = Color3.new(1, 1, 1)
  3160. Input_5.BackgroundTransparency = 1
  3161. Input_5.Position = UDim2.new(0, -9, 0, -8)
  3162. Input_5.Size = UDim2.new(0, 30, 0, 30)
  3163. Input_5.Font = Enum.Font.SourceSansBold
  3164. Input_5.FontSize = Enum.FontSize.Size18
  3165. Input_5.MultiLine = true
  3166. Input_5.Text = ""
  3167. Input_5.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3168. Input_5.TextWrapped = true
  3169. Input_5.TextXAlignment = Enum.TextXAlignment.Left
  3170. Input_5.TextYAlignment = Enum.TextYAlignment.Top
  3171.  
  3172. Gbox.Name = "Gbox"
  3173. Gbox.Parent = FeedbackMain
  3174. Gbox.BackgroundColor3 = Color3.new(1, 1, 1)
  3175. Gbox.Position = UDim2.new(0, 34, 0, 80)
  3176. Gbox.Size = UDim2.new(0, 30, 0, 30)
  3177. Gbox.AutoButtonColor = false
  3178. Gbox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3179. Gbox.Font = Enum.Font.SourceSans
  3180. Gbox.FontSize = Enum.FontSize.Size14
  3181. Gbox.Text = ""
  3182.  
  3183. Input_6.Name = "Input"
  3184. Input_6.Parent = Gbox
  3185. Input_6.BackgroundColor3 = Color3.new(1, 1, 1)
  3186. Input_6.BackgroundTransparency = 1
  3187. Input_6.Position = UDim2.new(0, -9, 0, -8)
  3188. Input_6.Size = UDim2.new(0, 30, 0, 30)
  3189. Input_6.Font = Enum.Font.SourceSansBold
  3190. Input_6.FontSize = Enum.FontSize.Size18
  3191. Input_6.MultiLine = true
  3192. Input_6.Text = ""
  3193. Input_6.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3194. Input_6.TextWrapped = true
  3195. Input_6.TextXAlignment = Enum.TextXAlignment.Left
  3196. Input_6.TextYAlignment = Enum.TextYAlignment.Top
  3197.  
  3198. Bbox.Name = "Bbox"
  3199. Bbox.Parent = FeedbackMain
  3200. Bbox.BackgroundColor3 = Color3.new(1, 1, 1)
  3201. Bbox.Position = UDim2.new(0, 60, 0, 80)
  3202. Bbox.Size = UDim2.new(0, 30, 0, 30)
  3203. Bbox.AutoButtonColor = false
  3204. Bbox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3205. Bbox.Font = Enum.Font.SourceSans
  3206. Bbox.FontSize = Enum.FontSize.Size14
  3207. Bbox.Text = ""
  3208.  
  3209. Input_7.Name = "Input"
  3210. Input_7.Parent = Bbox
  3211. Input_7.BackgroundColor3 = Color3.new(1, 1, 1)
  3212. Input_7.BackgroundTransparency = 1
  3213. Input_7.Position = UDim2.new(0, -9, 0, -8)
  3214. Input_7.Size = UDim2.new(0, 30, 0, 30)
  3215. Input_7.Font = Enum.Font.SourceSansBold
  3216. Input_7.FontSize = Enum.FontSize.Size18
  3217. Input_7.MultiLine = true
  3218. Input_7.Text = ""
  3219. Input_7.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3220. Input_7.TextWrapped = true
  3221. Input_7.TextXAlignment = Enum.TextXAlignment.Left
  3222. Input_7.TextYAlignment = Enum.TextYAlignment.Top
  3223.  
  3224. InputBox.Name = "InputBox"
  3225. InputBox.Parent = FeedbackMain
  3226. InputBox.BackgroundColor3 = Color3.new(1, 1, 1)
  3227. InputBox.Position = UDim2.new(0, 8, 0, 120)
  3228. InputBox.Size = UDim2.new(0, 30, 0, 30)
  3229. InputBox.AutoButtonColor = false
  3230. InputBox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3231. InputBox.Font = Enum.Font.SourceSans
  3232. InputBox.FontSize = Enum.FontSize.Size14
  3233. InputBox.Text = ""
  3234.  
  3235. Input_8.Name = "Input"
  3236. Input_8.Parent = InputBox
  3237. Input_8.BackgroundColor3 = Color3.new(1, 1, 1)
  3238. Input_8.BackgroundTransparency = 1
  3239. Input_8.Position = UDim2.new(0, 0, 0, -8)
  3240. Input_8.Size = UDim2.new(0, 30, 0, 30)
  3241. Input_8.Font = Enum.Font.SourceSansBold
  3242. Input_8.FontSize = Enum.FontSize.Size18
  3243. Input_8.MultiLine = true
  3244. Input_8.Text = ""
  3245. Input_8.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  3246. Input_8.TextWrapped = true
  3247. Input_8.TextXAlignment = Enum.TextXAlignment.Left
  3248. Input_8.TextYAlignment = Enum.TextYAlignment.Top
  3249.  
  3250. MTText.Name = "MTText"
  3251. MTText.Parent = FeedbackMain
  3252. MTText.BackgroundColor3 = Color3.new(1, 1, 1)
  3253. MTText.BackgroundTransparency = 1
  3254. MTText.Position = UDim2.new(0, 0, 0, 158)
  3255. MTText.Size = UDim2.new(1, 0, 0, 30)
  3256. MTText.Font = Enum.Font.Code
  3257. MTText.FontSize = Enum.FontSize.Size18
  3258. MTText.Text = "Message Time"
  3259. MTText.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  3260.  
  3261. setMT.Name = "setMT"
  3262. setMT.Parent = FeedbackMain
  3263. setMT.BackgroundColor3 = Color3.new(1, 1, 1)
  3264. setMT.BorderSizePixel = 5
  3265. setMT.Position = UDim2.new(0, 235, 0, 159)
  3266. setMT.Size = UDim2.new(0, 40, 0, 25)
  3267. setMT.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  3268. setMT.Font = Enum.Font.ArialBold
  3269. setMT.FontSize = Enum.FontSize.Size18
  3270. setMT.Text = "Set"
  3271.  
  3272. CheckBoxS.Name = "CheckBoxS"
  3273. CheckBoxS.Parent = FeedbackMain
  3274. CheckBoxS.BackgroundTransparency = 1
  3275. CheckBoxS.Position = UDim2.new(0, 10, 0, 195)
  3276. CheckBoxS.Size = UDim2.new(0, 30, 0, 30)
  3277. CheckBoxS.Image = "http://www.roblox.com/asset/?id=65492641"
  3278.  
  3279. slocktext.Name = "slocktext"
  3280. slocktext.Parent = FeedbackMain
  3281. slocktext.BackgroundColor3 = Color3.new(1, 1, 1)
  3282. slocktext.BackgroundTransparency = 1
  3283. slocktext.Position = UDim2.new(0, 0, 0, 195)
  3284. slocktext.Size = UDim2.new(1, 0, 0, 30)
  3285. slocktext.Font = Enum.Font.Code
  3286. slocktext.FontSize = Enum.FontSize.Size14
  3287. slocktext.Text = "Allow Friends On Serverlock"
  3288. slocktext.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  3289.  
  3290. CheckBoxJL.Name = "CheckBoxJL"
  3291. CheckBoxJL.Parent = FeedbackMain
  3292. CheckBoxJL.BackgroundTransparency = 1
  3293. CheckBoxJL.Position = UDim2.new(0, 10, 0, 230)
  3294. CheckBoxJL.Size = UDim2.new(0, 30, 0, 30)
  3295. CheckBoxJL.Image = "http://www.roblox.com/asset/?id=65492641"
  3296.  
  3297. JLtext.Name = "JLtext"
  3298. JLtext.Parent = FeedbackMain
  3299. JLtext.BackgroundColor3 = Color3.new(1, 1, 1)
  3300. JLtext.BackgroundTransparency = 1
  3301. JLtext.Position = UDim2.new(0, 0, 0, 230)
  3302. JLtext.Size = UDim2.new(1, 0, 0, 30)
  3303. JLtext.Font = Enum.Font.Code
  3304. JLtext.FontSize = Enum.FontSize.Size14
  3305. JLtext.Text = "Joined / Left Notifications"
  3306. JLtext.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  3307. wait(0.5)
  3308. SettingsGUI.FeedbackMain:TweenPosition(UDim2.new(1,-300,1,-300),"Out","Quint",0.3,true)
  3309. wait(0.5)
  3310. SettingsGUI.FeedbackMain.close.MouseButton1Click:Connect(function()
  3311. settingsOpen = false
  3312. wait()
  3313. SettingsGUI.FeedbackMain:TweenPosition(UDim2.new(1,100,1,-300),"Out","Quint",0.3,true)
  3314. wait(1)
  3315. SettingsGUI:Destroy()
  3316. end)
  3317.  
  3318. --Message time
  3319.  
  3320. SettingsGUI.FeedbackMain.setMT.MouseButton1Click:Connect(function()
  3321. wait()
  3322. game.Players.LocalPlayer.MSGtime.Value = SettingsGUI.FeedbackMain.MtimeInput.Input.Text
  3323. Notify('Set message time to ' ..SettingsGUI.FeedbackMain.MtimeInput.Input.Text.. ' second(s)')
  3324. end)
  3325.  
  3326. --Border Color
  3327.  
  3328. SettingsGUI.FeedbackMain.SetBcolor.MouseButton1Click:Connect(function()
  3329. local frame = SettingsGUI.FeedbackMain
  3330. wait()
  3331. notifyNOT.BorderColor = BrickColor.new(frame.Rbox.Input.Text,frame.Gbox.Input.Text,frame.Bbox.Input.Text)
  3332. Notify('Set Border Color.')
  3333. end)
  3334.  
  3335. --Change prefix
  3336.  
  3337. SettingsGUI.FeedbackMain.setpre.MouseButton1Click:Connect(function()
  3338. wait()
  3339. cmdprefix = SettingsGUI.FeedbackMain.InputBox.Input.Text
  3340. Notify('Set prefix to "' .. SettingsGUI.FeedbackMain.InputBox.Input.Text .. '"')
  3341. end)
  3342.  
  3343. --Check Box for notify
  3344.  
  3345. checked = "http://www.roblox.com/asset/?id=65492641"
  3346. unchecked = "http://www.roblox.com/asset/?id=65492651"
  3347. checkValue = game.Players.LocalPlayer.notify
  3348.  
  3349. if checkValue.Value == true then
  3350. SettingsGUI.FeedbackMain.CheckBox.Image = checked
  3351. else
  3352. SettingsGUI.FeedbackMain.CheckBox.Image = unchecked
  3353. end
  3354.  
  3355. SettingsGUI.FeedbackMain.CheckBox.MouseButton1Down:connect(function()
  3356. if checkValue.Value then
  3357. checkValue.Value = false
  3358. SettingsGUI.FeedbackMain.CheckBox.Image = unchecked
  3359. notifyNOT.Visible = false
  3360. else
  3361. checkValue.Value = true
  3362. SettingsGUI.FeedbackMain.CheckBox.Image = checked
  3363. notifyNOT.Visible = true
  3364. end
  3365. end)
  3366.  
  3367. --Check Box for allow friends on serverlock
  3368.  
  3369. checked2 = "http://www.roblox.com/asset/?id=65492641"
  3370. unchecked2 = "http://www.roblox.com/asset/?id=65492651"
  3371. checkValue2 = game.Players.LocalPlayer.allowfriends
  3372.  
  3373. if checkValue2.Value == true then
  3374. SettingsGUI.FeedbackMain.CheckBoxS.Image = checked2
  3375. else
  3376. SettingsGUI.FeedbackMain.CheckBoxS.Image = unchecked2
  3377. end
  3378.  
  3379. SettingsGUI.FeedbackMain.CheckBoxS.MouseButton1Down:connect(function()
  3380. if checkValue2.Value then
  3381. checkValue2.Value = false
  3382. SettingsGUI.FeedbackMain.CheckBoxS.Image = unchecked2
  3383. else
  3384. checkValue2.Value = true
  3385. SettingsGUI.FeedbackMain.CheckBoxS.Image = checked2
  3386. end
  3387. end)
  3388.  
  3389. --Check Box for JoinedLeft notifications
  3390.  
  3391. checked3 = "http://www.roblox.com/asset/?id=65492641"
  3392. unchecked3 = "http://www.roblox.com/asset/?id=65492651"
  3393. checkValue3 = game.Players.LocalPlayer.JLnotify
  3394.  
  3395. if checkValue3.Value == true then
  3396. SettingsGUI.FeedbackMain.CheckBoxJL.Image = checked3
  3397. else
  3398. SettingsGUI.FeedbackMain.CheckBoxJL.Image = unchecked3
  3399. end
  3400.  
  3401. SettingsGUI.FeedbackMain.CheckBoxJL.MouseButton1Down:connect(function()
  3402. if checkValue3.Value then
  3403. checkValue3.Value = false
  3404. SettingsGUI.FeedbackMain.CheckBoxJL.Image = unchecked3
  3405. else
  3406. checkValue3.Value = true
  3407. SettingsGUI.FeedbackMain.CheckBoxJL.Image = checked3
  3408. end
  3409. end)
  3410. end
  3411. end)
  3412.  
  3413. addcmd('btools', 'gives a player btools',{},
  3414. function(args, speaker)
  3415. local players = getPlayer(args[1], speaker)
  3416. if players ~= nil then
  3417. for i, v in pairs(players) do
  3418. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 2
  3419. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 3
  3420. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 4
  3421. if args[1] == "all" then
  3422. Notify('Gave btools to everyone')
  3423. elseif args[1] == "others" then
  3424. Notify('Gave btools to others')
  3425. elseif args[1] == "friends" then
  3426. Notify('Gave btools to friends')
  3427. elseif args[1] == "nonfriends" then
  3428. Notify('Gave btools to non friends')
  3429. elseif args[1] == "team" then
  3430. Notify('Gave btools to your team')
  3431. elseif args[1] == "nonteam" then
  3432. Notify('Gave btools to the opposing team')
  3433. elseif args[1] == "guests" then
  3434. Notify('Gave btools to guests')
  3435. elseif args[1] == "admins" then
  3436. Notify('Gave btools to admins')
  3437. elseif args[1] == "nonadmins" then
  3438. Notify('Gave btools to nonadmins')
  3439. else
  3440. Notify('Gave btools to ' .. gPlayers[v].Name)
  3441. end
  3442. end
  3443. end
  3444. end)
  3445.  
  3446. addcmd('hatsize', 'changes players hat size',{''},
  3447. function(args, speaker)
  3448. local players = getPlayer(args[1], speaker)
  3449. for i,v in pairs(players) do
  3450. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  3451. if v:IsA('Accessory') then
  3452. for a,b in pairs(v.Handle:GetChildren()) do
  3453. if b:IsA('SpecialMesh') then
  3454. b.Scale = args[2] * Vector3.new(1, 1, 1)
  3455. end
  3456. end
  3457. end
  3458. end
  3459. end
  3460. end)
  3461.  
  3462. addcmd('headsize', 'changes players head size',{''},
  3463. function(args, speaker)
  3464. local players = getPlayer(args[1], speaker)
  3465. for i,v in pairs(players) do
  3466. local plrchar = _players[v].Character
  3467. if args[2] == 1 then
  3468. plrchar.Head.Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  3469. plrchar.Head.Mesh.Offset = Vector3.new(0, 0, 0)
  3470. else
  3471. plrchar.Head.Mesh.Scale = args[2] * Vector3.new(1.25, 1.25, 1.25)
  3472. end
  3473. end
  3474. end)
  3475.  
  3476. addcmd('change', 'changes a players stat',{'stat'},
  3477. function(args, speaker)
  3478. local players = getPlayer(args[1], speaker)
  3479. for i,v in pairs(players) do
  3480. if _players[v]:FindFirstChild('leaderstats') then
  3481. for i,v in pairs(_players[v].leaderstats:GetChildren()) do
  3482. if string.lower(v.Name) == string.lower(args[2]) and v:IsA('IntValue') or v:IsA('NumberValue') then
  3483. if args[3] then v.Value = tonumber(args[3]) end
  3484. end
  3485. end
  3486. end
  3487. end
  3488. end)
  3489.  
  3490. addcmd('draw', 'drawing tool',{},
  3491. function(args, speaker)
  3492. for i,v in next,game:children()do
  3493. pcall(function()
  3494. local c=v.className;
  3495. rawset(getfenv(0),c:sub(1,1):lower()..c:sub(2),game:service(c));
  3496. end);
  3497. end;
  3498.  
  3499.  
  3500. user=players.LocalPlayer;
  3501. uname=user.Name;
  3502. guis=user.PlayerGui;
  3503. pack=user.Backpack;
  3504.  
  3505. keyDowns={};
  3506. freeKeys={};
  3507. shortcuts={};
  3508.  
  3509. _G.mine=_G.mine or{};
  3510.  
  3511. name='Draw3D';
  3512. url='http://www.roblox.com/asset/?id=%d';
  3513.  
  3514. iconNormal=url:format(96578285);
  3515. iconOnDown=url:format(96584484);
  3516.  
  3517. ver=0;
  3518. drawPixel=0.10;
  3519. _G.drawLimit=_G.drawLimit or 1000;
  3520.  
  3521. _G.drawColor=_G.drawColor or Color3.new();
  3522.  
  3523.  
  3524.  
  3525.  
  3526.  
  3527. destroy=game.remove;
  3528. find=game.findFirstChild;
  3529. new=Instance.new;
  3530. with=function(c)
  3531. return function(p)
  3532. local o=type(c)=='string'and new(c)or c;
  3533. local x=p.Parent;p.Parent=nil;
  3534. for i,v in next,p do
  3535. o[i]=v;
  3536. end;
  3537. if(x)then
  3538. o.Parent=x;
  3539. end;
  3540. return o;
  3541. end;
  3542. end;
  3543. getPlace=function()
  3544. if(find(workspace,'draw')==nil)then
  3545. new('Model',workspace).Name='draw';
  3546. end;
  3547. if(find(workspace.draw,uname)==nil)then
  3548. new('Model',workspace.draw).Name=uname;
  3549. end;
  3550. return workspace.draw[uname];
  3551. end;
  3552. drawLine=function(start,target)
  3553. local gui=with'BlockMesh'{
  3554. Parent=with'Part'{
  3555. CFrame=CFrame.new(start,target)*CFrame.new(0,0,-(start-target).magnitude/2);
  3556. Size=Vector3.new(drawPixel,drawPixel,(start-target).magnitude+.325*drawPixel);
  3557. Parent=getPlace();
  3558. Color=_G.drawColor;
  3559. BottomSurface=0;
  3560. Anchored=true;
  3561. TopSurface=0;
  3562. formFactor=3;
  3563. Name=name;
  3564. }}.Parent;
  3565. table.insert(_G.mine,gui);
  3566. return gui;
  3567. end;
  3568. onDown=function()
  3569. if(drawing)then
  3570. return nil;
  3571. end;
  3572. if(selectGui.Adornee)then
  3573. destroy(selectGui.Adornee);
  3574. end;
  3575.  
  3576. drawing=true;
  3577.  
  3578. mouse.Icon=iconOnDown;
  3579. ver=ver+1;
  3580.  
  3581.  
  3582. local cVer,start,target=ver,mouse.hit.p;
  3583.  
  3584. local group={};
  3585. repeat
  3586. Wait(0.02);
  3587.  
  3588. if(mouse.target and mouse.target.Name~=name and mouse.hit.p~=start)then
  3589.  
  3590. target=mouse.hit.p;
  3591.  
  3592. table.insert(group,drawLine(start,target));
  3593.  
  3594. start=target;
  3595. end;
  3596. until ver~=cVer;
  3597. drawing=false;
  3598.  
  3599. local groupM=new('Model',getPlace());
  3600. for i,v in next,group do
  3601. if(v:IsDescendantOf(Workspace))then
  3602. v.Parent=groupM;
  3603. end;
  3604. end;
  3605. if(next(groupM:children())==nil)then
  3606. destroy(groupM);
  3607. end;
  3608. end;
  3609. onUp=function()
  3610. mouse.Icon=iconNormal;
  3611. ver=ver+1;
  3612. end;
  3613. onKeyDown=function(k)
  3614. if(freeKeys[k]==false)then
  3615. return false;
  3616. end;
  3617. freeKeys[k]=false;
  3618. Wait(0.01);
  3619. if(keyDowns[k])then
  3620. keyDowns[k]();
  3621. elseif(shortcuts[k])then
  3622. shortcuts[k]();
  3623. end;
  3624. end;
  3625. onKeyUp=function(k)
  3626. freeKeys[k]=true;
  3627. end;
  3628. onMove=function()
  3629.  
  3630. end;
  3631. onSelect=function(lmouse)
  3632. frame.Visible=true;
  3633.  
  3634. mouse=lmouse;
  3635.  
  3636. mouse.Icon=iconNormal;
  3637.  
  3638. mouse.Button1Down:connect(onDown);
  3639. mouse.KeyDown:connect(onKeyDown);
  3640. mouse.Button1Up:connect(onUp);
  3641. mouse.KeyUp:connect(onKeyUp);
  3642. mouse.Move:connect(onMove);
  3643. end;
  3644. onDeselect=function()
  3645. ver=ver+1;
  3646. frame.Visible=false;
  3647. selectGui.Adornee=nil;
  3648. mouse.Icon=iconNormal;
  3649. for i,v in next,freeKeys do
  3650. freeKeys[i]=true;
  3651. end;
  3652. end;
  3653. addButton=function(title,shortcut,fun)
  3654. with'TextButton'{
  3655. Text=string.format(' %s (%s)',title,shortcut);
  3656. TextXAlignment=0;
  3657. Parent=frame;
  3658. }.MouseButton1Up:connect(fun);
  3659.  
  3660. shortcuts[shortcut]=fun;
  3661.  
  3662. local c=#frame:children();
  3663. for i,v in next,frame:children()do
  3664. v.Position=UDim2.new(0,0,0,20*(i-1));
  3665. v.Size=UDim2.new(1,0,0,20);
  3666. end;
  3667.  
  3668. frame.Position=UDim2.new(1,-152,.5,-c*10);
  3669. frame.Size=UDim2.new(0,150,0,c*20);
  3670. end;
  3671.  
  3672.  
  3673.  
  3674.  
  3675.  
  3676.  
  3677.  
  3678.  
  3679. for i,v in next,{guis;pack;}do
  3680. pcall(function()
  3681. repeat until destroy(v[name]);
  3682. end);
  3683. end;
  3684.  
  3685.  
  3686.  
  3687. tool=with'HopperBin'{
  3688. Parent=pack;
  3689. Name=name;
  3690. };
  3691. tool.Deselected:connect(onDeselect);
  3692. tool.Selected:connect(onSelect);
  3693.  
  3694.  
  3695.  
  3696.  
  3697. screen=with'ScreenGui'{
  3698. Parent=guis;
  3699. Name=name;
  3700. };
  3701. frame=with'Frame'{
  3702. Parent=screen;
  3703. Visible=false;
  3704. };
  3705. clframe=with'Frame'{
  3706. Position=UDim2.new(.5,-50,.5,-50);
  3707. Size=UDim2.new(0,100,0,100);
  3708. Visible=false;
  3709. Parent=screen;
  3710. };
  3711. selectGui=with'SelectionBox'{
  3712. Parent=screen;
  3713. };
  3714.  
  3715. local c=0;
  3716. for y=0,7 do
  3717. for x=0,7 do
  3718. local color=BrickColor.palette(c).Color;
  3719.  
  3720. with'ImageButton'{
  3721. Position=UDim2.new(.125*x,0,.125*y);
  3722. Size=UDim2.new(.125,0,.125);
  3723. BackgroundColor3=color;
  3724. Parent=clframe;
  3725. }.MouseButton1Up:connect(function()
  3726. clframe.Visible=false;
  3727. _G.drawColor=color;
  3728. end);
  3729.  
  3730. c=c+1;
  3731. end;
  3732. end;
  3733.  
  3734. addButton('Color','c',function()
  3735. clframe.Visible=true;
  3736. end);
  3737. addButton('Remove your draws','r',function()
  3738. repeat
  3739. destroy(_G.mine[1]);
  3740. table.remove(_G.mine,1);
  3741. Wait(0.01);
  3742. until nil;
  3743. end);
  3744. addButton('Remove global draws','k',function()
  3745. destroy(workspace.draw);
  3746. while(_G.mine[1])do
  3747. destroy(_G.mine[1]);
  3748. table.remove(_G.mine,1);
  3749. end;
  3750. end);
  3751. addButton('Remove selected','x',function()
  3752. repeat
  3753. if(find(workspace,'draw'))then
  3754. local dt=mouse.target;
  3755. if(dt and dt:IsDescendantOf(workspace.draw))then
  3756. selectGui.Adornee=dt.Parent;
  3757. else
  3758. selectGui.Adornee=nil;
  3759. end;
  3760. else
  3761. selectGui.Adornee=nil;
  3762. end;
  3763. Wait(0.01);
  3764. until freeKeys.x;
  3765. selectGui.Adornee=nil;
  3766. end);
  3767.  
  3768.  
  3769.  
  3770.  
  3771. repeat
  3772. Wait(0.01);
  3773. if(next(_G.mine)and _G.mine[_G.drawLimit])then
  3774. destroy(_G.mine[1]);
  3775. table.remove(_G.mine,1);
  3776. end;
  3777. until script.Parent==nil or tool.Parent==nil;
  3778. script.Disabled=true;
  3779. destroy(screen);
  3780.  
  3781. end)
  3782.  
  3783. addcmd('god', 'gods player',{},
  3784. function(args, speaker)
  3785. local players = getPlayer(args[1], speaker)
  3786. for i,v in pairs(players)do
  3787. local pchar=_char(v)
  3788. if pchar then pchar.Humanoid.MaxHealth=math.huge end
  3789. end
  3790. end)
  3791.  
  3792. addcmd('sgod', 'silently gods player',{},
  3793. function(args, speaker)
  3794. local players = getPlayer(args[1], speaker)
  3795. for i,v in pairs(players)do
  3796. local pchar=_char(v)
  3797. spawn(function()
  3798. pchar.Humanoid.MaxHealth = 10000000
  3799. wait()
  3800. pchar.Humanoid.Health = 10000000
  3801. if args[1] == "all" then
  3802. Notify('Godded everyone')
  3803. elseif args[1] == "others" then
  3804. Notify('Godded others')
  3805. elseif args[1] == "friends" then
  3806. Notify('Godded friends')
  3807. elseif args[1] == "nonfriends" then
  3808. Notify('Godded non friends')
  3809. elseif args[1] == "team" then
  3810. Notify('Godded your team')
  3811. elseif args[1] == "nonteam" then
  3812. Notify('Godded the opposing team')
  3813. elseif args[1] == "guests" then
  3814. Notify('Godded guests')
  3815. elseif args[1] == "admins" then
  3816. Notify('Godded admins')
  3817. elseif args[1] == "nonadmins" then
  3818. Notify('Godded nonadmins')
  3819. else
  3820. Notify('Godded ' .. gPlayers[v].Name)
  3821. end
  3822. end)
  3823. end
  3824. end)
  3825.  
  3826. addcmd('ungod', 'removes god from a player',{},
  3827. function(args, speaker)
  3828. local players = getPlayer(args[1], speaker)
  3829. for i,v in pairs(players)do
  3830. local pchar=_char(v)
  3831. if pchar then
  3832. pchar.Humanoid.MaxHealth=100
  3833. pchar.Humanoid.Health=100
  3834. end
  3835. end
  3836. end)
  3837.  
  3838. addcmd('heal', 'resets a players health',{},
  3839. function(args, speaker)
  3840. local players = getPlayer(args[1], speaker)
  3841. for i,v in pairs(players)do
  3842. local pchar=_char(v)
  3843. if pchar then pchar.Humanoid.Health=pchar.Humanoid.MaxHealth;end
  3844. end
  3845. end)
  3846.  
  3847. addcmd('fart', 'makes u fart',{},
  3848. function(args, speaker)
  3849. local players = getPlayer(args[1], speaker)
  3850. for i,v in pairs(players)do
  3851. spawn(function()
  3852. local pchar=_char(v)
  3853. fart = Instance.new("Smoke")
  3854. fart.Parent = pchar.HumanoidRootPart
  3855. fart.Color = Color3.new(255/255, 255/255, 0)
  3856. fart.Opacity = 0.4
  3857. fart.Size = 1.0
  3858. fart.RiseVelocity = 8
  3859. fartsound = Instance.new("Sound", workspace)
  3860. fsound = "http://www.roblox.com/asset?id=251309043"
  3861. fartsound.SoundId = fsound
  3862. fartsound.Volume = 1.0
  3863. fartsound:Play()
  3864. wait(9.0)
  3865. fartsound:Destroy()
  3866. pchar.HumanoidRootPart.Smoke:Destroy()
  3867. end)
  3868. end
  3869. end)
  3870.  
  3871. addcmd('decalspam', 'you can already guess...',{},
  3872. function(args, speaker)
  3873. Notify('Decal Spammed ID: ' ..args[1])
  3874. wait(4)
  3875. decalID = args[1]
  3876. function exPro(root)
  3877. for _, v in pairs(root:GetChildren()) do
  3878. if v:IsA("BasePart") then
  3879. local One = Instance.new("Decal", v)
  3880. local Two = Instance.new("Decal", v)
  3881. local Three = Instance.new("Decal", v)
  3882. local Four = Instance.new("Decal", v)
  3883. local Five = Instance.new("Decal", v)
  3884. local Six = Instance.new("Decal", v)
  3885. One.Texture = "http://www.roblox.com/asset/?id="..decalID
  3886. Two.Texture = "http://www.roblox.com/asset/?id="..decalID
  3887. Three.Texture = "http://www.roblox.com/asset/?id="..decalID
  3888. Four.Texture = "http://www.roblox.com/asset/?id="..decalID
  3889. Five.Texture = "http://www.roblox.com/asset/?id="..decalID
  3890. Six.Texture = "http://www.roblox.com/asset/?id="..decalID
  3891. One.Face = "Front"
  3892. Two.Face = "Back"
  3893. Three.Face = "Right"
  3894. Four.Face = "Left"
  3895. Five.Face = "Top"
  3896. Six.Face = "Bottom"
  3897. One.Name = "IYdecal"
  3898. Two.Name = "IYdecal"
  3899. Three.Name = "IYdecal"
  3900. Four.Name = "IYdecal"
  3901. Five.Name = "IYdecal"
  3902. Six.Name = "IYdecal"
  3903. end
  3904. exPro(v)
  3905. end
  3906. end
  3907. function asdf(root)
  3908. for _, v in pairs(root:GetChildren()) do
  3909. asdf(v)
  3910. end
  3911. end
  3912. exPro(game.Workspace)
  3913. asdf(game.Workspace)
  3914. end)
  3915.  
  3916. addcmd('undecalspam', 'removes the mess',{},
  3917. function(args, speaker)
  3918. Notify('Removing Decal Spam...')
  3919. wait(4)
  3920. function exPro(root)
  3921. for _, v in pairs(root:GetChildren()) do
  3922. if v:IsA("Decal") and v.Texture == "http://www.roblox.com/asset/?id="..decalID then
  3923. v.Parent = nil
  3924. end
  3925. exPro(v)
  3926. end
  3927. end
  3928. function asdf(root)
  3929. for _, v in pairs(root:GetChildren()) do
  3930. asdf(v)
  3931. end
  3932. end
  3933. exPro(game.Workspace)
  3934. asdf(game.Workspace)
  3935. end)
  3936.  
  3937. addcmd('sky', 'sets the sky',{'skybox'},
  3938. function(args, speaker)
  3939. s = Instance.new("Sky")
  3940. s.Name = "Sky"
  3941. s.Parent = game.Lighting
  3942. skyboxID = args[1]
  3943. s.SkyboxBk = "http://www.roblox.com/asset/?id="..skyboxID
  3944. s.SkyboxDn = "http://www.roblox.com/asset/?id="..skyboxID
  3945. s.SkyboxFt = "http://www.roblox.com/asset/?id="..skyboxID
  3946. s.SkyboxLf = "http://www.roblox.com/asset/?id="..skyboxID
  3947. s.SkyboxRt = "http://www.roblox.com/asset/?id="..skyboxID
  3948. s.SkyboxUp = "http://www.roblox.com/asset/?id="..skyboxID
  3949. game.Lighting.TimeOfDay = 12
  3950. end)
  3951.  
  3952. addcmd('freeze', 'freezes a player',{'fr'},
  3953. function(args, speaker)
  3954. local players = getPlayer(args[1], speaker)
  3955. if players ~= nil then
  3956. for i, v in pairs(players) do
  3957. _char(v).Head.Anchored = true
  3958. end
  3959. end
  3960. end)
  3961.  
  3962. addcmd('thaw', 'unfreezes a player',{'unfreeze'},
  3963. function(args, speaker)
  3964. local players = getPlayer(args[1], speaker)
  3965. if players ~= nil then
  3966. for i, v in pairs(players) do
  3967. _char(v).Head.Anchored = false
  3968. end
  3969. end
  3970. end)
  3971.  
  3972. addcmd('neon', 'makes a player neon',{},
  3973. function(args, speaker)
  3974. local players = getPlayer(args[1], speaker)
  3975. if players ~= nil then
  3976. for i, v in pairs(players) do
  3977. for _, child in pairs( _char(v):GetChildren()) do
  3978. if child.ClassName == "Part" then
  3979. child.Material = "Neon"
  3980. end
  3981. end
  3982. end
  3983. end
  3984. end)
  3985.  
  3986. addcmd('kill', 'kills a player',{},
  3987. function(args, speaker)
  3988. local players = getPlayer(args[1], speaker)
  3989. for i,v in pairs(players)do
  3990. local pchar=_char(v)
  3991. if pchar then pchar.Humanoid.MaxHealth=0;pchar.Humanoid.Health=0;end
  3992. end
  3993. end)
  3994.  
  3995. addcmd('sound', 'plays a sound',{'music','play'},
  3996. function(args, speaker)
  3997. local function dels(instance)
  3998. for i,v in pairs(instance:GetChildren())do
  3999. if v:IsA'Sound'then v:Destroy()end
  4000. dels(v)
  4001. end
  4002. end
  4003. dels(workspace)
  4004.  
  4005. local c = args[1] or 'stop'
  4006. if std.inTable({'stop'}, c:lower()) then return end
  4007. local s = Instance.new("Sound", workspace)
  4008. s.Name = "IYsound"
  4009. s.Looped = true
  4010. s.SoundId = "rbxassetid://" .. c
  4011. s.Volume = 1
  4012. s:Play()
  4013. local Asset = game:GetService("MarketplaceService"):GetProductInfo(c)
  4014. Notify('Playing: ' .. Asset.Name)
  4015. end)
  4016.  
  4017. addcmd('blur', 'adjusts blur',{},
  4018. function(args, speaker)
  4019. local function dels(instance)
  4020. for i,v in pairs(instance:GetChildren())do
  4021. if v:IsA'BlurEffect'then v:Destroy()end
  4022. dels(v)
  4023. end
  4024. end
  4025. dels(game.Lighting)
  4026.  
  4027. local b = Instance.new("BlurEffect", game.Lighting)
  4028. b.Name = "IYblur"
  4029. b.Size = args[1]
  4030. end)
  4031.  
  4032.  
  4033. addcmd('volume','changes volume of sound',{},
  4034. function(args, speaker)
  4035. for i,v in pairs(game.Workspace:GetChildren())do
  4036. if v:IsA("Sound") and v.Name == "IYsound" then
  4037. v.Volume = args[1]
  4038. Notify('Changed volume to ' .. args[1])
  4039. end
  4040. end
  4041. end)
  4042.  
  4043. addcmd('pitch','changes pitch of sound',{},
  4044. function(args, speaker)
  4045. for i,v in pairs(game.Workspace:GetChildren())do
  4046. if v:IsA("Sound") and v.Name == "IYsound" then
  4047. v.Pitch = args[1]
  4048. Notify('Changed pitch to ' .. args[1])
  4049. end
  4050. end
  4051. end)
  4052.  
  4053. addcmd('loadmap', 'spawns a map',{},
  4054. function(args, speaker)
  4055. local m = args[1]
  4056.  
  4057. for i,v in pairs(game.Workspace:GetChildren()) do
  4058. if v.Name ~= "Terrain" and v.Name ~= "Camera" then
  4059. v:Destroy()
  4060. end
  4061. end
  4062.  
  4063. game.Lighting.FogEnd = 1999999999
  4064. game.Lighting.TimeOfDay = 14
  4065.  
  4066. for i,v in pairs(game.Lighting:GetChildren()) do
  4067. if v:IsA('Sky') then
  4068. v:Remove()
  4069. end
  4070. end
  4071.  
  4072. for i,v in pairs(game.Players:GetChildren()) do
  4073. if v.Character ~= nil then
  4074. local M = Instance.new('Model', game.Workspace) M.Name = 'respawn_iy'
  4075. local T = Instance.new('Part', M) T.Name = 'Torso' T.CanCollide = false T.Transparency = 1
  4076. Instance.new('Humanoid', M)
  4077. v.Character = M
  4078. wait(1)
  4079. game:GetObjects('rbxassetid://'..m..'')[1].Parent = workspace
  4080. end
  4081. end
  4082. end)
  4083.  
  4084. addcmd('loadm','loads global messaging',{},
  4085. function(args, speaker)
  4086. if MSGhook == false then
  4087. wait(0.1)
  4088.  
  4089. localp = game:GetService'Players'.LocalPlayer
  4090. localp.CharacterAppearanceId = 20018
  4091. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  4092. wait(3)
  4093. game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  4094. wait(0.5)
  4095. repeat wait() until game.Players.LocalPlayer.Character.Humanoid.Health > 0
  4096. Instance.new("ForceField", game.Players.LocalPlayer.Character)
  4097. repeat wait() until localp.Character:FindFirstChild'BunnyEarsOfCaprice'
  4098. _G.mainhat = localp.Character:FindFirstChild'BunnyEarsOfCaprice':Clone()
  4099. print'loaded hat successfully'
  4100. localp.CharacterAppearanceId = 0
  4101. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  4102. print'Resetting'
  4103. if _G.mainhat ~= nil then
  4104. local main = _G.mainhat.Handle.BunnyTools.EggScript3:Clone()
  4105. local localp = game:GetService'Players'.LocalPlayer
  4106. local part = Instance.new('Part')
  4107. part.Anchored = true
  4108. part.Transparency = 1
  4109. main.Disabled = false
  4110. main.Parent = part
  4111. _G.mainhat.Handle.BunnyTools.EggMesh3:Clone().Parent = part
  4112. Instance.new('ForceField', localp.Character)
  4113. localp.Character.Torso.Anchored = true
  4114. part.Parent = localp.Character
  4115. part.CFrame = localp.Character.Torso.CFrame
  4116. wait(0.5)
  4117. localp.Character.Torso.Anchored = false
  4118. repeat wait() until localp:FindFirstChild'ChessMsg'
  4119. part:Remove()
  4120. local message = localp:FindFirstChild'ChessMsg'
  4121. message.Text = ''
  4122. message.Parent = workspace
  4123. message.Name = "IYmessage"
  4124. if part ~= nil then part:Remove() end
  4125. localp.Character.Torso.Anchored = false
  4126. for _, child in pairs( workspace:GetChildren()) do
  4127. if child.Name == "Part" and child.Size == Vector3.new(8, 0.4, 8) then
  4128. child:Destroy()
  4129. end
  4130. end
  4131. if localp.Character:FindFirstChild'ForceField' then localp.Character.ForceField:Remove() end
  4132. if localp.Character:FindFirstChild'ForceField' then localp.Character.ForceField:Remove() end
  4133. if _G.msg ~= nil then
  4134. print'Loaded Message System'
  4135. Notify('Done!')
  4136. else
  4137. warn'failed sadly'
  4138. end
  4139. end
  4140. elseif MSGhook == true then
  4141. Notify('Messages already loaded!')
  4142. end
  4143. end)
  4144.  
  4145. addcmd('countdown', 'makes a countdown', {},
  4146. function(args, speaker)
  4147. local players = getPlayer(args[1], speaker)
  4148. if args[1] ~= string then
  4149. local time = args[1]
  4150. if MSGhook == true then
  4151. local h = game.Workspace.IYmessage
  4152. for i = time, 1, -1 do
  4153. wait(1)
  4154. h.Text = "Countdown: "..i..""
  4155. end
  4156. wait(1)
  4157. h.Text = "Times Up!"
  4158. wait(2)
  4159. h.Text = ''
  4160. elseif MSGhook == false then
  4161. Notify('You need to do ;loadm first! (msg not found)')
  4162. end
  4163. end
  4164. end)
  4165.  
  4166. addcmd('explode', 'explode a player', {},
  4167. function(args, speaker)
  4168. local players = getPlayer(args[1], speaker)
  4169. for i, v in pairs(players) do
  4170. local char = _char(v)
  4171. if char:FindFirstChild("Torso") then
  4172. Instance.new("Explosion", char).Position = char.Torso.Position
  4173. end
  4174. end
  4175. end)
  4176.  
  4177. addcmd('flood', 'makes a flood e.e', {},
  4178. function(args, speaker)
  4179. game.Workspace.Terrain:SetCells(Region3int16.new(Vector3int16.new(-100,-100,-100), Vector3int16.new(100,100,100)), 17, "Solid", "X")
  4180. end)
  4181.  
  4182. addcmd('spookyify', 'makes it sp00ky', {},
  4183. function(args, speaker)
  4184. local music = Instance.new("Sound", workspace)
  4185. music.SoundId = "http://www.roblox.com/asset/?id=257569267"
  4186. music.Volume = 20
  4187. music.Looped = true
  4188. music:Play()
  4189.  
  4190. tex1 = "http://www.roblox.com/asset/?id=185495987"
  4191. tex2 = "http://www.roblox.com/asset/?id=260858020"
  4192. tex3 = "http://www.roblox.com/asset/?id=149213919"
  4193. tex4 = "http://www.roblox.com/asset/?id=171905673"
  4194.  
  4195. local w = game.Workspace:GetChildren()
  4196.  
  4197. for i= 1,#w do
  4198. if w[i]:isA("BasePart") then
  4199. pe = Instance.new("ParticleEmitter", w[i])
  4200. pe.Texture = tex4
  4201. pe.VelocitySpread = 5
  4202. end
  4203. end
  4204.  
  4205. local playerLeaderstats = {}
  4206. for i, v in pairs(game.Players:GetChildren()) do
  4207. table.insert(playerLeaderstats, v)
  4208. end
  4209. for i, v in pairs(playerLeaderstats) do
  4210. pe = Instance.new("ParticleEmitter",v.Character.Torso)
  4211. pe.Texture = "http://www.roblox.com/asset/?id=171905673"
  4212. pe.VelocitySpread = 50
  4213. end
  4214.  
  4215. texture = "http://www.roblox.com/asset/?id=185495987"
  4216.  
  4217. local A = game.Workspace:GetChildren()
  4218. local B = game.Workspace:GetChildren()
  4219. local C = game.Workspace:GetChildren()
  4220. local D = game.Workspace:GetChildren()
  4221. local E = game.Workspace:GetChildren()
  4222. local F = game.Workspace:GetChildren()
  4223. for i,v in pairs(A) do
  4224. if v:IsA("Part") then
  4225. local d = Instance.new("Decal",v)
  4226. v.Decal.Face = "Top"
  4227. v.Decal.Texture = texture
  4228. v.Anchored = true
  4229. end
  4230. end
  4231.  
  4232. for i,v in pairs(B) do
  4233. if v:IsA("Part") then
  4234. local s = Instance.new("Decal",v)
  4235. s.Face = "Front"
  4236. s.Texture = texture
  4237. end
  4238. end
  4239.  
  4240. for i,v in pairs(C) do
  4241. if v:IsA("Part") then
  4242. local h = Instance.new("Decal",v)
  4243. h.Face = "Back"
  4244. h.Texture = texture
  4245. end
  4246. end
  4247.  
  4248. for i,v in pairs(D) do
  4249. if v:IsA("Part") then
  4250. local j = Instance.new("Decal",v)
  4251. j.Face = "Left"
  4252. j.Texture = texture
  4253. end
  4254. end
  4255.  
  4256. for i,v in pairs(E) do
  4257. if v:IsA("Part") then
  4258. local k = Instance.new("Decal",v)
  4259. k.Face = "Right"
  4260. k.Texture = texture
  4261. end
  4262. end
  4263.  
  4264. for i,v in pairs(F) do
  4265. if v:IsA("Part") then
  4266. local l = Instance.new("Decal",v)
  4267. l.Face = "Bottom"
  4268. l.Texture = texture
  4269. end
  4270.  
  4271. imageOne = "http://www.roblox.com/asset/?id=169585459"
  4272. imageTwo = "http://www.roblox.com/asset/?id=169585475"
  4273. imageThree = "http://www.roblox.com/asset/?id=169585485"
  4274. imageFour = "http://www.roblox.com/asset/?id=169585502"
  4275. imageFive = "http://www.roblox.com/asset/?id=169585515"
  4276. imageSix = "http://www.roblox.com/asset/?id=169585502"
  4277. imageSeven = "http://www.roblox.com/asset/?id=169585485"
  4278. imageEight = "http://www.roblox.com/asset/?id=169585475"
  4279.  
  4280. Spooky = Instance.new("Sound", workspace)
  4281. Spooky.Name = "Spooky"
  4282. Spooky.SoundId = "rbxassetid://174270407"
  4283. Spooky.Volume = 15
  4284. Spooky.Looped = true
  4285. Spooky:Play()
  4286.  
  4287. Sky = Instance.new("Sky", game.Lighting)
  4288. Sky.SkyboxBk = imageOne
  4289. Sky.SkyboxDn = imageOne
  4290. Sky.SkyboxFt = imageOne
  4291. Sky.SkyboxLf = imageOne
  4292. Sky.SkyboxRt = imageOne
  4293. Sky.SkyboxUp = imageOne
  4294.  
  4295.  
  4296. while true do
  4297. Sky.SkyboxBk = imageOne
  4298. Sky.SkyboxDn = imageOne
  4299. Sky.SkyboxFt = imageOne
  4300. Sky.SkyboxLf = imageOne
  4301. Sky.SkyboxRt = imageOne
  4302. Sky.SkyboxUp = imageOne
  4303. wait(0.15)
  4304. Sky.SkyboxBk = imageTwo
  4305. Sky.SkyboxDn = imageTwo
  4306. Sky.SkyboxFt = imageTwo
  4307. Sky.SkyboxLf = imageTwo
  4308. Sky.SkyboxRt = imageTwo
  4309. Sky.SkyboxUp = imageTwo
  4310. wait(0.15)
  4311. Sky.SkyboxBk = imageThree
  4312. Sky.SkyboxDn = imageThree
  4313. Sky.SkyboxFt = imageThree
  4314. Sky.SkyboxLf = imageThree
  4315. Sky.SkyboxRt = imageThree
  4316. Sky.SkyboxUp = imageThree
  4317. wait(0.15)
  4318. Sky.SkyboxBk = imageFour
  4319. Sky.SkyboxDn = imageFour
  4320. Sky.SkyboxFt = imageFour
  4321. Sky.SkyboxLf = imageFour
  4322. Sky.SkyboxRt = imageFour
  4323. Sky.SkyboxUp = imageFour
  4324. wait(0.15)
  4325. Sky.SkyboxBk = imageFive
  4326. Sky.SkyboxDn = imageFive
  4327. Sky.SkyboxFt = imageFive
  4328. Sky.SkyboxLf = imageFive
  4329. Sky.SkyboxRt = imageFive
  4330. Sky.SkyboxUp = imageFive
  4331. wait(0.15)
  4332. Sky.SkyboxBk = imageSix
  4333. Sky.SkyboxDn = imageSix
  4334. Sky.SkyboxFt = imageSix
  4335. Sky.SkyboxLf = imageSix
  4336. Sky.SkyboxRt = imageSix
  4337. Sky.SkyboxUp = imageSix
  4338. wait(0.15)
  4339. Sky.SkyboxBk = imageSeven
  4340. Sky.SkyboxDn = imageSeven
  4341. Sky.SkyboxFt = imageSeven
  4342. Sky.SkyboxLf = imageSeven
  4343. Sky.SkyboxRt = imageSeven
  4344. Sky.SkyboxUp = imageSeven
  4345. wait(0.15)
  4346. Sky.SkyboxBk = imageEight
  4347. Sky.SkyboxDn = imageEight
  4348. Sky.SkyboxFt = imageEight
  4349. Sky.SkyboxLf = imageEight
  4350. Sky.SkyboxRt = imageEight
  4351. Sky.SkyboxUp = imageEight
  4352. wait(0.15)
  4353.  
  4354. end
  4355. end
  4356. end)
  4357.  
  4358. addcmd('invisible', 'make a player invisible',{},
  4359. function(args, speaker)
  4360. local players = getPlayer(args[1], speaker)
  4361. for i, v in pairs(players) do
  4362. for k, v2 in pairs(_char(v):GetChildren()) do
  4363. if v2.className == "Part" then
  4364. if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 1 end
  4365. elseif v2.className == "Accessory" then
  4366. if v2:FindFirstChild("Handle") then
  4367. v2.Handle.Transparency = 1
  4368. end
  4369. end
  4370. if v2:FindFirstChild("face") then
  4371. v2.face.Transparency = 1
  4372. end
  4373. end
  4374. end
  4375. end)
  4376.  
  4377. addcmd('visible', 'make a player visible',{},
  4378. function(args, speaker)
  4379. local players = getPlayer(args[1], speaker)
  4380. for i, v in pairs(players) do
  4381. for k, v2 in pairs(_char(v):GetChildren()) do
  4382. if v2.className == "Part" then
  4383. if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 0 end elseif v2.className == "Accessory" then
  4384. if v2:FindFirstChild("Handle") then v2.Handle.Transparency = 0 end
  4385. end
  4386. if v2:FindFirstChild("face") then
  4387. v2.face.Transparency = 0
  4388. end
  4389. end
  4390. end
  4391. end)
  4392.  
  4393. addcmd('goto', 'go to a player',{},
  4394. function(args, speaker)
  4395. local players = getPlayer(args[1], speaker)
  4396. if players ~= nil and _char(players[1]):FindFirstChild("HumanoidRootPart") then
  4397. _char(admin).HumanoidRootPart.CFrame = _char(players[1]).HumanoidRootPart.CFrame
  4398. end
  4399. end)
  4400.  
  4401. addcmd('bring', 'bring a player to you',{},
  4402. function(args, speaker)
  4403. local players = getPlayer(args[1], speaker)
  4404. for i,v in pairs(players) do
  4405. if _char(v):FindFirstChild("HumanoidRootPart") then
  4406. _char(v).HumanoidRootPart.CFrame = _char(admin).HumanoidRootPart.CFrame
  4407. end
  4408. end
  4409. end)
  4410.  
  4411. addcmd('tp', 'teleport player 1 to player 2',{},
  4412. function(args, speaker)
  4413. local players1=getPlayer(args[1], speaker)
  4414. local players2=getPlayer(args[2], speaker)
  4415. if not players2[1] then return end
  4416. for i,v in pairs(players1) do
  4417. if _char(v):FindFirstChild("HumanoidRootPart") and _char(players2[1]):FindFirstChild("HumanoidRootPart") then
  4418. _char(v).HumanoidRootPart.CFrame = _char(players2[1]).HumanoidRootPart.CFrame
  4419. wait(0.1)
  4420. _char(v).HumanoidRootPart.CFrame = _char(players2[1]).HumanoidRootPart.CFrame
  4421. end
  4422. end
  4423. end)
  4424.  
  4425. addcmd('char', 'change a players appearance',{},
  4426. function(args, speaker)
  4427. local players = getPlayer(args[1], speaker)
  4428. if not args[1]or not args[2]then return end
  4429. local id=args[2]
  4430. if players ~= nil then
  4431. for i,v in pairs(players) do
  4432. gPlayers[v].CharacterAppearanceId = id
  4433. if _char(v):FindFirstChild("Head") then
  4434. _char(v).Head:Destroy()
  4435. end
  4436. end
  4437. end
  4438. end)
  4439.  
  4440. addcmd('speed', 'change a players walkspeed',{'ws'},
  4441. function(args, speaker)
  4442. local players = getPlayer(args[1], speaker)
  4443. if not args[1]or not args[2]then return end
  4444. local num=args[2]
  4445. for i,v in pairs(players) do
  4446. if _char(v):FindFirstChild("Humanoid") then
  4447. _char(v).Humanoid.WalkSpeed=tonumber(num)
  4448. end
  4449. end
  4450. end)
  4451.  
  4452. addcmd('gravity', 'change a players jump height',{'grav'},
  4453. function(args, speaker)
  4454. local players = getPlayer(args[1], speaker)
  4455. if not args[1]or not args[2]then return end
  4456. local num=args[2]
  4457. for i,v in pairs(players) do
  4458. if _char(v):FindFirstChild("Humanoid") then
  4459. _char(v).Humanoid.JumpPower=tonumber(num)
  4460. end
  4461. end
  4462. end)
  4463.  
  4464. addcmd('confuse', 'confusing...',{},
  4465. function(args, speaker)
  4466. local players = getPlayer(args[1], speaker)
  4467. for i,v in pairs(players) do
  4468. spawn(function()
  4469. if _char(v):FindFirstChild("Humanoid") then
  4470. _char(v).Humanoid.Name = "ConfusedNigga"
  4471. while true do
  4472. _char(v).ConfusedNigga.CameraOffset = Vector3.new(2, 4, 6)
  4473. _char(v).ConfusedNigga.WalkToPoint = Vector3.new(math.random(1,100), math.random(1,100), math.random(1,100))
  4474. wait(0.1)
  4475. end
  4476.  
  4477. end
  4478. end)
  4479. end
  4480. end)
  4481.  
  4482. addcmd('unconfuse', 'not confusing...',{},
  4483. function(args, speaker)
  4484. local players = getPlayer(args[1], speaker)
  4485. for i,v in pairs(players) do
  4486. spawn(function()
  4487. if _char(v):FindFirstChild("ConfusedNigga") then
  4488. _char(v).ConfusedNigga.Name = "Humanoid"
  4489. wait(0.3)
  4490. _char(v).Humanoid.CameraOffset = Vector3.new(0, 0, 0)
  4491.  
  4492. end
  4493. end)
  4494. end
  4495. end)
  4496.  
  4497. addcmd('cripple', 'cripples a player xddd',{'stun'},
  4498. function(args, speaker)
  4499. local players = getPlayer(args[1], speaker)
  4500. for i,v in pairs(players) do
  4501. if _char(v):FindFirstChild("Humanoid") then
  4502. _char(v).Humanoid.PlatformStand = true
  4503. end
  4504. end
  4505. end)
  4506.  
  4507. addcmd('uncripple', 'un cripples a player xddd',{'unstun'},
  4508. function(args, speaker)
  4509. local players = getPlayer(args[1], speaker)
  4510. for i,v in pairs(players) do
  4511. if _char(v):FindFirstChild("Humanoid") then
  4512. _char(v).Humanoid.PlatformStand = false
  4513. end
  4514. end
  4515. end)
  4516.  
  4517. addcmd('hipheight', 'adjusts hip height',{'hheight'},
  4518. function(args, speaker)
  4519. local players = getPlayer(args[1], speaker)
  4520. for i,v in pairs(players) do
  4521. if _char(v):FindFirstChild("Humanoid") then
  4522. _char(v).Humanoid.HipHeight = args[2]
  4523. end
  4524. end
  4525. end)
  4526.  
  4527. addcmd('time', 'change the time of day',{},
  4528. function(args, speaker)
  4529. if not args[1]then return end
  4530. local time_=tonumber(args[1])
  4531. Notify('Time set to ' .. args[1])
  4532. game.Lighting:SetMinutesAfterMidnight(time_*60)
  4533. end)
  4534.  
  4535. addcmd('kick', 'kick a player',{},
  4536. function(args, speaker)
  4537. local players = getPlayer(args[1], speaker)
  4538. for i,v in pairs(players) do
  4539. if args[1] == "all" then
  4540. Notify('Kicked everyone')
  4541. elseif args[1] == "others" then
  4542. Notify('Kicked others')
  4543. elseif args[1] == "friends" then
  4544. Notify('Kicked friends')
  4545. elseif args[1] == "nonfriends" then
  4546. Notify('Kicked non friends')
  4547. elseif args[1] == "team" then
  4548. Notify('Kicked your team')
  4549. elseif args[1] == "nonteam" then
  4550. Notify('Kicked the opposing team')
  4551. elseif args[1] == "guests" then
  4552. Notify('Kicked guests')
  4553. elseif args[1] == "nonadmins" then
  4554. Notify('Kicked nonadmins')
  4555. else
  4556. Notify('Kicked ' .. gPlayers[v].Name)
  4557. end
  4558. spawn(function()
  4559. function Kick(PLAYER)
  4560. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') and PLAYER.Character:FindFirstChild('Torso') then
  4561. PLAYER.Character.HumanoidRootPart.Position = Vector3.new(math.random(999000, 1001000), 10000, 0)
  4562. local Plat = Instance.new('SkateboardPlatform', PLAYER.Character) Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  4563. Plat.Name = 'IYkick'
  4564. Plat.Size = Vector3.new(100, 1, 100)
  4565. local PART = Instance.new('Part', PLAYER.Character)
  4566. PART.Position = Plat.Position - Vector3.new(0, 3, 0)
  4567. PART.Size = Vector3.new(100, 1, 100)
  4568. PART.Anchored = true
  4569.  
  4570. PART.Transparency = 1
  4571. Plat.Transparency = 1
  4572.  
  4573. repeat wait(1)
  4574. if PLAYER.Character and PLAYER.Character:FindFirstChild('HumanoidRootPart') then
  4575. Plat.Position = PLAYER.Character.HumanoidRootPart.Position
  4576. end
  4577. Kick(PLAYER)
  4578. until not game.Players:findFirstChild(PLAYER)
  4579. end
  4580. end
  4581. Kick(gPlayers[v])
  4582. end)
  4583. end
  4584. end)
  4585.  
  4586. addcmd('serverlock', 'lock teh server',{'slock'},
  4587. function(args, speaker)
  4588. slock = true
  4589. Notify('Locked Server')
  4590. end)
  4591.  
  4592. addcmd('unserverlock', 'unlock teh server',{'unslock'},
  4593. function(args, speaker)
  4594. slock = false
  4595. Notify('Unlocked Server')
  4596. end)
  4597.  
  4598. addcmd('unlockws', 'unlock the whole workspace',{'unlock'},
  4599. function(args, speaker)
  4600. Notify('Workspace unlocked')
  4601. wait(1)
  4602. local function unlock(instance)
  4603. for i,v in pairs(instance:GetChildren()) do
  4604. if v:IsA("BasePart") then
  4605. v.Locked = false
  4606. end
  4607. unlock(v)
  4608. end
  4609. end
  4610. unlock(workspace)
  4611. end)
  4612.  
  4613. addcmd('lockws', 'lock the whole workspace',{'lock'},
  4614. function(args, speaker)
  4615. Notify('Workspace locked')
  4616. wait(1)
  4617. local function lock(instance)
  4618. for i,v in pairs(instance:GetChildren()) do
  4619. if v:IsA("BasePart") then
  4620. v.Locked = true
  4621. end
  4622. lock(v)
  4623. end
  4624. end
  4625. lock(workspace)
  4626. end)
  4627.  
  4628. addcmd('unanchorws', 'unanchor the whole workspace',{'unanchor', 'unanchr'},
  4629. function(args, speaker)
  4630. local function unanchor(instance)
  4631. for i,v in pairs(instance:GetChildren()) do
  4632. if v:IsA("BasePart") then
  4633. v.Anchored=false
  4634. end
  4635. unanchor(v)
  4636. end
  4637. end
  4638. unanchor(workspace)
  4639. end)
  4640.  
  4641. addcmd('anchorws', 'unanchor the whole workspace',{'unanchor', 'anchor'},
  4642. function(args, speaker)
  4643. local function anchor(instance)
  4644. for i,v in pairs(instance:GetChildren()) do
  4645. if v:IsA("BasePart") then
  4646. v.Anchored=true
  4647. end
  4648. anchor(v)
  4649. end
  4650. end
  4651. anchor(workspace)
  4652. end)
  4653.  
  4654. addcmd('headshake', 'shakes a players head',{},
  4655. function(args, speaker)
  4656. local players = getPlayer(args[1], speaker)
  4657. for i,v in pairs(players) do
  4658. spawn(function()
  4659. local shaken = gPlayers[v].Character
  4660. for X = 1, math.huge, 0.2 do
  4661. wait()
  4662. shaken.Torso.Neck.C0 = CFrame.new(math.sin(X) / 1,1.5,0)
  4663. shaken.Torso.Neck.C1 = CFrame.new(0,0,0)
  4664. end
  4665. for X = 1, math.huge, 0.1 do
  4666. wait()
  4667. shaken.Torso.Neck.C0 = CFrame.new(0,1.5,0) * CFrame.fromAxisAngle(Vector3.new(0,1,0), X)
  4668. shaken.Torso.Neck.C1 = CFrame.new(0,0,0)
  4669. end
  4670. for _,c in pairs(game.Players:GetChildren()) do
  4671. c.Character.Head.Mesh.Scale = Vector3.new(100, 100, 100)
  4672. end
  4673. for _,c in pairs(game.Players:GetChildren()) do
  4674. c.Character.Head.Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  4675. end
  4676. end)
  4677. end
  4678. end)
  4679.  
  4680. addcmd('explorer', 'opens DEX',{},
  4681. function(args, speaker)
  4682. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  4683. end)
  4684.  
  4685. addcmd('firstp', 'forces player to go into first person',{},
  4686. function(args, speaker)
  4687. local players = getPlayer(args[1], speaker)
  4688. for i,v in pairs(players)do
  4689. gPlayers[v].CameraMode = "LockFirstPerson"
  4690. end
  4691. end)
  4692.  
  4693. addcmd('base', 'spawns a base',{},
  4694. function(args, speaker)
  4695. local pt = Instance.new("Part")
  4696. pt.BrickColor = BrickColor.new("Silver")
  4697. pt.Anchored = true
  4698. pt.CanCollide = true
  4699. pt.BottomSurface = "Weld"
  4700. pt.Parent = workspace
  4701. pt.Name = (math.random(1,1000000))
  4702. pt.Size = Vector3.new(1000, 1, 1000)
  4703. pt.Locked = true
  4704. Notify('Created new base')
  4705. end)
  4706.  
  4707. addcmd('fix', 'restores lighting and what not',{},
  4708. function(args, speaker)
  4709. game.Lighting.Ambient = origsettings.abt
  4710. game.Lighting.Brightness = origsettings.brt
  4711. game.Lighting.TimeOfDay = origsettings.time
  4712. game.Lighting.FogColor = origsettings.fclr
  4713. game.Lighting.FogEnd = origsettings.fe
  4714. game.Lighting.FogStart = origsettings.fs
  4715. local function dels(instance)
  4716. for i,v in pairs(instance:GetChildren())do
  4717. if v:IsA'Sound'then v:Destroy()end
  4718. dels(v)
  4719. end
  4720. end
  4721. dels(workspace)
  4722. for i,v in pairs(game.Lighting:GetChildren()) do
  4723. if v:IsA('Sky') then
  4724. v:Remove()
  4725. end
  4726. end
  4727. for i,v in pairs(game.Lighting:GetChildren()) do
  4728. if v:IsA('BloomEffect') then
  4729. v:Remove()
  4730. end
  4731. end
  4732. for i,v in pairs(game.Lighting:GetChildren()) do
  4733. if v:IsA('BlurEffect') then
  4734. v:Remove()
  4735. end
  4736. end
  4737. for i,v in pairs(game.Lighting:GetChildren()) do
  4738. if v:IsA('ColorCorrectionEffect') then
  4739. v:Remove()
  4740. end
  4741. end
  4742. for i,v in pairs(game.Lighting:GetChildren()) do
  4743. if v:IsA('SunRaysEffect') then
  4744. v:Remove()
  4745. end
  4746. end
  4747. end)
  4748.  
  4749. addcmd('thirdp', 'allows player to go into third person',{},
  4750. function(args, speaker)
  4751. local players = getPlayer(args[1], speaker)
  4752. for i,v in pairs(players)do
  4753. gPlayers[v].CameraMode = "Classic"
  4754. end
  4755. end)
  4756.  
  4757. addcmd('chat', 'forces player to chat what you input',{},
  4758. function(args, speaker)
  4759. local players = getPlayer(args[1], speaker)
  4760. for i,v in pairs(players)do
  4761. game.Chat:Chat(gPlayers[v].Character.Head, GLS(false, 1))
  4762. end
  4763. end)
  4764.  
  4765. addcmd('name', 'names player',{},
  4766. function(args, speaker)
  4767. local players = getPlayer(args[1], speaker)
  4768. for i,v in pairs(players) do
  4769. for a, mod in pairs(gPlayers[v].Character:children()) do
  4770. if mod:FindFirstChild("TAG") then
  4771. gPlayers[v].Character.Head.Transparency = 0
  4772. mod:Destroy()
  4773. end
  4774. end
  4775.  
  4776. local char = gPlayers[v].Character
  4777. local model = Instance.new("Model", char)
  4778. local clone = char.Head:Clone()
  4779. local hum = Instance.new("Humanoid", model)
  4780. local weld = Instance.new("Weld", clone)
  4781. model.Name = GLS(false, 1)
  4782. clone.Parent = model
  4783. hum.Name = "TAG"
  4784. hum.MaxHealth = 100
  4785. hum.Health = 100
  4786. weld.Part0 = clone
  4787. weld.Part1 = char.Head
  4788. char.Head.Transparency = 1
  4789. end
  4790. end)
  4791.  
  4792. addcmd('unname', 'unnames player',{},
  4793. function(args, speaker)
  4794. local players = getPlayer(args[1], speaker)
  4795. local name = (args[2])
  4796. for i,v in pairs(players) do
  4797. for a, mod in pairs(gPlayers[v].Character:children()) do
  4798. if mod:FindFirstChild("TAG") then
  4799. gPlayers[v].Character.Head.Transparency = 0
  4800. mod:Destroy()
  4801. end
  4802. end
  4803. end
  4804. end)
  4805.  
  4806. addcmd('damage', 'damages a player',{},
  4807. function(args, speaker)
  4808. local players = getPlayer(args[1], speaker)
  4809. for i,v in pairs(players) do
  4810. gPlayers[v].Character.Humanoid.Health = gPlayers[v].Character.Humanoid.Health - 25
  4811. end
  4812. end)
  4813.  
  4814. addcmd('view', 'views player',{},
  4815. function(args, speaker)
  4816. local players = getPlayer(args[1], speaker)
  4817. for i,v in pairs(players) do
  4818. game.Workspace.CurrentCamera.CameraSubject = gPlayers[v].Character
  4819. Notify('Viewing ' .. gPlayers[v].Name)
  4820. end
  4821. end)
  4822.  
  4823. addcmd('unview', 'stops viewing player',{},
  4824. function()
  4825. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4826. Notify('View turned off')
  4827. end)
  4828.  
  4829. addcmd('nolimbs', 'removes limbs from player',{},
  4830. function(args, speaker)
  4831. local players = getPlayer(args[1], speaker)
  4832. for i,v in pairs(players) do
  4833. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  4834. if v:IsA("BasePart") and
  4835. v.Name == "Right Leg" or
  4836. v.Name == "Left Leg" or
  4837. v.Name == "Right Arm" or
  4838. v.Name == "Left Arm" then
  4839. v:Remove()
  4840. end
  4841. end
  4842. end
  4843. end)
  4844.  
  4845. addcmd('box', 'creates a box around player',{},
  4846. function(args, speaker)
  4847. local players = getPlayer(args[1], speaker)
  4848. for i,v in pairs(players)do
  4849. local pchar=_char(v)
  4850. local SB = Instance.new("SelectionBox", pchar)
  4851. SB.Adornee = SB.Parent
  4852. end
  4853. end)
  4854.  
  4855. addcmd('nobox', 'takes away box from player',{'unbox'},
  4856. function(args, speaker)
  4857. local players = getPlayer(args[1], speaker)
  4858. for i,v in pairs(players)do
  4859. local pchar=_char(v)
  4860. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  4861. if v:IsA("SelectionBox") then
  4862. v:Destroy()
  4863. end
  4864. end
  4865. end
  4866. end)
  4867.  
  4868. addcmd('ghost', 'ghostifys player',{},
  4869. function(args, speaker)
  4870. local players = getPlayer(args[1], speaker)
  4871. for i,v in pairs(players)do
  4872. local pchar=gPlayers[v].Character
  4873. pchar.Head.Transparency = 0.5
  4874. pchar.Torso.Transparency = 0.5
  4875. pchar["Left Arm"].Transparency = 0.5
  4876. pchar["Right Arm"].Transparency = 0.5
  4877. pchar["Left Leg"].Transparency = 0.5
  4878. pchar["Right Leg"].Transparency = 0.5
  4879. pchar.Head.face.Transparency = 0.5
  4880. end
  4881. end)
  4882.  
  4883. addcmd('sphere', 'puts sphere around player',{},
  4884. function(args, speaker)
  4885. local players = getPlayer(args[1], speaker)
  4886. for i,v in pairs(players)do
  4887. local pchar=gPlayers[v].Character
  4888. local SS = Instance.new("SelectionSphere", pchar)
  4889. SS.Adornee = SS.Parent
  4890. end
  4891. end)
  4892.  
  4893. addcmd('unsphere', 'removes sphere around player',{},
  4894. function(args, speaker)
  4895. local players = getPlayer(args[1], speaker)
  4896. for i,v in pairs(players)do
  4897. local pchar=_char(v)
  4898. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  4899. if v:IsA("SelectionSphere") then
  4900. v:Destroy()
  4901. end
  4902. end
  4903. end
  4904. end)
  4905.  
  4906. addcmd('ambient','changes ambient',{},
  4907. function(args, speaker)
  4908. game.Lighting.Ambient = Color3.new(args[1],args[2],args[3])
  4909. end)
  4910.  
  4911. addcmd('fogend','changes the fogend',{},
  4912. function(args, speaker)
  4913. game.Lighting.FogEnd = args[1]
  4914. end)
  4915.  
  4916. addcmd('fogcolor','changes the fogs color',{},
  4917. function(args, speaker)
  4918. game.Lighting.FogColor = Color3.new(args[1],args[2],args[3])
  4919. end)
  4920.  
  4921. addcmd('jail','jails player',{},
  4922. function(args, speaker)
  4923. local players = getPlayer(args[1], speaker)
  4924. for i,v in pairs(players)do
  4925. local pchar=gPlayers[v].Character
  4926. local JailPlayer = DATA.JAIL:Clone()
  4927. JailPlayer.Parent = game.Workspace
  4928. JailPlayer:MoveTo(pchar.Torso.Position)
  4929. JailPlayer.Name = "JAIL_" .. gPlayers[v].Name
  4930. if pchar:FindFirstChild("HumanoidRootPart") then
  4931. pchar.HumanoidRootPart.CFrame = JailPlayer.MAIN.CFrame
  4932. end
  4933. end
  4934. end)
  4935.  
  4936. addcmd('unjail','unjails player',{},
  4937. function(args, speaker)
  4938. local players = getPlayer(args[1], speaker)
  4939. for i,v in pairs(players)do
  4940. game.Workspace["JAIL_" .. gPlayers[v].Name]:Destroy()
  4941. end
  4942. end)
  4943.  
  4944. addcmd('shutdown', 'shuts the server down',{},
  4945. function(args, speaker)
  4946. Notify('Shutting Down...')
  4947. wait(1)
  4948. workspace.Gravity = 1/0*0
  4949. end)
  4950.  
  4951. addcmd('animation','makes player animate',{'anim'},
  4952. function(args, speaker)
  4953. local players = getPlayer(args[1], speaker)
  4954. for i,v in pairs(players)do
  4955. local pchar = gPlayers[v].Character
  4956. local ID = args[2]
  4957.  
  4958. if args[2] == "climb" then
  4959. ID = "180436334"
  4960. end
  4961. if args[2] == "fall" then
  4962. ID = "180436148"
  4963. end
  4964. if args[2] == "jump" then
  4965. ID = "125750702"
  4966. end
  4967. if args[2] == "sit" then
  4968. ID = "178130996"
  4969. end
  4970. for _,x in pairs(gPlayers[v].Character.Animate:GetChildren()) do
  4971. if x:IsA("StringValue") then
  4972. for _,c in pairs(x:GetChildren()) do
  4973. if c:IsA("Animation") then
  4974. c.AnimationId = "rbxassetid://" .. ID
  4975. end
  4976. end
  4977. end
  4978. end
  4979. end
  4980. end)
  4981.  
  4982. addcmd('normal','turns player back to normal',{},
  4983. function(args, speaker)
  4984. local players = getPlayer(args[1], speaker)
  4985. for i,v in pairs(players)do
  4986. local pchar = gPlayers[v].Character
  4987.  
  4988. pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  4989. pchar.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,0) * CFrame.Angles(0,math.rad(90),0)
  4990. pchar.Torso["Left Shoulder"].C0 = CFrame.new(-1,0.5,0) * CFrame.Angles(0,math.rad(-90),0)
  4991. pchar.Torso["Right Hip"].C0 = CFrame.new(1,-1,0) * CFrame.Angles(0,math.rad(90),0)
  4992. pchar.Torso["Left Hip"].C0 = CFrame.new(-1,-1,0) * CFrame.Angles(0,math.rad(-90),0)
  4993.  
  4994. for i,v in pairs(pchar.Head:GetChildren()) do
  4995. if v:IsA("SpecialMesh") then
  4996. v:Destroy()
  4997. end
  4998. end
  4999.  
  5000. for i,v in pairs(pchar:GetChildren()) do
  5001. if v:IsA("Shirt") then
  5002. v:Destroy()
  5003. end
  5004. end
  5005.  
  5006. for i,v in pairs(pchar:GetChildren()) do
  5007. if v:IsA("Pants") then
  5008. v:Destroy()
  5009. end
  5010. end
  5011.  
  5012. if Player.Character:FindFirstChild("Shirt Graphic") ~= nil then
  5013. Player.Character["Shirt Graphic"].Graphic = ""
  5014. end
  5015.  
  5016. local HeadMesh = Instance.new("SpecialMesh", pchar.Head)
  5017. HeadMesh.MeshType = "Head"
  5018. HeadMesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  5019.  
  5020. pchar.Head.Transparency = 0
  5021. pchar.Torso.Transparency = 0
  5022. pchar["Left Arm"].Transparency = 0
  5023. pchar["Right Arm"].Transparency = 0
  5024. pchar["Left Leg"].Transparency = 0
  5025. pchar["Right Leg"].Transparency = 0
  5026.  
  5027. for i,v in pairs(pchar.Head:GetChildren()) do
  5028. if v:IsA("Decal") then
  5029. v:Destroy()
  5030. end
  5031. end
  5032.  
  5033. local face = Instance.new("Decal", pchar.Head)
  5034. face.Name = "face"
  5035. face.Texture = "rbxasset://textures/face.png"
  5036. face.Face = "Front"
  5037.  
  5038. for i,v in pairs(pchar:GetChildren()) do
  5039. if v:IsA("Seat") then
  5040. v:Destroy()
  5041. end
  5042. end
  5043.  
  5044. for i,v in pairs(pchar.Torso:GetChildren()) do
  5045. if v:IsA("Weld") then
  5046. v:Destroy()
  5047. end
  5048. end
  5049.  
  5050. for i,v in pairs(pchar.Torso:GetChildren()) do
  5051. if v:IsA("SpecialMesh") then
  5052. v:Destroy()
  5053. end
  5054. end
  5055.  
  5056. pchar["Body Colors"].HeadColor = BrickColor.new("Cool yellow")
  5057. pchar["Body Colors"].LeftArmColor = BrickColor.new("Cool yellow")
  5058. pchar["Body Colors"].LeftLegColor = BrickColor.new("Medium blue")
  5059. pchar["Body Colors"].RightArmColor = BrickColor.new("Cool yellow")
  5060. pchar["Body Colors"].RightLegColor = BrickColor.new("Medium blue")
  5061. pchar["Body Colors"].TorsoColor = BrickColor.new("Bright blue")
  5062. for _,v in pairs(Player.Character:GetChildren()) do
  5063. if v:IsA("Accessory") then
  5064. v:Destroy()
  5065. end
  5066. end
  5067. end
  5068. end)
  5069.  
  5070. addcmd('creeper','make the player a creeper',{'crpr'},
  5071. function(args, speaker)
  5072. local players = getPlayer(args[1], speaker)
  5073. for i,v in pairs(players)do
  5074. local pchar = gPlayers[v].Character
  5075. if gPlayers[v] and pchar and pchar:findFirstChild("Torso") then
  5076. if pchar:FindFirstChild("Shirt") then
  5077. pchar.Shirt.Parent = pchar.Torso
  5078. end
  5079. if pchar:FindFirstChild("Pants") then
  5080. pchar.Pants.Parent = pchar.Torso
  5081. end
  5082. if pchar:FindFirstChild("Shirt Graphic") then
  5083. pchar["Shirt Graphic"].Graphic = ""
  5084. end
  5085. for i,v in pairs(pchar:GetChildren()) do
  5086. if v:IsA("Accessory") then
  5087. v:Destroy()
  5088. end
  5089. end
  5090. pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  5091. pchar.Torso["Right Shoulder"].C0 = CFrame.new(0,-1.5,-.5) * CFrame.Angles(0,math.rad(90),0)
  5092. pchar.Torso["Left Shoulder"].C0 = CFrame.new(0,-1.5,-.5) * CFrame.Angles(0,math.rad(-90),0)
  5093. pchar.Torso["Right Hip"].C0 = CFrame.new(0,-1,.5) * CFrame.Angles(0,math.rad(90),0)
  5094. pchar.Torso["Left Hip"].C0 = CFrame.new(0,-1,.5) * CFrame.Angles(0,math.rad(-90),0)
  5095. pchar["Body Colors"].HeadColor = BrickColor.new("Bright green")
  5096. pchar["Body Colors"].LeftArmColor = BrickColor.new("Bright green")
  5097. pchar["Body Colors"].LeftLegColor = BrickColor.new("Bright green")
  5098. pchar["Body Colors"].RightArmColor = BrickColor.new("Bright green")
  5099. pchar["Body Colors"].RightLegColor = BrickColor.new("Bright green")
  5100. pchar["Body Colors"].TorsoColor = BrickColor.new("Bright green")
  5101. end
  5102. end
  5103. end)
  5104.  
  5105. addcmd('uncreeper','makes player back to normal',{},
  5106. function(args, speaker)
  5107. local players = getPlayer(args[1], speaker)
  5108. for i,v in pairs(players)do
  5109. execCmd("normal " .. gPlayers[v].Name, Player)
  5110. end
  5111. end)
  5112.  
  5113. addcmd('crash','crashes a player',{},
  5114. function(args, speaker)
  5115. local players = getPlayer(args[1], speaker)
  5116. for i,v in pairs(players)do
  5117. if args[1] == "all" then
  5118. Notify('Everyone has been crashed')
  5119. elseif args[1] == "others" then
  5120. Notify('Crashed others')
  5121. elseif args[1] == "friends" then
  5122. Notify('Crashed friends')
  5123. elseif args[1] == "nonfriends" then
  5124. Notify('Crashed non friends')
  5125. elseif args[1] == "team" then
  5126. Notify('Crashed your team')
  5127. elseif args[1] == "nonteam" then
  5128. Notify('Crashed the opposing team')
  5129. elseif args[1] == "guests" then
  5130. Notify('Crashed guests')
  5131. elseif args[1] == "nonadmins" then
  5132. Notify('Crashed nonadmins')
  5133. else
  5134. Notify(gPlayers[v].Name .. ' has been crashed')
  5135. end
  5136. wait(4)
  5137. local play = gPlayers[v]
  5138. if play ~= nil then
  5139. for i=1,3600 do
  5140. Instance.new("HopperBin",play.Backpack).Name = "nig"
  5141. end
  5142. wait()
  5143. for i=1,3600 do
  5144. Instance.new("HopperBin",play.Backpack).Name = "nog"
  5145. end
  5146. wait()
  5147. end
  5148. end
  5149. end)
  5150.  
  5151. addcmd('shrek', 'makes player shrek',{},
  5152. function(args, speaker)
  5153. local players = getPlayer(args[1], speaker)
  5154. for i,v in pairs(players) do
  5155. local pchar = gPlayers[v].Character
  5156. for i,v in pairs(pchar:GetChildren()) do
  5157. if v:IsA("Accessory") or v:IsA("CharacterMesh") or v:IsA("Shirt") or v:IsA("Pants")
  5158. then
  5159. v:Destroy()
  5160. end
  5161. end
  5162. for i,v in pairs(pchar.Head:GetChildren()) do
  5163. if v:IsA("Decal") or v:IsA("SpecialMesh") then
  5164. v:Destroy()
  5165. end
  5166. end
  5167.  
  5168. local mesh = Instance.new("SpecialMesh", pchar.Head)
  5169. mesh.MeshType = "FileMesh"
  5170. pchar.Head.Mesh.MeshId = "http://www.roblox.com/asset/?id=19999257"
  5171. pchar.Head.Mesh.Offset = Vector3.new(-0.1, 0.1, 0)
  5172. pchar.Head.Mesh.TextureId = "http://www.roblox.com/asset/?id=156397869"
  5173.  
  5174. local Shirt = Instance.new("Shirt", gPlayers[v].Character)
  5175. local Pants = Instance.new("Pants", gPlayers[v].Character)
  5176.  
  5177. Shirt.ShirtTemplate = "rbxassetid://133078194"
  5178. Pants.PantsTemplate = "rbxassetid://133078204"
  5179. end
  5180. end)
  5181.  
  5182. addcmd('unshrek','makes player back to normal',{},
  5183. function(args, speaker)
  5184. local players = getPlayer(args[1], speaker)
  5185. for i,v in pairs(players)do
  5186. execCmd("normal " .. gPlayers[v].Name, Player)
  5187. end
  5188. end)
  5189.  
  5190. addcmd('oof','good things happen',{},
  5191. function(args, speaker)
  5192. local players = getPlayer(args[1], speaker)
  5193. for i,v in pairs(players)do
  5194. spawn(function()
  5195. gPlayers[v].Character.Head.Died.Looped = true
  5196. wait(0.1)
  5197. gPlayers[v].Character.Head.Died.Playing = true
  5198. gPlayers[v].Character.Head.Died.Volume = 10
  5199. gPlayers[v].Character.Head.Died.Pitch = 0.5
  5200. execCmd("size " .. gPlayers[v].Name .. ' -1')
  5201. execCmd("hheight " .. gPlayers[v].Name .. ' 1000000000')
  5202. wait(5)
  5203. execCmd("explode " .. gPlayers[v].Name)
  5204. wait(0.1)
  5205. gPlayers[v].Character.Humanoid.Health = 0
  5206. end)
  5207. end
  5208. end)
  5209.  
  5210. addcmd('control','controls player',{},
  5211. function(args, speaker)
  5212. local players = getPlayer(args[1], speaker)
  5213. for i,v in pairs(players)do
  5214. local pchar = gPlayers[v].Character
  5215. if gPlayers[v] and pchar then
  5216. pchar.Humanoid.PlatformStand = true
  5217. local w = Instance.new("Weld", Player.Character.Torso)
  5218. w.Part0 = Player.Character.Torso
  5219. w.Part1 = pchar.Torso
  5220. local w2 = Instance.new("Weld", Player.Character.Head)
  5221. w2.Part0 = Player.Character.Head
  5222. w2.Part1 = pchar.Head
  5223. local w3 = Instance.new("Weld", Player.Character:findFirstChild("Right Arm"))
  5224. w3.Part0 = Player.Character:findFirstChild("Right Arm")
  5225. w3.Part1 = pchar:findFirstChild("Right Arm")
  5226. local w4 = Instance.new("Weld", Player.Character:findFirstChild("Left Arm"))
  5227. w4.Part0 = Player.Character:findFirstChild("Left Arm")
  5228. w4.Part1 = pchar:findFirstChild("Left Arm")
  5229. local w5 = Instance.new("Weld", Player.Character:findFirstChild("Right Leg"))
  5230. w5.Part0 = Player.Character:findFirstChild("Right Leg")
  5231. w5.Part1 = pchar:findFirstChild("Right Leg")
  5232. local w6 = Instance.new("Weld", Player.Character:findFirstChild("Left Leg"))
  5233. w6.Part0 = Player.Character:findFirstChild("Left Leg")
  5234. w6.Part1 = pchar:findFirstChild("Left Leg")
  5235. char.Head.face:Destroy()
  5236. for i,v in pairs(pchar:GetChildren()) do
  5237. if v:IsA("BasePart") then
  5238. v.CanCollide = false
  5239. end
  5240. end
  5241. for i,v in pairs(char:GetChildren()) do
  5242. if v:IsA("BasePart") then
  5243. v.Transparency = 1
  5244. elseif v:IsA("Accessory") then
  5245. v:Destroy()
  5246. end
  5247. end
  5248. pchar.Parent = char
  5249. pchar.Humanoid.Changed:connect(function()
  5250. pchar.Humanoid.PlatformStand = true
  5251. end)
  5252. end
  5253. end
  5254. end)
  5255.  
  5256. addcmd('nuke','nukes player',{},
  5257. function(args, speaker)
  5258. local players = getPlayer(args[1], speaker)
  5259. for i,v in pairs(players)do
  5260. local pchar = gPlayers[v].Character
  5261. if gPlayers[v] and pchar and pchar:FindFirstChild("Torso") then
  5262. local nuke = Instance.new("Part", game.Workspace)
  5263. nuke.Anchored = true
  5264. nuke.CanCollide = false
  5265. nuke.FormFactor = "Symmetric"
  5266. nuke.Shape = "Ball"
  5267. nuke.Size = Vector3.new(1,1,1)
  5268. nuke.BrickColor = BrickColor.new("New Yeller")
  5269. nuke.Transparency = 0.5
  5270. nuke.Reflectance = 0.2
  5271. nuke.TopSurface = 0
  5272. nuke.BottomSurface = 0
  5273. nuke.Touched:connect(function (hit)
  5274. if hit and hit.Parent then
  5275. local boom = Instance.new("Explosion", game.Workspace)
  5276. boom.Position = hit.Position
  5277. boom.BlastRadius = 11
  5278. boom.BlastPressure = math.huge
  5279. end
  5280. end)
  5281. local CF = pchar.Torso.CFrame
  5282. nuke.CFrame = CF
  5283. for i = 1,333 do
  5284. nuke.Size = nuke.Size + Vector3.new(3,3,3)
  5285. nuke.CFrame = CF
  5286. wait(1/44)
  5287. end
  5288. nuke:Destroy()
  5289. end
  5290. end
  5291. end)
  5292.  
  5293. addcmd('infect','infects player',{},
  5294. function(args, speaker)
  5295. local players = getPlayer(args[1], speaker)
  5296. for i,v in pairs(players)do
  5297. function infect(rip)
  5298. local pchar = gPlayers[v].Character
  5299. for i,v in pairs(pchar:GetChildren()) do
  5300. if v:IsA("Accessory") or v:IsA("Shirt") or v:IsA("Pants") then
  5301. v:Destroy()
  5302. end
  5303. end
  5304. if pchar.Torso:FindFirstChild("roblox") then
  5305. pchar.Torso.roblox:Destroy()
  5306. end
  5307. if pchar.Head:FindFirstChild("face") then
  5308. pchar.Head.face.Texture = "http://www.roblox.com/asset/?id=94634491"
  5309. end
  5310. if pchar:FindFirstChild("Body Colors") then
  5311. local Colors = pchar["Body Colors"]
  5312. local Skin = BrickColor.new("Pastel green")
  5313. local Clothes = BrickColor.new("Reddish brown")
  5314. Colors.HeadColor = Skin
  5315. Colors.LeftArmColor = Skin
  5316. Colors.RightArmColor = Skin
  5317. Colors.LeftLegColor = Clothes
  5318. Colors.RightLegColor = Clothes
  5319. Colors.TorsoColor = Clothes
  5320. end
  5321. local w1 = Instance.new("Weld", pchar)
  5322. w1.Part0 = pchar["Right Arm"]
  5323. w1.Part1 = pchar.Torso
  5324. w1.C0 = CFrame.new(-1.5, 0.5, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(0), math.rad(0))
  5325. local w2 = Instance.new("Weld", pchar)
  5326. w2.Part0 = pchar["Left Arm"]
  5327. w2.Part1 = pchar.Torso
  5328. w2.C0 = CFrame.new(1.5, 0.5, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(0), math.rad(0))
  5329. local rip = false
  5330. local connect1 = pchar["Left Arm"].Touched:connect(function(hit)
  5331. if connect1 == false then
  5332. connect1 = true
  5333. if game.Players:FindFirstChild(hit.Parent.Name) then
  5334. infect(game.Players[hit.Parent.Name])
  5335. end
  5336. wait(0.5)
  5337. connect1 = true
  5338. end
  5339. end)
  5340. local connect2 = pchar["Right Arm"].Touched:connect(function(hit)
  5341. if connect2 == false then
  5342. connect2 = true
  5343. if game.Players:FindFirstChild(hit.Parent.Name) then
  5344. infect(game.Players[hit.Parent.Name])
  5345. end
  5346. wait(0.5)
  5347. connect2 = true
  5348. end
  5349. end)
  5350. local IV = Instance.new("IntValue", pchar)
  5351. IV.Name = "Infected"
  5352. IV.Value = 0
  5353. IV.Changed:connect(function()
  5354. connect1:disconnect()
  5355. connect2:disconnect()
  5356. end)
  5357. end
  5358. infect(v)
  5359. end
  5360. end)
  5361.  
  5362. addcmd('uninfect','makes player back to normal',{},
  5363. function(args, speaker)
  5364. local players = getPlayer(args[1], speaker)
  5365. for i,v in pairs(players)do
  5366. execCmd("normal " .. gPlayers[v].Name, Player)
  5367. end
  5368. end)
  5369.  
  5370. addcmd('duck','makes players head a duck',{},
  5371. function(args, speaker)
  5372. local players = getPlayer(args[1], speaker)
  5373. for i,v in pairs(players)do
  5374. local pchar = gPlayers[v].Character
  5375. for i,v in pairs(pchar.Torso:GetChildren()) do
  5376. if v:IsA("Decal") then
  5377. v:Destroy()
  5378. end
  5379. end
  5380. for i,v in pairs(pchar:GetChildren()) do
  5381. if v:IsA("Accessory") then
  5382. v:Destroy()
  5383. end
  5384. end
  5385. local duck = Instance.new("SpecialMesh", pchar.Torso)
  5386. duck.MeshType = "FileMesh"
  5387. duck.MeshId = "http://www.roblox.com/asset/?id=9419831"
  5388. duck.TextureId = "http://www.roblox.com/asset/?id=9419827"
  5389. duck.Scale = Vector3.new(5, 5, 5)
  5390. pchar.Head.Transparency = 1
  5391. pchar["Left Arm"].Transparency = 1
  5392. pchar["Right Arm"].Transparency = 1
  5393. pchar["Left Leg"].Transparency = 1
  5394. pchar["Right Leg"].Transparency = 1
  5395. pchar.Head.face.Transparency = 1
  5396. end
  5397. end)
  5398.  
  5399. addcmd('unduck','makes player back to normal',{},
  5400. function(args, speaker)
  5401. local players = getPlayer(args[1], speaker)
  5402. for i,v in pairs(players)do
  5403. execCmd("normal " .. gPlayers[v].Name, Player)
  5404. end
  5405. end)
  5406.  
  5407. addcmd('mesh','makes a player into a mesh',{},
  5408. function(args, speaker)
  5409. local players = getPlayer(args[1], speaker)
  5410. for i,v in pairs(players)do
  5411. local pchar = gPlayers[v].Character
  5412. for i,v in pairs(pchar.Torso:GetChildren()) do
  5413. if v:IsA("Decal") then
  5414. v:Destroy()
  5415. end
  5416. end
  5417. for i,v in pairs(pchar:GetChildren()) do
  5418. if v:IsA("Accessory") then
  5419. v:Destroy()
  5420. end
  5421. end
  5422. pchar.Head.Transparency = 1
  5423. pchar["Left Arm"].Transparency = 1
  5424. pchar["Right Arm"].Transparency = 1
  5425. pchar["Left Leg"].Transparency = 1
  5426. pchar["Right Leg"].Transparency = 1
  5427. pchar.Head.face.Transparency = 1
  5428. local msh = Instance.new("SpecialMesh", pchar.Torso)
  5429. msh.MeshType = "FileMesh"
  5430. msh.Scale = Vector3.new(3, 3, 3)
  5431. msh.MeshId = "http://www.roblox.com/asset/?id=" ..args[2]
  5432. msh.TextureId = "http://www.roblox.com/asset/?id=" .. args[3]
  5433. msh.Scale = Vector3.new(3, 3, 3)
  5434. end
  5435. end)
  5436.  
  5437. addcmd('disable','removes players humanoid',{},
  5438. function(args, speaker)
  5439. local players = getPlayer(args[1], speaker)
  5440. for i,v in pairs(players)do
  5441. local pchar = gPlayers[v].Character
  5442. if pchar:FindFirstChild("Humanoid") then
  5443. pchar.Humanoid.Name = "HUMANOID_" .. gPlayers[v].Name
  5444. local humanoid = pchar["HUMANOID_" .. gPlayers[v].Name]
  5445. humanoid.Parent = game.ContextActionService
  5446. if args[1] == "all" then
  5447. Notify('Everyone has been disabled')
  5448. elseif args[1] == "others" then
  5449. Notify('Others have been disabled')
  5450. elseif args[1] == "friends" then
  5451. Notify('Friends have been disabled')
  5452. elseif args[1] == "nonfriends" then
  5453. Notify('Non friends have been disabled')
  5454. elseif args[1] == "team" then
  5455. Notify('Your team has been disabled')
  5456. elseif args[1] == "nonteam" then
  5457. Notify('The opossing team been disabled')
  5458. elseif args[1] == "guests" then
  5459. Notify('Guests have been disabled')
  5460. elseif args[1] == "nonadmins" then
  5461. Notify('Nonadmins have been disabled')
  5462. else
  5463. Notify(gPlayers[v].Name .. ' has been disabled')
  5464. end
  5465. end
  5466. end
  5467. end)
  5468.  
  5469. addcmd('enable','gives player humanoid',{},
  5470. function(args, speaker)
  5471. local players = getPlayer(args[1], speaker)
  5472. for i,v in pairs(players)do
  5473. local pchar = gPlayers[v].Character
  5474. if pchar:FindFirstChild("Humanoid") then
  5475. return
  5476. else
  5477. local humanoid = game.ContextActionService["HUMANOID_" .. gPlayers[v].Name]
  5478. humanoid.Parent = pchar
  5479. humanoid.Name = "Humanoid"
  5480. if args[1] == "all" then
  5481. Notify('Everyone has been enabled')
  5482. elseif args[1] == "others" then
  5483. Notify('Others have been enabled')
  5484. elseif args[1] == "friends" then
  5485. Notify('Friends have been enabled')
  5486. elseif args[1] == "nonfriends" then
  5487. Notify('Non friends have been enabled')
  5488. elseif args[1] == "team" then
  5489. Notify('Your team has been enabled')
  5490. elseif args[1] == "nonteam" then
  5491. Notify('The opossing team has been enabled')
  5492. elseif args[1] == "guests" then
  5493. Notify('Guests have been enabled')
  5494. elseif args[1] == "nonadmins" then
  5495. Notify('Nonadmins have been enabled')
  5496. elseif args[1] == "admins" then
  5497. Notify('Admins have been enabled')
  5498. else
  5499. Notify(gPlayers[v].Name .. ' has been enabled')
  5500. end
  5501. end
  5502. end
  5503. end)
  5504.  
  5505. addcmd('size','changes size of player',{},
  5506. function(args, speaker)
  5507. local players = getPlayer(args[1], speaker)
  5508. for i,v in pairs(players)do
  5509. local pchar = gPlayers[v].Character
  5510. local function scale(chr,scl)
  5511.  
  5512. for _,v in pairs(pchar:GetChildren()) do
  5513. if v:IsA("Accessory") then
  5514. v:Clone()
  5515. v.Parent = game.Lighting
  5516. end
  5517. end
  5518.  
  5519. local Head = chr['Head']
  5520. local Torso = chr['Torso']
  5521. local LA = chr['Left Arm']
  5522. local RA = chr['Right Arm']
  5523. local LL = chr['Left Leg']
  5524. local RL = chr['Right Leg']
  5525. local HRP = chr['HumanoidRootPart']
  5526.  
  5527. wait(0.1)
  5528.  
  5529. Head.formFactor = 3
  5530. Torso.formFactor = 3
  5531. LA.formFactor = 3
  5532. RA.formFactor = 3
  5533. LL.formFactor = 3
  5534. RL.formFactor = 3
  5535. HRP.formFactor = 3
  5536.  
  5537. Head.Size = Vector3.new(scl * 2, scl, scl)
  5538. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  5539. LA.Size = Vector3.new(scl, scl * 2, scl)
  5540. RA.Size = Vector3.new(scl, scl * 2, scl)
  5541. LL.Size = Vector3.new(scl, scl * 2, scl)
  5542. RL.Size = Vector3.new(scl, scl * 2, scl)
  5543. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  5544.  
  5545. local Motor1 = Instance.new('Motor6D', Torso)
  5546. Motor1.Part0 = Torso
  5547. Motor1.Part1 = Head
  5548. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  5549. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  5550. Motor1.Name = "Neck"
  5551.  
  5552. local Motor2 = Instance.new('Motor6D', Torso)
  5553. Motor2.Part0 = Torso
  5554. Motor2.Part1 = LA
  5555. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  5556. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  5557. Motor2.Name = "Left Shoulder"
  5558.  
  5559. local Motor3 = Instance.new('Motor6D', Torso)
  5560. Motor3.Part0 = Torso
  5561. Motor3.Part1 = RA
  5562. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  5563. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  5564. Motor3.Name = "Right Shoulder"
  5565.  
  5566. local Motor4 = Instance.new('Motor6D', Torso)
  5567. Motor4.Part0 = Torso
  5568. Motor4.Part1 = LL
  5569. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  5570. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  5571. Motor4.Name = "Left Hip"
  5572.  
  5573. local Motor5 = Instance.new('Motor6D', Torso)
  5574. Motor5.Part0 = Torso
  5575. Motor5.Part1 = RL
  5576. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  5577. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  5578. Motor5.Name = "Right Hip"
  5579.  
  5580. local Motor6 = Instance.new('Motor6D', HRP)
  5581. Motor6.Part0 = HRP
  5582. Motor6.Part1 = Torso
  5583. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  5584. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  5585.  
  5586. end
  5587.  
  5588. scale(pchar, args[2])
  5589.  
  5590. for _,v in pairs(game.Lighting:GetChildren()) do
  5591. if v:IsA("Accessory") then
  5592. v.Parent = pchar
  5593. end
  5594. end
  5595. end
  5596. end)
  5597.  
  5598. addcmd('clone','clones player',{},
  5599. function(args, speaker)
  5600. local players = getPlayer(args[1], speaker)
  5601. for i,v in pairs(players)do
  5602. local pchar = gPlayers[v].Character
  5603. pchar.Archivable = true
  5604. local clone = pchar:Clone()
  5605. clone.Parent = game.Workspace
  5606. clone:MoveTo(pchar:GetModelCFrame().p)
  5607. clone:MakeJoints()
  5608. pchar.Archivable = false
  5609. end
  5610. end)
  5611.  
  5612. addcmd('spin','spins player',{},
  5613. function(args, speaker)
  5614. local players = getPlayer(args[1], speaker)
  5615. for i,v in pairs(players)do
  5616. local pchar = gPlayers[v].Character
  5617. for i,v in pairs(pchar.Torso:GetChildren()) do
  5618. if v.Name == "Spinning" then
  5619. v:Destroy()
  5620. end
  5621. end
  5622. local Torso = pchar.Torso
  5623. local BG = Instance.new("BodyGyro", Torso)
  5624. BG.Name = "Spinning"
  5625. BG.maxTorque = Vector3.new(0, math.huge, 0)
  5626. BG.P = 11111
  5627. BG.cframe = Torso.CFrame
  5628. repeat wait(1/44)
  5629. BG.CFrame = BG.CFrame * CFrame.Angles(0,math.rad(30),0)
  5630. until not BG or BG.Parent ~= Torso
  5631. end
  5632. end)
  5633.  
  5634. addcmd('unspin','stops spinning player',{},
  5635. function(args, speaker)
  5636. local players = getPlayer(args[1], speaker)
  5637. for i,v in pairs(players)do
  5638. local pchar = gPlayers[v].Character
  5639. for i,v in pairs(pchar.Torso:GetChildren()) do
  5640. if v.Name == "Spinning" then
  5641. v:Destroy()
  5642. end
  5643. end
  5644. end
  5645. end)
  5646.  
  5647. addcmd('dog','makes player a dog',{},
  5648. function(args, speaker)
  5649. local players = getPlayer(args[1], speaker)
  5650. for i,v in pairs(players)do
  5651. local pchar = gPlayers[v].Character
  5652. if pchar:FindFirstChild("Shirt") then
  5653. pchar.Shirt:Destroy()
  5654. end
  5655. if pchar:FindFirstChild("Pants") then
  5656. pchar.Pants:Destroy()
  5657. end
  5658. if pchar:FindFirstChild("Shirt Graphic") then
  5659. pchar["Shirt Graphic"].Graphic = ""
  5660. end
  5661. pchar.Torso.Transparency = 1
  5662. pchar.Torso.Neck.C0 = CFrame.new(0,-.5,-2) * CFrame.Angles(math.rad(90),math.rad(180),0)
  5663. pchar.Torso["Right Shoulder"].C0 = CFrame.new(.5,-1.5,-1.5) * CFrame.Angles(0,math.rad(90),0)
  5664. pchar.Torso["Left Shoulder"].C0 = CFrame.new(-.5,-1.5,-1.5) * CFrame.Angles(0,math.rad(-90),0)
  5665. pchar.Torso["Right Hip"].C0 = CFrame.new(1.5,-1,1.5) * CFrame.Angles(0,math.rad(90),0)
  5666. pchar.Torso["Left Hip"].C0 = CFrame.new(-1.5,-1,1.5) * CFrame.Angles(0,math.rad(-90),0)
  5667. local FakeTorso = Instance.new("Seat", pchar)
  5668. FakeTorso.Name = "FakeTorso"
  5669. FakeTorso.FormFactor = "Symmetric"
  5670. FakeTorso.TopSurface = 0
  5671. FakeTorso.BottomSurface = 0
  5672. FakeTorso.Size = Vector3.new(3,1,4)
  5673. FakeTorso.BrickColor = BrickColor.new("Brown")
  5674. FakeTorso.CFrame = pchar.Torso.CFrame
  5675. local BF = Instance.new("BodyForce", FakeTorso)
  5676. BF.Force = Vector3.new(0, FakeTorso:GetMass() * 196.25, 0)
  5677. local W = Instance.new("Weld", pchar.Torso)
  5678. W.Part0 = pchar.Torso
  5679. W.Part1 = FakeTorso
  5680. W.C0 = CFrame.new(0,-.5,0)
  5681. local BC = pchar["Body Colors"]
  5682. BC.HeadColor = BrickColor.new("Brown")
  5683. BC.LeftArmColor = BrickColor.new("Brown")
  5684. BC.LeftLegColor = BrickColor.new("Brown")
  5685. BC.RightArmColor = BrickColor.new("Brown")
  5686. BC.RightLegColor = BrickColor.new("Brown")
  5687. BC.TorsoColor = BrickColor.new("Brown")
  5688. end
  5689. end)
  5690.  
  5691. addcmd('undog','makes player back to normal',{},
  5692. function(args, speaker)
  5693. local players = getPlayer(args[1], speaker)
  5694. for i,v in pairs(players)do
  5695. execCmd("normal " .. gPlayers[v].Name, Player)
  5696. end
  5697. end)
  5698.  
  5699. addcmd('loopheal','loop heals player',{},
  5700. function(args, speaker)
  5701. local players = getPlayer(args[1], speaker)
  5702. for i,v in pairs(players)do
  5703. spawn(function()
  5704. local pchar = gPlayers[v].Character
  5705. if pchar:FindFirstChild("LoopHeal") then
  5706. pchar.LoopHeal.Name = "NotLoopHeal"
  5707. wait(0.1)
  5708. pchar.NotLoopHeal:Destroy()
  5709. end
  5710. local LoopHeal = Instance.new("StringValue", pchar)
  5711. LoopHeal.Name = "LoopHeal"
  5712. repeat wait(0.1)
  5713. pchar.Humanoid.Health = pchar.Humanoid.MaxHealth
  5714. until LoopHeal.Name == "NotLoopHeal"
  5715. end)
  5716. end
  5717. end)
  5718.  
  5719. addcmd('unloopheal','stops loop heal on player',{'noloopheal'},
  5720. function(args, speaker)
  5721. local players = getPlayer(args[1], speaker)
  5722. for i,v in pairs(players)do
  5723. local pchar = gPlayers[v].Character
  5724. if pchar:FindFirstChild("LoopHeal") then
  5725. pchar.LoopHeal.Name = "NotLoopHeal"
  5726. wait(0.1)
  5727. pchar.NotLoopHeal:Destroy()
  5728. end
  5729. end
  5730. end)
  5731.  
  5732. addcmd('fling','flings player',{},
  5733. function(args, speaker)
  5734. local players = getPlayer(args[1], speaker)
  5735. for i,v in pairs(players)do
  5736. local pchar = gPlayers[v].Character
  5737. if pchar:FindFirstChild("Humanoid") then
  5738. local xran
  5739. local zran
  5740. repeat
  5741. xran = math.random(-9999,9999)
  5742. until math.abs(xran) >= 5555
  5743. repeat
  5744. zran = math.random(-9999,9999)
  5745. until math.abs(zran) >= 5555
  5746. pchar.Humanoid.Sit = true
  5747. pchar.Torso.Velocity = Vector3.new(0,0,0)
  5748. local BF = Instance.new("BodyForce", pchar.Torso)
  5749. BF.force = Vector3.new(xran * 4, 9999 * 5, zran * 4)
  5750. end
  5751. end
  5752. end)
  5753.  
  5754. addcmd('nograv','makes player have moon gravity',{''},
  5755. function(args, speaker)
  5756. local players = getPlayer(args[1], speaker)
  5757. for i,v in pairs(players)do
  5758. local pchar = gPlayers[v].Character
  5759. for i,v in pairs(pchar.Torso:GetChildren()) do
  5760. if v.Name == "NoGrav" then
  5761. v:Destroy()
  5762. end
  5763. end
  5764. local BF = Instance.new("BodyForce", pchar.Torso)
  5765. BF.Name = "NoGrav"
  5766. BF.Force = Vector3.new(0,2700,0)
  5767. end
  5768. end)
  5769.  
  5770. addcmd('grav','makes player have normal gravity',{''},
  5771. function(args, speaker)
  5772. local players = getPlayer(args[1], speaker)
  5773. for i,v in pairs(players)do
  5774. local pchar = gPlayers[v].Character
  5775. for i,v in pairs(pchar.Torso:GetChildren()) do
  5776. if v.Name == "NoGrav" then
  5777. v:Destroy()
  5778. end
  5779. end
  5780. end
  5781. end)
  5782.  
  5783. addcmd('seizure','makes player have a seizure',{''},
  5784. function(args, speaker)
  5785. local players = getPlayer(args[1], speaker)
  5786. for i,v in pairs(players)do
  5787. local pchar = gPlayers[v].Character
  5788. if pchar:FindFirstChild("Seizure") then
  5789.  
  5790. end
  5791. local Seizure = Instance.new("StringValue", pchar)
  5792. Seizure.Name = "Seizure"
  5793. pchar.Humanoid.PlatformStand = true
  5794. repeat wait()
  5795. pchar.Torso.Velocity = Vector3.new(math.random(-10,10),-5,math.random(-10,10))
  5796. pchar.Torso.RotVelocity = Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  5797. until Seizure.Name == "NotSeizure"
  5798. end
  5799. end)
  5800.  
  5801. addcmd('unseizure','makes player stop having a seizure',{''},
  5802. function(args, speaker)
  5803. local players = getPlayer(args[1], speaker)
  5804. for i,v in pairs(players)do
  5805. local pchar = gPlayers[v].Character
  5806. if pchar:FindFirstChild("Seizure") then
  5807. pchar.Humanoid.PlatformStand = false
  5808. pchar.Seizure.Name = "NotSeizure"
  5809. wait(0.1)
  5810. pchar.NotSeizure:Destroy()
  5811. end
  5812. end
  5813. end)
  5814.  
  5815. addcmd('m','makes a global message',{'message'},
  5816. function(args, speaker)
  5817. local MSG = GLS(false, 0)
  5818. local newMSG = GLS(false, 0)
  5819. _G.msg(MSG)
  5820. end)
  5821.  
  5822. addcmd('paper','makes player thin as paper',{''},
  5823. function(args, speaker)
  5824. local players = getPlayer(args[1], speaker)
  5825. for i,v in pairs(players)do
  5826. local pchar = gPlayers[v].Character
  5827. local LA = DATA.Paper:Clone()
  5828. LA.Parent = pchar["Left Arm"]
  5829. local RA = DATA.Paper:Clone()
  5830. RA.Parent = pchar["Right Arm"]
  5831. local LL = DATA.Paper:Clone()
  5832. LL.Parent = pchar["Left Leg"]
  5833. local RL = DATA.Paper:Clone()
  5834. RL.Parent = pchar["Right Leg"]
  5835. local T = DATA.Paper:Clone()
  5836. T.Parent = pchar.Torso
  5837. local H = DATA.Paper:Clone()
  5838. H.Parent = pchar.Head
  5839. pchar.Head.face:Destroy()
  5840. end
  5841. end)
  5842.  
  5843. addcmd('particles','gives a player particles',{''},
  5844. function(args, speaker)
  5845. local players = getPlayer(args[1], speaker)
  5846. for i,v in pairs(players)do
  5847. local char = gPlayers[v].Character
  5848. for i,v in pairs(char.Torso:GetChildren()) do
  5849. if v:IsA('ParticleEmitter') then
  5850. v:destroy()
  5851. end
  5852. end
  5853. local prt = Instance.new('ParticleEmitter', char.Torso)
  5854. prt.Texture = 'rbxassetid://' .. args[2]
  5855. prt.Rate = 10
  5856. prt.SpreadAngle = Vector2.new(50, 50)
  5857. end
  5858. end)
  5859.  
  5860. addcmd('unparticles','gives a player particles',{'noparticles'},
  5861. function(args, speaker)
  5862. local players = getPlayer(args[1], speaker)
  5863. for i,v in pairs(players)do
  5864. local char = gPlayers[v].Character
  5865. for i,v in pairs(char.Torso:GetChildren()) do
  5866. if v:IsA('ParticleEmitter') then
  5867. v:destroy()
  5868. end
  5869. end
  5870. end
  5871. end)
  5872.  
  5873. addcmd('punish','punishs player',{''},
  5874. function(args, speaker)
  5875. local players = getPlayer(args[1], speaker)
  5876. for i,v in pairs(players)do
  5877. local pchar = gPlayers[v].Character
  5878. pchar.Parent = game.Lighting
  5879. end
  5880. end)
  5881.  
  5882. addcmd('unpunish','unpunishs player',{''},
  5883. function(args, speaker)
  5884. local players = getPlayer(args[1], speaker)
  5885. for i,v in pairs(players)do
  5886. if game.Lighting:FindFirstChild("" .. gPlayers[v].Name) then
  5887. game.Lighting:FindFirstChild("" .. gPlayers[v].Name).Parent = game.Workspace
  5888. end
  5889. end
  5890. end)
  5891.  
  5892. addcmd('disco','disco party',{''},
  5893. function(args, speaker)
  5894. Disco = true
  5895. if Disco == true then
  5896. repeat wait(0.3)
  5897. game.Lighting.Ambient = Color3.new(math.random(),math.random(),math.random())
  5898. until Disco == false
  5899. end
  5900. end)
  5901.  
  5902. addcmd('undisco','rip disco party',{''},
  5903. function(args, speaker)
  5904. Disco = false
  5905. wait(0.1)
  5906. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  5907. end)
  5908.  
  5909. Floating = false
  5910. Fly = false
  5911.  
  5912. addcmd('float', 'makes player float',{},
  5913. function(args,speaker)
  5914. Floating = true
  5915. local players = getPlayer(args[1], speaker)
  5916. for _,v in pairs(players) do
  5917. local pchar = gPlayers[v].Character
  5918. if gPlayers[v] and pchar and not pchar:FindFirstChild("Float") then
  5919. spawn(function()
  5920. local float = DATA.Float:Clone()
  5921. float.Parent = pchar
  5922. float.CFrame = pchar.Torso.CFrame * CFrame.new(0,-3.5,0)
  5923. spawn(function()
  5924. while wait(0.1) do
  5925. if pchar:FindFirstChild("Float") then
  5926. float.CFrame = pchar.Torso.CFrame * CFrame.new(0,-3.5,0)
  5927. else
  5928. break
  5929. end
  5930. end
  5931. end)
  5932. end)
  5933. end
  5934. end
  5935. end)
  5936.  
  5937. addcmd('unfloat','disables floating',{},
  5938. function(args, speaker)
  5939. Floating = false
  5940. local players = getPlayer(args[1], speaker)
  5941. for i,v in pairs(players)do
  5942. local pchar = gPlayers[v].Character
  5943. if pchar:FindFirstChild("Float") then
  5944. pchar.Float:Destroy()
  5945. end
  5946. end
  5947. end)
  5948.  
  5949. local Clip = true
  5950.  
  5951. addcmd('noclip','enables noclip',{},
  5952. function(args, speaker)
  5953. Notify('NoClip enabled')
  5954. Clip = false
  5955. wait(1)
  5956. Name = game.Players.LocalPlayer.Name
  5957. game:GetService('Players').LocalPlayer.PlayerGui.ChildAdded:connect(function (NC)
  5958. delay(0, function()
  5959. if NC.Name ~= "Memes" then
  5960. NC:Destroy()
  5961. end
  5962. end)
  5963. end)
  5964. game:GetService('RunService').Stepped:connect(function ()
  5965. game.Workspace[Name].Torso.CanCollide = Clip
  5966. game.Workspace[Name].Head.CanCollide = Clip
  5967. end)
  5968. game.Workspace[Name].Torso.Changed:connect(function()
  5969. game.Workspace[Name].Torso.CanCollide = Clip
  5970. game.Workspace[Name].Head.CanCollide = Clip
  5971. end)
  5972. end)
  5973.  
  5974. addcmd('clip','disables noclip',{},
  5975. function(args, speaker)
  5976. Notify('NoClip disabled')
  5977. Clip = true
  5978. end)
  5979.  
  5980. wait(0.1)
  5981.  
  5982. addcmd('prefix','changes prefix',{},
  5983. function(args, speaker)
  5984. cmdprefix = args[1]
  5985. Notify('Set prefix to "' .. args[1] .. '"')
  5986. end)
  5987.  
  5988. addcmd('respawn','respawns',{},
  5989. function(args, speaker)
  5990. local players = getPlayer(args[1], speaker)
  5991. for i,v in pairs(players) do
  5992. local M = Instance.new('Model', gWorkspace) M.Name = 'respawn_iy'
  5993. local H = Instance.new('Humanoid', M)
  5994. local T = Instance.new('Part', M) T.Name = 'Torso' T.CanCollide = false T.Transparency = 1
  5995. gPlayers[v].Character = M
  5996. end
  5997. end)
  5998.  
  5999. addcmd('version','shows version',{''},
  6000. function(args, speaker)
  6001. Notify("Version is " .. Version)
  6002. end)
  6003.  
  6004. Mouse.KeyDown:connect(function (Key)
  6005. if Key:byte() == 29 then
  6006. if Fly == false then
  6007. execCmd("fly me", Player)
  6008. Fly = true
  6009. elseif Fly == true then
  6010. execCmd("unfly me", Player)
  6011. Fly = false
  6012. end
  6013. end
  6014. end)
  6015.  
  6016. -------------------
  6017. ----Command bar----
  6018. -------------------
  6019.  
  6020. CMDbar = Instance.new('ScreenGui', game.CoreGui)
  6021. CMDbar.Name = 'GUI'
  6022. cmdBAR = Instance.new('TextBox', CMDbar)
  6023. cmdBAR.Name = 'CMDbar'
  6024. cmdBAR.Active = true
  6025. cmdBAR.BackgroundColor = BrickColor.new(0,0,0)
  6026. cmdBAR.BackgroundTransparency = 0.5
  6027. cmdBAR.BorderColor = BrickColor.new(255,255,255)
  6028. cmdBAR.BorderSizePixel = 1
  6029. cmdBAR.Position = UDim2.new(0, 0, 0.6, 0)
  6030. cmdBAR.Size = UDim2.new(0,200,0,20)
  6031. cmdBAR.Font = 'SourceSans'
  6032. cmdBAR.FontSize = 'Size18'
  6033. cmdBAR.Text = 'Press ; to Execute a Command'
  6034. cmdBAR.TextColor = BrickColor.new(255,255,255)
  6035. cmdBAR.TextStrokeColor3 = Color3.new(0,0,0)
  6036.  
  6037. -------------------
  6038. ----Data Folder----
  6039. -------------------
  6040.  
  6041. DATA = Instance.new('Folder', game.ContextActionService)
  6042. DATA.Name = 'Data'
  6043.  
  6044. Paper = Instance.new('BlockMesh', DATA)
  6045. Paper.Name = 'Paper'
  6046. Paper.Scale = Vector3.new(1,1,0.1)
  6047.  
  6048. ayylmao = Instance.new('Hat', DATA)
  6049. ayylmao.Name = 'ayylmao'
  6050. ayyHandle = Instance.new('Part', ayylmao)
  6051. ayyHandle.Name = 'Handle'
  6052. ayyHandle.Size = Vector3.new(2,2.4,2)
  6053. ayyHandle.FormFactor = 'Plate'
  6054. ayyMesh = Instance.new('SpecialMesh', ayyHandle)
  6055. ayyMesh.Scale = Vector3.new(1,1.02,1)
  6056. ayyMesh.MeshType = 'FileMesh'
  6057. ayyMesh.MeshId = 'http://www.roblox.com/asset/?id=13827689'
  6058. ayyMesh.TextureId = 'http://www.roblox.com/asset/?id=13827796'
  6059.  
  6060. Float = Instance.new('Part', DATA)
  6061. Float.Name = 'Float'
  6062. Float.Transparency = 1
  6063. Float.Size = Vector3.new(6,1,6)
  6064. Float.Anchored = true
  6065.  
  6066. ---------------------------
  6067. --Commands GUI properties--
  6068. ---------------------------
  6069.  
  6070. cmdGUI = Instance.new('ScreenGui', DATA)
  6071. cmdGUI.Name = 'CMDs'
  6072. cmdMAIN = Instance.new('Frame', cmdGUI)
  6073. cmdMAIN.Name = 'MAIN'
  6074. cmdMAIN.Active = true
  6075. cmdMAIN.BackgroundColor = BrickColor.new(0,0,0)
  6076. cmdMAIN.BackgroundTransparency = 0.5
  6077. cmdMAIN.BorderColor = BrickColor.new(0,0,0)
  6078. cmdMAIN.BorderSizePixel = 0
  6079. cmdMAIN.Position = UDim2.new(0, -250, 1, -200)
  6080. cmdMAIN.Size = UDim2.new(0,185,0,15)
  6081. cmdMAIN.Draggable = true
  6082. cmdCMDs = Instance.new('ScrollingFrame', cmdMAIN)
  6083. cmdCMDs.Name = 'CMDs'
  6084. cmdCMDs.BackgroundColor = BrickColor.new(0,0,0)
  6085. cmdCMDs.BackgroundTransparency = 0.8
  6086. cmdCMDs.BorderColor = BrickColor.new(0,0,0)
  6087. cmdCMDs.BorderSizePixel = 0
  6088. cmdCMDs.Position = UDim2.new(0,0,0,15)
  6089. cmdCMDs.Size = UDim2.new(0,200,0,150)
  6090. cmdCMDs.CanvasSize = UDim2.new(0,0,0,0)
  6091. cmdCMDs.TopImage = 'rbxasset://textures/blackBkg_square.png'
  6092. cmdCMDs.MidImage = 'rbxasset://textures/blackBkg_square.png'
  6093. cmdCMDs.BottomImage = 'rbxasset://textures/blackBkg_square.png'
  6094. cmdCMDs.ScrollBarThickness = 5
  6095. cmdExit = Instance.new('TextButton', cmdMAIN)
  6096. cmdExit.Name = 'Exit'
  6097. cmdExit.BackgroundColor = BrickColor.new(255,0,0)
  6098. cmdExit.BackgroundTransparency = 0.5
  6099. cmdExit.BorderColor = BrickColor.new(255,0,0)
  6100. cmdExit.BorderSizePixel = 0
  6101. cmdExit.Position = UDim2.new(0,185,0,0)
  6102. cmdExit.Size = UDim2.new(0,15,0,15)
  6103. cmdExit.Text = ""
  6104.  
  6105. cmdEx = Instance.new('TextLabel', cmdMAIN)
  6106. cmdEx.Name = 'Example'
  6107. cmdEx.BackgroundColor = BrickColor.new(0,0,0)
  6108. cmdEx.BackgroundTransparency = 0.8
  6109. cmdEx.BorderColor = BrickColor.new(0,0,0)
  6110. cmdEx.BorderSizePixel = 0
  6111. cmdEx.Position = UDim2.new(0,5,0,20)
  6112. cmdEx.Size = UDim2.new(0,190,0,20)
  6113. cmdEx.Visible = false
  6114. cmdEx.TextColor = BrickColor.new(255,255,255)
  6115. cmdEx.TextXAlignment = 'Left'
  6116.  
  6117. espMAIN = Instance.new('BillboardGui', DATA)
  6118. espMAIN.Name = 'MAIN'
  6119. espMAIN.AlwaysOnTop = true
  6120. espMAIN.ExtentsOffset = Vector3.new(0,1,0)
  6121. espMAIN.Size = UDim2.new(0,5,0,5)
  6122. espMAIN.StudsOffset = Vector3.new(0,1,0)
  6123. espDot = Instance.new('Frame', espMAIN)
  6124. espDot.BackgroundColor = BrickColor.new(42,181,255)
  6125. espDot.BackgroundTransparency = 0.3
  6126. espDot.BorderSizePixel = 0
  6127. espDot.Position = UDim2.new(-0.5,0,-0.5,0)
  6128. espDot.Size = UDim2.new(2,0,2,0)
  6129. espDot.Visible = false
  6130. espDot.ZIndex = 10
  6131. espName = Instance.new('TextLabel', espMAIN)
  6132. espName.Name = 'Name'
  6133. espName.BackgroundColor = BrickColor.new(0,0,0)
  6134. espName.BackgroundTransparency = 1
  6135. espName.BorderColor = BrickColor.new(0,0,0)
  6136. espName.BorderSizePixel = 0
  6137. espName.Position = UDim2.new(0,0,0,-35)
  6138. espName.Size = UDim2.new(1,0,10,0)
  6139. espName.Visible = false
  6140. espName.ZIndex = 10
  6141.  
  6142. -------------------------
  6143. ----Notify properties----
  6144. -------------------------
  6145.  
  6146. notifyMAIN = Instance.new('ScreenGui', DATA)
  6147. notifyMAIN.Name = 'Notification'
  6148. notifyNOT = Instance.new('Frame', notifyMAIN)
  6149. notifyNOT.Name = 'NOTIFY'
  6150. notifyNOT.BackgroundColor = BrickColor.new(0,0,0)
  6151. notifyNOT.BackgroundTransparency = 0.5
  6152. notifyNOT.BorderColor = BrickColor.new(0,0,0)
  6153. notifyNOT.BorderSizePixel = 2
  6154. notifyNOT.Position = UDim2.new(0,0,-0.06,0)
  6155. notifyNOT.Size = UDim2.new(1,0,0,25)
  6156. notifyNOTE = Instance.new('TextLabel', notifyNOT)
  6157. notifyNOTE.Name = 'NOTE'
  6158. notifyNOTE.BackgroundColor = BrickColor.new(255,255,255)
  6159. notifyNOTE.BackgroundTransparency = 1
  6160. notifyNOTE.BorderColor = BrickColor.new(255,255,255)
  6161. notifyNOTE.BorderSizePixel = 0
  6162. notifyNOTE.Size = UDim2.new(1,0,1,0)
  6163. notifyNOTE.ZIndex = 10
  6164. notifyNOTE.FontSize = 'Size18'
  6165. notifyNOTE.Font = 'SourceSans'
  6166. notifyNOTE.Text = 'NOTIFY'
  6167. notifyNOTE.TextColor = BrickColor.new(255,255,255)
  6168. notifyNOTE.TextStrokeColor3 = Color3.new(0,0,0)
  6169. notifyNOTE.TextStrokeTransparency = 0.8
  6170.  
  6171. modJAIL = Instance.new('Model', DATA)
  6172. modJAIL.Name = 'JAIL'
  6173. botJAIL = Instance.new('Part', modJAIL)
  6174. botJAIL.Name = 'BOTTOM'
  6175. botJAIL.BrickColor = BrickColor.new('Black')
  6176. botJAIL.Transparency = 0.5
  6177. botJAIL.Position = Vector3.new(-6.2,0.5,-11.6)
  6178. botJAIL.Anchored = true
  6179. botJAIL.Locked = true
  6180. botJAIL.Size = Vector3.new(6,1,6)
  6181. botJAIL.TopSurface = 'Smooth'
  6182. botJAIL.BottomSurface = 'Smooth'
  6183. topJAIL = Instance.new('Part', modJAIL)
  6184. topJAIL.Name = 'BOTTOM'
  6185. topJAIL.BrickColor = BrickColor.new('Black')
  6186. topJAIL.Transparency = 0.5
  6187. topJAIL.Position = Vector3.new(-6.2,7.5,-11.6)
  6188. topJAIL.Anchored = true
  6189. topJAIL.Locked = true
  6190. topJAIL.Size = Vector3.new(6,1,6)
  6191. topJAIL.TopSurface = 'Smooth'
  6192. topJAIL.BottomSurface = 'Smooth'
  6193. p1 = Instance.new('Part', modJAIL)
  6194. p1.Name = 'MAIN'
  6195. p1.BrickColor = BrickColor.new('Black')
  6196. p1.Transparency = 1
  6197. p1.Position = Vector3.new(-8.7,4,-11.6)
  6198. p1.Rotation = Vector3.new(-180,0,-180)
  6199. p1.Anchored = true
  6200. p1.Locked = true
  6201. p1.Size = Vector3.new(1,6,4)
  6202. p1.TopSurface = 'Smooth'
  6203. p1.BottomSurface = 'Smooth'
  6204. p2 = Instance.new('Part', modJAIL)
  6205. p2.BrickColor = BrickColor.new('Black')
  6206. p2.Transparency = 0.5
  6207. p2.Position = Vector3.new(-3.7,4,-14.1)
  6208. p2.Anchored = true
  6209. p2.Locked = true
  6210. p2.Size = Vector3.new(1,6,1)
  6211. p2.TopSurface = 'Smooth'
  6212. p2.BottomSurface = 'Smooth'
  6213. p3 = Instance.new('Part', modJAIL)
  6214. p3.BrickColor = BrickColor.new('Black')
  6215. p3.Transparency = 0.5
  6216. p3.Position = Vector3.new(-8.7,4,-9.1)
  6217. p3.Anchored = true
  6218. p3.Locked = true
  6219. p3.Size = Vector3.new(1,6,1)
  6220. p3.TopSurface = 'Smooth'
  6221. p3.BottomSurface = 'Smooth'
  6222. p4 = Instance.new('Part', modJAIL)
  6223. p4.BrickColor = BrickColor.new('Black')
  6224. p4.Transparency = 0.5
  6225. p4.Position = Vector3.new(-3.7,4,-9.1)
  6226. p4.Anchored = true
  6227. p4.Locked = true
  6228. p4.Size = Vector3.new(1,6,1)
  6229. p4.TopSurface = 'Smooth'
  6230. p4.BottomSurface = 'Smooth'
  6231. p5 = Instance.new('Part', modJAIL)
  6232. p5.BrickColor = BrickColor.new('Black')
  6233. p5.Transparency = 0.5
  6234. p5.Position = Vector3.new(-8.7,4,-14.1)
  6235. p5.Anchored = true
  6236. p5.Locked = true
  6237. p5.Size = Vector3.new(1,6,1)
  6238. p5.TopSurface = 'Smooth'
  6239. p5.BottomSurface = 'Smooth'
  6240. p6 = Instance.new('Part', modJAIL)
  6241. p6.BrickColor = BrickColor.new('Black')
  6242. p6.Transparency = 1
  6243. p6.Position = Vector3.new(-6.2,4,-14.1)
  6244. p6.Rotation = Vector3.new(0,90,0)
  6245. p6.Anchored = true
  6246. p6.Locked = true
  6247. p6.Size = Vector3.new(1,6,4)
  6248. p6.TopSurface = 'Smooth'
  6249. p6.BottomSurface = 'Smooth'
  6250. p7 = Instance.new('Part', modJAIL)
  6251. p7.BrickColor = BrickColor.new('Black')
  6252. p7.Transparency = 1
  6253. p7.Position = Vector3.new(-3.7,4,-11.6)
  6254. p7.Anchored = true
  6255. p7.Locked = true
  6256. p7.Size = Vector3.new(1,6,4)
  6257. p7.TopSurface = 'Smooth'
  6258. p7.BottomSurface = 'Smooth'
  6259. p8 = Instance.new('Part', modJAIL)
  6260. p8.BrickColor = BrickColor.new('Black')
  6261. p8.Transparency = 1
  6262. p8.Position = Vector3.new(-6.2,4,-9.1)
  6263. p8.Rotation = Vector3.new(0,90,0)
  6264. p8.Anchored = true
  6265. p8.Locked = true
  6266. p8.Size = Vector3.new(1,6,4)
  6267. p8.TopSurface = 'Smooth'
  6268. p8.BottomSurface = 'Smooth'
  6269.  
  6270. addcmd('ayylmao','ayy lmao',{'alien'},
  6271. function(args, speaker)
  6272. local players = getPlayer(args[1], speaker)
  6273. for i,v in pairs(players)do
  6274. local pchar = gPlayers[v].Character
  6275. if pchar:FindFirstChild("Shirt") then
  6276. pchar.Shirt:Destroy()
  6277. end
  6278. if pchar:FindFirstChild("Pants") then
  6279. pchar.Pants:Destroy()
  6280. end
  6281. if pchar:FindFirstChild("Shirt Graphic") then
  6282. pchar["Shirt Graphic"].Graphic = ""
  6283. end
  6284. for i,v in pairs(pchar:GetChildren()) do
  6285. if v:IsA("Accessory") then
  6286. v:Destroy()
  6287. end
  6288. end
  6289. local ayylmao = DATA.ayylmao:Clone()
  6290. ayylmao.Parent = pchar
  6291. local BC = pchar["Body Colors"]
  6292. BC.HeadColor = BrickColor.new("Fossil")
  6293. BC.LeftArmColor = BrickColor.new("Fossil")
  6294. BC.LeftLegColor = BrickColor.new("Fossil")
  6295. BC.RightArmColor = BrickColor.new("Fossil")
  6296. BC.RightLegColor = BrickColor.new("Fossil")
  6297. BC.TorsoColor = BrickColor.new("Fossil")
  6298. end
  6299. end)
  6300.  
  6301. ----------------------
  6302. -----Commands GUI-----
  6303. ----------------------
  6304. CMDsFolder = Instance.new("Folder", game.CoreGui)
  6305. for i,v in pairs(CMDs) do
  6306. CMDsValue = Instance.new("StringValue", CMDsFolder)
  6307. CMDsValue.Value = v
  6308. CMDsValue.RobloxLocked = true
  6309. end
  6310. cmdOpen = false
  6311. local function commands()
  6312. if cmdOpen == false then
  6313. cmdOpen = true
  6314. local cmds = DATA.CMDs:Clone()
  6315. cmds.Parent = game.CoreGui
  6316. local CMDsV = CMDsFolder:GetChildren()
  6317. for i = 1, #CMDsV do
  6318. local YSize = 25
  6319. local Position = ((i * YSize) - YSize)
  6320. local newcmd = cmds.MAIN.Example:Clone()
  6321. newcmd.Parent = cmds.MAIN.CMDs
  6322. newcmd.Visible = true
  6323. newcmd.Position = UDim2.new(0,5,0, Position + 5)
  6324. newcmd.Text = "" .. CMDsV[i].Value
  6325. cmds.MAIN.CMDs.CanvasSize = UDim2.new(0,0,0, Position + 30)
  6326. cmdwin = game.CoreGui.CMDs
  6327. cmdwin.MAIN:TweenPosition(UDim2.new(0,15,1,-200),"Out","Quint",0.3,true)
  6328. end
  6329. end
  6330. end
  6331.  
  6332. addcmd('cmds','prints cmds',{},
  6333. function(args, speaker)
  6334. commands()
  6335. end)
  6336.  
  6337. -----------------
  6338. ---Command Bar---
  6339. -----------------
  6340. CMDbar.CMDbar.FocusLost:connect(function(enterpressed)
  6341. if enterpressed and CMDbar.CMDbar.Text ~= "" then
  6342. spawn(function ()
  6343. execCmd(CMDbar.CMDbar.Text, Player)
  6344. end)
  6345. end
  6346. CMDbar.CMDbar:TweenPosition(UDim2.new(0, -500, 0.6, 0), "InOut", "Quad", 0.5, true, nil)
  6347. end)
  6348.  
  6349. Mouse.KeyDown:connect(function(Key)
  6350. if Key:byte() == 59 then
  6351. CMDbar.CMDbar:TweenPosition(UDim2.new(0.03, 0, 0.6, 0), "InOut", "Quad", 0.5, true, nil)
  6352. CMDbar.CMDbar:CaptureFocus()
  6353. end
  6354. end)
  6355.  
  6356. ----------------
  6357. --ESP function--
  6358. ----------------
  6359. local ESP = false
  6360. local track = false
  6361. function Create(base, team)
  6362. local MAIN = DATA.MAIN:Clone()
  6363. local F = MAIN.DOT
  6364. local ESP = MAIN.NAME
  6365.  
  6366. MAIN.Parent = Player.PlayerGui
  6367. MAIN.Adornee = base
  6368.  
  6369. F.Visible = true
  6370.  
  6371. ESP.Text = base.Parent.Name:upper()
  6372. ESP.Visible = true
  6373. end
  6374. function Clear()
  6375. for _,v in pairs(Player.PlayerGui:children()) do
  6376. if v.Name == "MAIN" and v:IsA("BillboardGui") then
  6377. v:Destroy()
  6378. end
  6379. end
  6380. end
  6381. function Find()
  6382. Clear()
  6383. track = true
  6384. spawn(function()
  6385. while wait() do
  6386. if track then
  6387. Clear()
  6388. for i,v in pairs(game.Players:players()) do
  6389. if v.Character and v.Character.Head then
  6390. Create(v.Character.Head, true)
  6391. end
  6392. end
  6393. end
  6394. wait(1)
  6395. end
  6396. end)
  6397. end
  6398. Mouse.KeyDown:connect(function(Key)
  6399. if Key:byte() == 30 then
  6400. if ESP == false then
  6401. Find()
  6402. ESP = true
  6403. elseif ESP == true then
  6404. Clear()
  6405. track = false
  6406. ESP = false
  6407. end
  6408. end
  6409. end)
  6410.  
  6411. ---------------------------------
  6412. ----Notify animation/movement----
  6413. ---------------------------------
  6414. local NOTIFY = DATA.Notification
  6415. NOTIFY.Parent = game.CoreGui
  6416. local usingNOTE = false
  6417. function Notify(msg)
  6418. if usingNOTE == false then
  6419. if NOTIFY.NOTIFY and NOTIFY.NOTIFY.NOTE then
  6420. spawn(function()
  6421. NOTIFY.NOTIFY:TweenPosition(UDim2.new(0, 0, 0, 0), "InOut", "Quad", 0.5, true, nil)
  6422. NOTIFY.NOTIFY.NOTE.Text = msg
  6423. usingNOTE = true
  6424. wait(3.5)
  6425. NOTIFY.NOTIFY:TweenPosition(UDim2.new(0,0,-0.2,0), "InOut", "Quad", 0.5, true, nil)
  6426. usingNOTE = false
  6427. end)
  6428. end
  6429. end
  6430. end
  6431.  
  6432. -------------------------
  6433. --Startup notifications--
  6434. -------------------------
  6435. o1 = Instance.new("ScreenGui")
  6436. o2 = Instance.new("Frame")
  6437. o3 = Instance.new("Frame")
  6438. o4 = Instance.new("Frame")
  6439. o5 = Instance.new("ScrollingFrame")
  6440. o6 = Instance.new("TextLabel")
  6441. o7 = Instance.new("ScrollingFrame")
  6442. o8 = Instance.new("TextLabel")
  6443. o9 = Instance.new("Frame")
  6444. o10 = Instance.new("ScrollingFrame")
  6445. o11 = Instance.new("ScrollingFrame")
  6446. o1.Name = "IntroGui"
  6447. o1.Parent = game.CoreGui
  6448. o2.Name = "MainFrame"
  6449. o2.Parent = o1
  6450. o2.Size = UDim2.new(1,0,1,0)
  6451. o2.BackgroundColor3 = Color3.new(0, 0, 0)
  6452. o2.BackgroundTransparency = 1
  6453. o2.BorderSizePixel = 0
  6454. o3.Name = "Intro"
  6455. o3.Parent = o2
  6456. o3.Size = UDim2.new(1,0,1,0)
  6457. o3.BackgroundColor3 = Color3.new(0, 0, 0)
  6458. o3.BackgroundTransparency = 1
  6459. o3.BorderSizePixel = 0
  6460. o3.ZIndex = 2
  6461. o4.Name = "presents"
  6462. o4.Parent = o3
  6463. o4.Position = UDim2.new(0,0,1,0)
  6464. o4.Size = UDim2.new(1,0,1,0)
  6465. o4.Position = UDim2.new(0,0,1,0)
  6466. o4.BackgroundColor3 = Color3.new(0, 0, 0)
  6467. o4.BackgroundTransparency = 0.69999998807907
  6468. o4.BorderSizePixel = 0
  6469. o4.ZIndex = 3
  6470. o5.Name = "text1"
  6471. o5.Parent = o4
  6472. o5.Position = UDim2.new(0,0,0.5,-50)
  6473. o5.Size = UDim2.new(1,0,0,100)
  6474. o5.Position = UDim2.new(0,0,0.5,-50)
  6475. o5.CanvasSize = UDim2.new(0,0,0,0)
  6476. o5.BackgroundColor3 = Color3.new(1, 1, 1)
  6477. o5.BackgroundTransparency = 1
  6478. o5.BorderSizePixel = 0
  6479. o5.ZIndex = 3
  6480. o5.ScrollBarThickness = 0
  6481. o6.Name = "MainTL"
  6482. o6.Parent = o5
  6483. o6.Position = UDim2.new(0,0,0,100)
  6484. o6.Size = UDim2.new(1,0,0,100)
  6485. o6.Text = "Infinite Yield"
  6486. o6.Position = UDim2.new(0,0,0,100)
  6487. o6.BackgroundColor3 = Color3.new(1, 1, 1)
  6488. o6.BackgroundTransparency = 1
  6489. o6.BorderSizePixel = 0
  6490. o6.ZIndex = 5
  6491. o6.Font = Enum.Font.Highway
  6492. o6.FontSize = Enum.FontSize.Size14
  6493. o6.TextColor3 = Color3.new(1, 1, 1)
  6494. o6.TextScaled = true
  6495. o6.TextWrapped = true
  6496. o7.Name = "text2"
  6497. o7.Parent = o4
  6498. o7.Position = UDim2.new(0,0,0.5,50)
  6499. o7.Size = UDim2.new(1,0,0,30)
  6500. o7.Position = UDim2.new(0,0,0.5,50)
  6501. o7.CanvasSize = UDim2.new(0,0,0,0)
  6502. o7.BackgroundColor3 = Color3.new(1, 1, 1)
  6503. o7.BackgroundTransparency = 1
  6504. o7.BorderSizePixel = 0
  6505. o7.ZIndex = 3
  6506. o7.ScrollBarThickness = 0
  6507. o8.Name = "MainTL"
  6508. o8.Parent = o7
  6509. o8.Position = UDim2.new(0,0,0,-31)
  6510. o8.Size = UDim2.new(1,0,0,30)
  6511. o8.Text = "Admin Commands"
  6512. o8.Position = UDim2.new(0,0,0,-31)
  6513. o8.BackgroundColor3 = Color3.new(1, 1, 1)
  6514. o8.BackgroundTransparency = 1
  6515. o8.BorderSizePixel = 0
  6516. o8.ZIndex = 5
  6517. o8.Font = Enum.Font.Highway
  6518. o8.FontSize = Enum.FontSize.Size36
  6519. o8.TextColor3 = Color3.new(1, 1, 1)
  6520. o8.TextWrapped = true
  6521. o9.Name = "gametitle"
  6522. o9.Parent = o3
  6523. o9.Position = UDim2.new(0,0,1,0)
  6524. o9.Size = UDim2.new(1,0,1,0)
  6525. o9.Position = UDim2.new(0,0,1,0)
  6526. o9.BackgroundColor3 = Color3.new(0, 0, 0)
  6527. o9.BackgroundTransparency = 0.69999998807907
  6528. o9.BorderSizePixel = 0
  6529. o9.ZIndex = 3
  6530. o10.Name = "text1"
  6531. o10.Parent = o9
  6532. o10.Position = UDim2.new(0,0,0.5,-50)
  6533. o10.Size = UDim2.new(1,0,0,100)
  6534. o10.Position = UDim2.new(0,0,0.5,-50)
  6535. o10.CanvasSize = UDim2.new(0,0,0,0)
  6536. o10.BackgroundColor3 = Color3.new(1, 1, 1)
  6537. o10.BackgroundTransparency = 1
  6538. o10.BorderSizePixel = 0
  6539. o10.ZIndex = 3
  6540. o10.ScrollBarThickness = 0
  6541. o11.Name = "text2"
  6542. o11.Parent = o9
  6543. o11.Position = UDim2.new(0,0,0.5,50)
  6544. o11.Size = UDim2.new(1,0,0,40)
  6545. o11.Position = UDim2.new(0,0,0.5,50)
  6546. o11.CanvasSize = UDim2.new(0,0,0,0)
  6547. o11.BackgroundColor3 = Color3.new(1, 1, 1)
  6548. o11.BackgroundTransparency = 1
  6549. o11.BorderSizePixel = 0
  6550. o11.ZIndex = 3
  6551. o11.ScrollBarThickness = 0
  6552. wait(1)
  6553. local presents = game.CoreGui.IntroGui.MainFrame.Intro.presents
  6554. local presents_text1_mtl = presents.text1.MainTL
  6555. local presents_text2_mtl = presents.text2.MainTL
  6556. local gtitle = game.CoreGui.IntroGui.MainFrame.Intro.gametitle
  6557.  
  6558. presents:TweenPosition(UDim2.new(0,0,0,0),"Out","Quad",0)
  6559. wait(0.5)
  6560. presents_text1_mtl:TweenPosition(UDim2.new(0,0,0.5,-54),"Out","Quad",1)
  6561. wait(0.5)
  6562. presents_text2_mtl:TweenPosition(UDim2.new(0,0,0.5,-18),"Out","Quad",0.3)
  6563. wait(3)
  6564. presents:TweenPosition(UDim2.new(0,0,-1,0),"Out","Quad",0.5)
  6565. gtitle:TweenPosition(UDim2.new(0,0,0,0),"Out","Quad",0.5)
  6566. wait(0.6)
  6567. gtitle:TweenPosition(UDim2.new(0,0,1,0),"Out","Quad",0.5)
  6568. presents:TweenPosition(UDim2.new(0,0,-1,-38),"Out","Quad",0)
  6569. wait(0.1)
  6570. if game.Workspace.FilteringEnabled == true then
  6571. NOTIFY.NOTIFY.BorderColor = BrickColor.new(255,0,0)
  6572. Notify('Filtering Status: ENABLED!')
  6573. elseif game.Workspace.FilteringEnabled == false then
  6574. NOTIFY.NOTIFY.BorderColor = BrickColor.new(0,255,0)
  6575. Notify('Filtering Status: Disabled.')
  6576. end
  6577. wait(4)
  6578. o1:Destroy()
  6579. NOTIFY.NOTIFY.BorderColor = BrickColor.new(255,255,255)
  6580. local IY = Instance.new("ScreenGui")
  6581. local IYM = Instance.new("Frame")
  6582. local TextLabel = Instance.new("TextLabel")
  6583. IY.Name = "IY"
  6584. IY.Parent = game.CoreGui
  6585. IYM.Name = "IYM"
  6586. IYM.Parent = IY
  6587. IYM.BackgroundTransparency = 1
  6588. IYM.Position = UDim2.new(0, 0, 0, 50)
  6589. IYM.Size = UDim2.new(1, -10, 1, -10)
  6590. TextLabel.Parent = IYM
  6591. TextLabel.BackgroundTransparency = 1
  6592. TextLabel.Position = UDim2.new(0.00300000003, 0, 0.25, 10)
  6593. TextLabel.Size = UDim2.new(1, -14, 1, 0)
  6594. TextLabel.Font = Enum.Font.SourceSansItalic
  6595. TextLabel.FontSize = Enum.FontSize.Size18
  6596. TextLabel.Text = "Thanks for using Infinite Yield v3.9.5. Say ;cmds for commands."
  6597. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  6598. TextLabel.TextStrokeTransparency = 0.75
  6599. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  6600. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  6601. wait(2)
  6602. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  6603. wait(0.01)
  6604. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  6605. wait(0.01)
  6606. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  6607. wait(0.01)
  6608. IYM.TextLabel.TextStrokeColor3 = Color3.new(1,1,1)
  6609. wait(0.05)
  6610. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  6611. wait(0.01)
  6612. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  6613. wait(0.01)
  6614. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  6615. wait(0.01)
  6616. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.2,0.2,0.2)
  6617. wait(0.01)
  6618. IYM.TextLabel.TextStrokeColor3 = Color3.new(0,0,0)
  6619. wait(0.01)
  6620. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.2,0.2,0.2)
  6621. wait(0.01)
  6622. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  6623. wait(0.01)
  6624. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  6625. wait(0.01)
  6626. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  6627. wait(0.01)
  6628. IYM.TextLabel.TextStrokeColor3 = Color3.new(1,1,1)
  6629. wait(0.05)
  6630. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  6631. wait(0.01)
  6632. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  6633. wait(0.01)
  6634. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  6635. wait(0.01)
  6636. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.2,0.2,0.2)
  6637. wait(0.01)
  6638. IYM.TextLabel.TextStrokeColor3 = Color3.new(0,0,0)
  6639. wait(1)
  6640. local Asset = game:GetService("MarketplaceService"):GetProductInfo(937297244)
  6641. wait(1)
  6642. if Asset.Name == "Infinite Yield 3.9.5" then
  6643. print('Infinite Yield is up to date! (Version ' .. Version .. ')')
  6644. UTD = true
  6645. else
  6646. UTD = false
  6647. -- Objects
  6648. local Update = Instance.new("ScreenGui")
  6649. local Notification = Instance.new("Frame")
  6650. local Help = Instance.new("Frame")
  6651. local helpframe = Instance.new("Frame")
  6652. local Help_2 = Instance.new("Frame")
  6653. local Notice = Instance.new("Frame")
  6654. local TextLabel = Instance.new("TextLabel")
  6655. local OKButton = Instance.new("TextButton")
  6656. local Notice_2 = Instance.new("Frame")
  6657. local TextLabel_2 = Instance.new("TextLabel")
  6658. local ButtonSeparator = Instance.new("Frame")
  6659. local HelpButton = Instance.new("TextButton")
  6660. local OKButton_2 = Instance.new("TextButton")
  6661. local Bar = Instance.new("Frame")
  6662.  
  6663. -- Properties
  6664.  
  6665. Update.Name = "Update"
  6666. Update.Parent = game.CoreGui
  6667. Notification.Name = "Notification"
  6668. Notification.Parent = Update
  6669. Notification.BackgroundColor3 = Color3.new(0, 0, 0)
  6670. Notification.BackgroundTransparency = 0.5
  6671. Notification.BorderSizePixel = 0
  6672. Notification.Size = UDim2.new(1, 0, 0, 65)
  6673. Help.Name = "Help"
  6674. Help.Parent = Notification
  6675. Help.BackgroundColor3 = Color3.new(0, 0, 0)
  6676. Help.BackgroundTransparency = 1
  6677. Help.BorderSizePixel = 0
  6678. Help.Position = UDim2.new(0, 0, 0, 65)
  6679. Help.Size = UDim2.new(1, 0, 1, -22)
  6680. Help.Visible = false
  6681. helpframe.Name = "helpframe"
  6682. helpframe.Parent = Help
  6683. helpframe.BackgroundColor3 = Color3.new(0, 0, 0)
  6684. helpframe.BackgroundTransparency = 0.5
  6685. helpframe.BorderSizePixel = 0
  6686. helpframe.Size = UDim2.new(1, 0, 0, 65)
  6687. Help_2.Name = "Help"
  6688. Help_2.Parent = helpframe
  6689. Help_2.BackgroundColor3 = Color3.new(0, 0, 0)
  6690. Help_2.BackgroundTransparency = 1
  6691. Help_2.BorderSizePixel = 0
  6692. Help_2.Position = UDim2.new(0, 0, 0, 200)
  6693. Help_2.Size = UDim2.new(1, 0, 1, -22)
  6694. Notice.Name = "Notice"
  6695. Notice.Parent = helpframe
  6696. Notice.BackgroundColor3 = Color3.new(0, 0, 0)
  6697. Notice.BackgroundTransparency = 1
  6698. Notice.BorderSizePixel = 0
  6699. Notice.Position = UDim2.new(0, 0, 0, 2)
  6700. Notice.Size = UDim2.new(1, 0, 1, -22)
  6701. TextLabel.Parent = Notice
  6702. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  6703. TextLabel.BackgroundTransparency = 1
  6704. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  6705. TextLabel.BorderSizePixel = 0
  6706. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  6707. TextLabel.Font = Enum.Font.SourceSansBold
  6708. TextLabel.FontSize = Enum.FontSize.Size14
  6709. TextLabel.Text = "You can go to our site at infiniteyield.x10host.com to download the latest version."
  6710. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  6711. TextLabel.TextStrokeColor3 = Color3.new(0, 0, 0)
  6712. TextLabel.TextStrokeTransparency = 0.80000001192093
  6713. TextLabel.TextWrapped = true
  6714. Notice_2.Name = "Notice"
  6715. Notice_2.Parent = Notification
  6716. Notice_2.BackgroundColor3 = Color3.new(0, 0, 0)
  6717. Notice_2.BackgroundTransparency = 1
  6718. Notice_2.BorderSizePixel = 0
  6719. Notice_2.Position = UDim2.new(0, 0, 0, 2)
  6720. Notice_2.Size = UDim2.new(1, 0, 1, -22)
  6721. TextLabel_2.Parent = Notice_2
  6722. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  6723. TextLabel_2.BackgroundTransparency = 1
  6724. TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
  6725. TextLabel_2.BorderSizePixel = 0
  6726. TextLabel_2.Size = UDim2.new(1, 0, 1, 0)
  6727. TextLabel_2.Font = Enum.Font.SourceSansBold
  6728. TextLabel_2.FontSize = Enum.FontSize.Size14
  6729. TextLabel_2.Text = "The version of Infinite Yield you are using is outdated! (Using version " .. Version .. " when " .. Asset.Name .. " is avalable)"
  6730. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  6731. TextLabel_2.TextStrokeColor3 = Color3.new(0, 0, 0)
  6732. TextLabel_2.TextStrokeTransparency = 0.80000001192093
  6733. TextLabel_2.TextWrapped = true
  6734. ButtonSeparator.Name = "ButtonSeparator"
  6735. ButtonSeparator.Parent = Notification
  6736. ButtonSeparator.BackgroundColor3 = Color3.new(0, 0, 0)
  6737. ButtonSeparator.BackgroundTransparency = 0.5
  6738. ButtonSeparator.BorderColor3 = Color3.new(1, 1, 1)
  6739. ButtonSeparator.BorderSizePixel = 0
  6740. ButtonSeparator.Position = UDim2.new(0.5, 0, 1, -22)
  6741. ButtonSeparator.Size = UDim2.new(0, 2, 0, 22)
  6742. HelpButton.Name = "HelpButton"
  6743. HelpButton.Parent = Notification
  6744. HelpButton.BackgroundColor3 = Color3.new(0, 0, 0)
  6745. HelpButton.BackgroundTransparency = 0.80000001192093
  6746. HelpButton.BorderColor3 = Color3.new(0, 0, 0)
  6747. HelpButton.BorderSizePixel = 0
  6748. HelpButton.Position = UDim2.new(0.5, 0, 1, -22)
  6749. HelpButton.Size = UDim2.new(0.5, 0, 0, 22)
  6750. HelpButton.Font = Enum.Font.Highway
  6751. HelpButton.FontSize = Enum.FontSize.Size18
  6752. HelpButton.Text = "What should I do?"
  6753. HelpButton.TextColor3 = Color3.new(1, 1, 1)
  6754. OKButton_2.Name = "OKButton"
  6755. OKButton_2.Parent = Notification
  6756. OKButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
  6757. OKButton_2.BackgroundTransparency = 0.80000001192093
  6758. OKButton_2.BorderColor3 = Color3.new(0, 0, 0)
  6759. OKButton_2.BorderSizePixel = 0
  6760. OKButton_2.Position = UDim2.new(0, 0, 1, -22)
  6761. OKButton_2.Size = UDim2.new(0.5, 0, 0, 22)
  6762. OKButton_2.Font = Enum.Font.Highway
  6763. OKButton_2.FontSize = Enum.FontSize.Size18
  6764. OKButton_2.Text = "Ignore"
  6765. OKButton_2.TextColor3 = Color3.new(1, 1, 1)
  6766. Bar.Name = "Bar"
  6767. Bar.Parent = Notification
  6768. Bar.BackgroundColor3 = Color3.new(1, 0, 0)
  6769. Bar.BorderSizePixel = 0
  6770. Bar.Size = UDim2.new(1, 0, 0, 2)
  6771. end
  6772. if UTD == false then
  6773. game.CoreGui.Update.Notification.HelpButton.MouseButton1Click:Connect(function()
  6774. wait()
  6775. game.CoreGui.Update.Notification.Help.Visible = true
  6776. end)
  6777. end
  6778. if UTD ==false then
  6779. game.CoreGui.Update.Notification.OKButton.MouseButton1Click:Connect(function()
  6780. wait()
  6781. game.CoreGui.Update:Destroy()
  6782. end)
  6783. end
  6784. wait(10)
  6785. IYM.TextLabel.TextStrokeTransparency = 0.65
  6786. wait(0.05)
  6787. IYM.TextLabel.TextStrokeTransparency = 0.75
  6788. wait(0.05)
  6789. IYM.TextLabel.TextStrokeTransparency = 0.85
  6790. wait(0.05)
  6791. IYM.TextLabel.TextStrokeTransparency = 0.95
  6792. wait(0.05)
  6793. IYM.TextLabel.TextStrokeTransparency = 1
  6794. wait(0.05)
  6795. IYM.TextLabel.TextTransparency = 0.10
  6796. wait(0.05)
  6797. IYM.TextLabel.TextTransparency = 0.20
  6798. wait(0.05)
  6799. IYM.TextLabel.TextTransparency = 0.30
  6800. wait(0.05)
  6801. IYM.TextLabel.TextTransparency = 0.40
  6802. wait(0.05)
  6803. IYM.TextLabel.TextTransparency = 0.50
  6804. wait(0.05)
  6805. IYM.TextLabel.TextTransparency = 0.60
  6806. wait(0.05)
  6807. IYM.TextLabel.TextTransparency = 0.70
  6808. wait(0.05)
  6809. IYM.TextLabel.TextTransparency = 0.80
  6810. wait(0.05)
  6811. IYM.TextLabel.TextTransparency = 0.90
  6812. wait(0.05)
  6813. IYM.TextLabel.TextTransparency = 1
  6814. wait(0.05)
  6815. IY:Destroy()
  6816. end)
  6817.  
  6818. Open.MouseButton1Down:connect(function()
  6819. DogeFrame.Visible = true
  6820. Open.Visible = false
  6821. Close.Visible = true
  6822. end)
  6823.  
  6824. Close.MouseButton1Down:connect(function()
  6825. DogeFrame.Visible = false
  6826. Open.Visible = true
  6827. Close.Visible = false
  6828. end)
Add Comment
Please, Sign In to add comment