FriskyYoutube

Frisky's Ultimate GUI

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