Advertisement
Guest User

Infinite Yield 3.0

a guest
Jul 24th, 2017
12,688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 156.38 KB | None | 0 0
  1. ---------------------------------------------------------------
  2. ---------------------------------------------------------------
  3. --  _____       __ _       _ _        __   ___      _     _  --
  4. -- |_   _|     / _(_)     (_) |       \ \ / (_)    | |   | | --
  5. --   | | _ __ | |_ _ _ __  _| |_ ___   \ V / _  ___| | __| | --
  6. --   | || '_ \|  _| | '_ \| | __/ _ \   \ / | |/ _ \ |/ _` | --
  7. --  _| || | | | | | | | | | | ||  __/   | | | |  __/ | (_| | --
  8. --  \___/_| |_|_| |_|_| |_|_|\__\___|   \_/ |_|\___|_|\__,_| --
  9. --                                                           --
  10. ---------------------------------------------------------------
  11. ---  _______  _______  ______   _______  _______  _         ---
  12. --- (  ____ )(  ____ \(  ___ \ (  ___  )(  ____ )( (    /|  ---
  13. --- | (    )|| (    \/| (   ) )| (   ) || (    )||  \  ( |  ---
  14. --- | (____)|| (__    | (__/ / | |   | || (____)||   \ | |  ---
  15. --- |     __)|  __)   |  __ (  | |   | ||     __)| (\ \) |  ---
  16. --- | (\ (   | (      | (  \ \ | |   | || (\ (   | | \   |  ---
  17. --  | ) \ \__| (____/\| )___) )| (___) || ) \ \__| )  \  |  ---
  18. --- |/   \__/(_______/|/ \___/ (_______)|/   \__/|/    )_)  ---
  19. ---------------------------------------------------------------
  20. --------------------------Version 3.0--------------------------
  21. ---------------------------------------------------------------
  22. ---------------------IoIman616---Edge#3467---------------------
  23. -------------Desiredusername1233--bluntboomer#1259-------------
  24. ---------------------------------------------------------------
  25.  
  26. --The message system was created by HARKINIAN @ V3RMILLION (thanks)
  27.  
  28. local gCoreGui = game:GetService('CoreGui')
  29. local gPlayers = game:GetService('Players')
  30. local gLighting = game:GetService('Lighting')
  31. local gWorkspace = game:GetService('Workspace')
  32. local Player = game.Players.LocalPlayer
  33. local Mouse = Player:GetMouse()
  34. local char = Player.Character
  35. local LP = gPlayers.LocalPlayer
  36. local MOUSE = LP:GetMouse()
  37.  
  38. local gPlayers = game:GetService("Players")
  39. local admin = gPlayers.LocalPlayer.Name
  40.  
  41. local _players = game:GetService('Players')
  42.  
  43. local services={}
  44. local cmds={}
  45. local std={}
  46. local loopkillT = {}
  47. local disabletoolsT = {}
  48. local banT = {}
  49. local admins = {}
  50. local origsettings = {abt = game.Lighting.Ambient, brt = game.Lighting.Brightness, time =
  51. game.Lighting.TimeOfDay, fclr = game.Lighting.FogColor, fe =
  52. game.Lighting.FogEnd, fs = game.Lighting.FogStart}
  53. function FIND_CHILD(PATH, NAME) if PATH:FindFirstChild(NAME) then return true end return false end
  54.  
  55. local Version = '3.0'
  56.  
  57. wait(0.1)
  58.  
  59. services.players=gPlayers
  60. services.lighting=game:GetService('Lighting')
  61. services.workspace=game:GetService('Workspace')
  62. services.events = {}
  63. local user = gPlayers.LocalPlayer
  64. local gCoreGui = game:GetService('CoreGui')
  65. local gPlayers = game:GetService('Players')
  66. local gLighting = game:GetService('Lighting')
  67. local gWorkspace = game:GetService('Workspace')
  68.  
  69. local cmdprefix=';'
  70. local scriptprefix='\\'
  71. local split=" "
  72.  
  73. local Checked = Instance.new("BoolValue")
  74.  
  75. Checked.Name = "notify"
  76. Checked.Value = true
  77. Checked.Parent = game.Players.LocalPlayer
  78.  
  79. local Checked2 = Instance.new("BoolValue")
  80.  
  81. Checked2.Name = "allowfriends"
  82. Checked2.Value = true
  83. Checked2.Parent = game.Players.LocalPlayer
  84.  
  85. local Checked3 = Instance.new("BoolValue")
  86.  
  87. Checked3.Name = "JLnotify"
  88. Checked3.Value = true
  89. Checked3.Parent = game.Players.LocalPlayer
  90.  
  91. local Mtime = Instance.new("IntValue")
  92.  
  93. Mtime.Name = "MSGtime"
  94. Mtime.Value = 7 -- this is adjustable in settings (default is 7 seconds)
  95. Mtime.Parent = game.Players.LocalPlayer
  96.  
  97. slock = false
  98.  
  99. function FindTable(Table, Name)
  100.     for i,v in pairs(Table) do
  101.         if v == Name then
  102.             return true
  103.         end
  104.     end
  105.     return false
  106. end
  107.  
  108. function GetInTable(Table, Name)
  109.     for i = 1, #Table do
  110.         if Table[i] == Name then
  111.             return i
  112.         end
  113.     end
  114.     return false
  115. end
  116.  
  117. game:GetService('RunService').Stepped:connect(function()
  118.     for i,v in pairs(_players:GetPlayers()) do
  119.         if FindTable(loopkillT, v.Name) then
  120.             v.Character:BreakJoints()
  121.         end
  122.     end
  123. end)
  124.  
  125. game:GetService('RunService').Stepped:connect(function()
  126.         for i,n in pairs(_players:GetPlayers()) do
  127.         if FindTable(disabletoolsT, n.Name) then
  128.         for i,v in pairs(n.Backpack:GetChildren()) do
  129.             if v:IsA('Tool') or v:IsA('HopperBin') then
  130.                 v:destroy()
  131.             end
  132.         for i,v in pairs(n.Character:GetChildren()) do
  133.             if v:IsA('Tool') or v:IsA('HopperBin') then
  134.                 v:destroy()
  135.             end
  136.         end
  137.     end
  138. end
  139. end
  140. end)
  141.  
  142. game:GetService('RunService').Stepped:connect(function()
  143.     for i,v in pairs(_players:GetPlayers()) do
  144.         if FindTable(banT, v.userId) then
  145.             lol=function(wt) -- thx man
  146.  if(wt~=nil)then
  147.     spawn(function()
  148.         pcall(function()
  149. local vic=wt
  150. local skt=Instance.new("SkateboardPlatform", vic)
  151. skt.CFrame=CFrame.new(math.random(-1000,1000),1000,math.random(-1000,1000))
  152. skt.CanCollide=false
  153. skt.Anchored=false
  154. skt.Transparency=1
  155. skt.Size=Vector3.new(5,5,5)
  156. vic.Humanoid.WalkSpeed=0
  157. vic.Humanoid.Jump=true
  158. Notify('Banned player, ' .. v.Name .. ' has attepted to join')
  159. wait(.1)
  160. local wld=Instance.new("Weld", workspace)
  161. wld.Part0=vic.HumanoidRootPart
  162. wld.Part1=skt
  163. wld.C0=CFrame.new(0,-500,0)
  164. wait(.1)
  165. skt.Anchored=true
  166. wld:Destroy()
  167. end)
  168.  end);
  169.  end;
  170. end;
  171. lol(v.Character)
  172.         end
  173.     end
  174. end)
  175.  
  176. -------------------------------------------
  177. ------------Player Joined/Left-------------
  178. -------------------------------------------
  179.  
  180.  
  181. waitTime=5
  182.  
  183. function PlayerEntered(Player)
  184.     if Player ~= nil and game.Players.LocalPlayer.JLnotify.Value == true then
  185.         local runDummyScript = function(f,scri)
  186. local oldenv = getfenv(f)
  187. local newenv = setmetatable({}, {
  188. __index = function(_, k)
  189. if k:lower() == 'script' then
  190. return scri
  191. else
  192. return oldenv[k]
  193. end
  194. end
  195. })
  196. setfenv(f, newenv)
  197. ypcall(function() f() end)
  198. end
  199. cors = {}
  200. mas = Instance.new("Model",game:GetService("Lighting"))
  201. mas.Name = "CompiledModel"
  202. o1 = Instance.new("ScreenGui")
  203. o2 = Instance.new("Decal")
  204. o3 = Instance.new("Frame")
  205. o4 = Instance.new("ImageLabel")
  206. o5 = Instance.new("TextBox")
  207. o1.Name = "PlayerEntered"
  208. o1.Parent = mas
  209. o2.Parent = o1
  210. o2.Texture = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  211. o3.Parent = o1
  212. o3.Position = UDim2.new(0,-360,0,400)
  213. o3.Size = UDim2.new(0,350,0,100)
  214. o3.Style = Enum.FrameStyle.RobloxSquare
  215. o3.Position = UDim2.new(0,-360,0,400)
  216. o3.BackgroundColor3 = Color3.new(0.658824, 0.654902, 0.666667)
  217. o4.Parent = o3
  218. o4.Size = UDim2.new(0,90,1,0)
  219. o4.BackgroundColor3 = Color3.new(1, 1, 1)
  220. o4.BackgroundTransparency = 0.89999997615814
  221. o4.BorderColor3 = Color3.new(0, 0, 0)
  222. o4.Image = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  223. o5.Parent = o3
  224. o5.Position = UDim2.new(0,100,0,0)
  225. o5.Size = UDim2.new(0,230,1,0)
  226. o5.Text = "-Playername- Joined the Game"
  227. o5.Position = UDim2.new(0,100,0,0)
  228. o5.Active = false
  229. o5.BackgroundColor3 = Color3.new(1, 1, 1)
  230. o5.BackgroundTransparency = 0.89999997615814
  231. o5.BorderColor3 = Color3.new(0, 0, 0)
  232. o5.Font = Enum.Font.ArialBold
  233. o5.FontSize = Enum.FontSize.Size14
  234. o5.TextColor3 = Color3.new(1, 1, 1)
  235. o5.TextStrokeTransparency = 0
  236. mas.Parent = workspace
  237. mas:MakeJoints()
  238. local mas1 = mas:GetChildren()
  239. for i=1,#mas1 do
  240.     mas1[i].Parent = game.Players.LocalPlayer.PlayerGui
  241.     ypcall(function() mas1[i]:MakeJoints() end)
  242. end
  243. mas:Destroy()
  244. for i=1,#cors do
  245. spawn(cors[i])
  246. end
  247. wait(0.5)
  248. o2.Parent.Frame.Visible=false
  249.         link = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username="
  250.         o2.Parent.Frame.ImageLabel.Image = link .. Player.Name .. "&RAND=" .. math.random(1,100000)
  251.         o2.Parent.Frame.TextBox.Text= Player.Name .. " Joined"
  252.         o2.Parent.Frame.Visible=true
  253.         o2.Parent.Frame:TweenPosition(UDim2.new(0,0,0,400),"Out","Quint",0.3,true)
  254.         wait(waitTime)
  255.         o2.Parent.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  256.         wait(1)
  257.         o1:Destroy()
  258.         for _, child in pairs( game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  259.     if child.Name == "PlayerEntered" then
  260.         child.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  261. wait(1)
  262.         child:Destroy()
  263.     end
  264. end
  265.     end
  266. end
  267.  
  268.  
  269. game.Players.ChildAdded:connect(PlayerEntered)
  270.  
  271. function PlayerLeft(Player)
  272.     if Player ~= nil and game.Players.LocalPlayer.JLnotify.Value == true then
  273.         local runDummyScript = function(f,scri)
  274. local oldenv = getfenv(f)
  275. local newenv = setmetatable({}, {
  276. __index = function(_, k)
  277. if k:lower() == 'script' then
  278. return scri
  279. else
  280. return oldenv[k]
  281. end
  282. end
  283. })
  284. setfenv(f, newenv)
  285. ypcall(function() f() end)
  286. end
  287. cors = {}
  288. mas = Instance.new("Model",game:GetService("Lighting"))
  289. mas.Name = "CompiledModel"
  290. o1 = Instance.new("ScreenGui")
  291. o2 = Instance.new("Decal")
  292. o3 = Instance.new("Frame")
  293. o4 = Instance.new("ImageLabel")
  294. o5 = Instance.new("TextBox")
  295. o1.Name = "PlayerEntered"
  296. o1.Parent = mas
  297. o2.Parent = o1
  298. o2.Texture = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  299. o3.Parent = o1
  300. o3.Position = UDim2.new(0,-360,0,400)
  301. o3.Size = UDim2.new(0,350,0,100)
  302. o3.Style = Enum.FrameStyle.RobloxSquare
  303. o3.Position = UDim2.new(0,-360,0,400)
  304. o3.BackgroundColor3 = Color3.new(0.658824, 0.654902, 0.666667)
  305. o4.Parent = o3
  306. o4.Size = UDim2.new(0,90,1,0)
  307. o4.BackgroundColor3 = Color3.new(1, 1, 1)
  308. o4.BackgroundTransparency = 0.89999997615814
  309. o4.BorderColor3 = Color3.new(0, 0, 0)
  310. o4.Image = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username=Roblox&RAND=7474"
  311. o5.Parent = o3
  312. o5.Position = UDim2.new(0,100,0,0)
  313. o5.Size = UDim2.new(0,230,1,0)
  314. o5.Text = "-Playername- Joined the Game"
  315. o5.Position = UDim2.new(0,100,0,0)
  316. o5.Active = false
  317. o5.BackgroundColor3 = Color3.new(1, 1, 1)
  318. o5.BackgroundTransparency = 0.89999997615814
  319. o5.BorderColor3 = Color3.new(0, 0, 0)
  320. o5.Font = Enum.Font.ArialBold
  321. o5.FontSize = Enum.FontSize.Size14
  322. o5.TextColor3 = Color3.new(1, 1, 1)
  323. o5.TextStrokeTransparency = 0
  324. mas.Parent = workspace
  325. mas:MakeJoints()
  326. local mas1 = mas:GetChildren()
  327. for i=1,#mas1 do
  328.     mas1[i].Parent = game.Players.LocalPlayer.PlayerGui
  329.     ypcall(function() mas1[i]:MakeJoints() end)
  330. end
  331. mas:Destroy()
  332. for i=1,#cors do
  333. spawn(cors[i])
  334. end
  335. wait(0.5)
  336.         link = "http://www.roblox.com/thumbs/avatar.ashx?x=150&y=200&format=png&username="
  337.         o2.Parent.Frame.ImageLabel.Image = link .. Player.Name .. "&RAND=" .. math.random(1,100000)
  338.         o2.Parent.Frame.TextBox.Text= Player.Name .. " Left"
  339.         o2.Parent.Frame.Visible=true
  340.         o2.Parent.Frame:TweenPosition(UDim2.new(0,0,0,400),"Out","Quint",0.3,true)
  341.         wait(waitTime)
  342.         o2.Parent.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  343.         wait(1)
  344.         o1:Destroy()
  345.         for _, child in pairs( game.Players.LocalPlayer.PlayerGui:GetChildren()) do
  346.     if child.Name == "PlayerEntered" then
  347.         child.Frame:TweenPosition(UDim2.new(0,-360,0,400),"Out","Quint",0.3,true)
  348. wait(1)
  349.         child:Destroy()
  350.     end
  351. end
  352.     end
  353. end
  354.  
  355.  
  356. game.Players.PlayerRemoving:connect(PlayerLeft)
  357.  
  358. -------------------------------------------
  359. ---Commands that show up in the CMD list---
  360. -------------------------------------------
  361.  
  362. CMDs = {
  363.     '- settings',
  364.     '1. ff [plr]',
  365.     '2. unff [plr]',
  366.     '3. fire [plr] [R G B]',
  367.     '4. unfire [plr]',
  368.     '5. sparkles [plr] [R G B]',
  369.     '6. unsparkles [plr]',
  370.     '7. smoke [plr]',
  371.     '8. unsmoke [plr]',
  372.     '9. btools [plr]',
  373.     '10. god [plr]',
  374.     '11. ungod [plr]',
  375.     '12. smite [plr]',
  376.     '13. heal [plr]',
  377.     '14. freeze [plr]',
  378.     '15. thaw [plr]',
  379.     '16. kill [plr]',
  380.     '17. sound [ID]',
  381.     '18. volume [num]',
  382.     '19. pitch [num]',
  383.     '20. explode [plr]',
  384.     '21. invisible [plr]',
  385.     '22. visible [plr]',
  386.     '23. goto [plr]',
  387.     '24. bring [plr]',
  388.     '25. tp [plr] [plr]',
  389.     '26. char [plr]',
  390.     '27. speed [plr] [num]',
  391.     '28. time [num]',
  392.     '29. kick [plr]',
  393.     '30. sgod [plr]',
  394.     '31. unlockws',
  395.     '32. lockws',
  396.     '33. unanchor',
  397.     '34. anchor',
  398.     '35. loadm',
  399.     '36. m [msg]',
  400.     '37. light [plr] [R G B]',
  401.     '38. decalspam [ID]',
  402.     '39. undecalspam',
  403.     '40. firstp [plr]',
  404.     '41. thirdp [plr]',
  405.     '42. fart [plr]',
  406.     '43. name [plr]',
  407.     '44. unname [plr]',
  408.     '45. stun [plr]',
  409.     '46. unstun [plr]',
  410.     '47. sit [plr]',
  411.     '48. serverinfo',
  412.     '49. damage [plr]',
  413.     '50. view [plr]',
  414.     '51. unview [plr]',
  415.     '52. nolimbs [plr]',
  416.     '53. box [plr]',
  417.     '54. nobox [plr]',
  418.     '55. ghost [plr]',
  419.     '56. sphere [plr]',
  420.     '57. loadmap [ID]',
  421.     '58. sky [ID]',
  422.     '59. ambient [R G B]',
  423.     '60. clrterrain',
  424.     '61. jail [plr]',
  425.     '62. unjail [plr]',
  426.     '63. shutdown',
  427.     '64. animation [plr] [anim]',
  428.     '65. normal [plr]',
  429.     '66. creeper [plr]',
  430.     '67. uncreeper [plr]',
  431.     '68. shrek [plr]',
  432.     '69. unshrek [plr]',
  433.     '70. respawn [plr]',
  434.     '71. base',
  435.     '72. control [plr]',
  436.     '73. nuke [plr]',
  437.     '74. infect [plr]',
  438.     '75. uninfect [plr]',
  439.     '76. duck [plr]',
  440.     '77. unduck [plr]',
  441.     '78. disable [plr]',
  442.     '79. enable [plr]',
  443.     '80. size [plr]',
  444.     '81. confuse [plr]',
  445.     '82. unconfuse [plr]',
  446.     '83. clone [plr]',
  447.     '84. spin [plr]',
  448.     '85. unspin [plr]',
  449.     '86. dog [plr]',
  450.     '87. undog [plr]',
  451.     '88. loopheal [plr]',
  452.     '89. unloopheal [plr]',
  453.     '90. fling [plr]',
  454.     '91. ayylmao [plr]',
  455.     '92. nograv [plr]',
  456.     '93. grav [plr]',
  457.     '94. seizure [plr]',
  458.     '95. unseizure [plr]',
  459.     '96. paper [plr]',
  460.     '97. punish [plr]',
  461.     '98. unpunish [plr]',
  462.     '99. fogend [num]',
  463.     '100. fogcolor [R G B]',
  464.     '101. disco',
  465.     '102. undisco',
  466.     '103. fix',
  467.     '104. flood',
  468.     '105. spookyify',
  469.     '106. explorer',
  470.     '107. wtrbtools',
  471.     '108. draw',
  472.     '109. devuzi',
  473.     '110. ban [plr]',
  474.     '111. clrbans',
  475.     '112. float [plr]',
  476.     '113. unfloat [plr]',
  477.     '114. noclip',
  478.     '115. clip',
  479.     '116. hatsize [plr] [num]',
  480.     '117. removehat [plr]',
  481.     '118. cripple [plr]',
  482.     '119. uncripple [plr]',
  483.     '120. blur [num]',
  484.     '121. hipheight [plr] [num]',
  485.     '122. bgui [plr] [text]',
  486.     '123. loopkill [plr]',
  487.     '124. unloopkill [plr]',
  488.     '125. removetools [plr]',
  489.     '126. grav [plr] [num]',
  490.     '127. serverlock',
  491.     '128. unserverlock',
  492.     '129. gear [plr] [ID] (clntinsrtmdl)',
  493.     '130. addstat [plr] [text]',
  494.     '131. change stat [plr] [num]',
  495.     '132. headsize [plr] [num]',
  496.     '133. bang [plr]',
  497.     '134. chat [plr] [msg]',
  498.     '135. gravity [num]',
  499.     '136. disabletools [plr]',
  500.     '137. enabletools [plr]',
  501.     '138. admin [plr]',
  502.     '139. clradmins',
  503.     '140. prefix [string]',
  504.     '141. cmds',
  505.     '142. version'
  506. }
  507.  
  508. -------
  509. --Lib--
  510. -------
  511.  
  512. updateevents=function()
  513.     for i,v in pairs(services.events) do services.events:remove(i) v:disconnect() end
  514.     for i,v in pairs(gPlayers:players())do
  515.         local ev = v.Chatted:connect(function(msg) do_exec(msg,v) end)
  516.         services.events[#services.events+1] = ev
  517.     end
  518. end
  519.  
  520. std.inTable=function(tbl,val)
  521.     if tbl==nil then return false end
  522.  
  523.     for _,v in pairs(tbl)do
  524.         if v==val then return true end
  525.     end
  526.     return false
  527. end
  528.  
  529. std.out=function(str)
  530.     print(str)
  531. end
  532.  
  533. std.list=function(tbl)
  534.     local str=''
  535.     for i,v in pairs(tbl)do
  536.         str=str..tostring(v)
  537.         if i~=#tbl then str=str..', ' end
  538.     end
  539.     return str
  540. end
  541.  
  542. std.endat=function(str,val)
  543.     local z=str:find(val)
  544.     if z then
  545.         return str:sub(0,z-string.len(val)),true
  546.     else
  547.         return str,false
  548.     end
  549. end
  550.  
  551. std.first=function(str) return str:sub(1,1) end
  552.  
  553. isAdmin=function(name)
  554.     for i,v in pairs(_players:GetPlayers()) do
  555.         if FindTable(admins, v.userId) then
  556.         return true
  557.         elseif name==admin then
  558.         return true
  559.         end
  560.     end
  561.     return false
  562. end
  563.  
  564. local exec=function(str)
  565.     spawn(function()
  566.         local script, loaderr = loadstring(str)
  567.         if not script then
  568.             error(loaderr)
  569.         else
  570.             script()
  571.         end
  572.     end)
  573. end
  574.  
  575. local findCmd=function(cmd_name)
  576.     for i,v in pairs(cmds)do
  577.         if v.NAME:lower()==cmd_name:lower() or std.inTable(v.ALIAS,cmd_name:lower())then
  578.             return v
  579.         end
  580.     end
  581. end
  582.  
  583. local getCmd=function(msg)
  584.     local cmd,hassplit=std.endat(msg:lower(),split)
  585.     if hassplit then
  586.         return {cmd,true}
  587.     else
  588.         return {cmd,false}
  589.     end
  590. end
  591.  
  592. local getprfx=function(strn)
  593.     if strn:sub(1,string.len(cmdprefix))==cmdprefix then return{'cmd',string.len(cmdprefix)+1}
  594.     elseif strn:sub(1,string.len(scriptprefix))==scriptprefix then return{'exec',string.len(scriptprefix)+1}
  595.     end return
  596. end
  597.  
  598. local getArgs=function(str)
  599.     local args={}
  600.     local new_arg=nil
  601.     local hassplit=nil
  602.     local s=str
  603.     repeat
  604.         new_arg,hassplit=std.endat(s:lower(),split)
  605.         if new_arg~='' then
  606.             args[#args+1]=new_arg
  607.             s=s:sub(string.len(new_arg)+string.len(split)+1)
  608.         end
  609.     until hassplit==false
  610.     return args
  611. end
  612.  
  613. _players.PlayerAdded:connect(function(player)
  614.     if slock == true and game.Players.LocalPlayer.allowfriends.Value == false then player.CharacterAdded:connect(function()
  615.         wait(1)
  616. lol=function(wt) -- thx man
  617.  if(wt~=nil)then
  618.     spawn(function()
  619.         pcall(function()
  620. local vic=wt
  621.  
  622. local skt=Instance.new("SkateboardPlatform", vic)
  623. skt.CFrame=CFrame.new(math.random(-1000,1000),1000,math.random(-1000,1000))
  624. skt.CanCollide=false
  625. skt.Anchored=false
  626. skt.Transparency=1
  627. skt.Size=Vector3.new(5,1,5)
  628. vic.Humanoid.WalkSpeed=0
  629. vic.Humanoid.Jump=true
  630. wait(.1)
  631. local wld=Instance.new("Weld", workspace)
  632. wld.Part0=vic.HumanoidRootPart
  633. wld.Part1=skt
  634. wld.C0=CFrame.new(0,-500,0)
  635. wait(.1)
  636. skt.Anchored=true
  637. wld:Destroy()
  638. end)
  639.  end);
  640.  end;
  641. end;
  642. lol(player.Character)
  643.     end)
  644. elseif slock == true and game.Players.LocalPlayer.allowfriends.Value == true and not player:IsFriendsWith(user.userId) then
  645.         wait(1)
  646. lol=function(wt) -- thx man
  647.  if(wt~=nil)then
  648.     spawn(function()
  649.         pcall(function()
  650. local vic=wt
  651.  
  652. local skt=Instance.new("SkateboardPlatform", vic)
  653. skt.CFrame=CFrame.new(math.random(-1000,1000),1000,math.random(-1000,1000))
  654. skt.CanCollide=false
  655. skt.Anchored=false
  656. skt.Transparency=1
  657. skt.Size=Vector3.new(5,1,5)
  658. vic.Humanoid.WalkSpeed=0
  659. vic.Humanoid.Jump=true
  660. wait(.1)
  661. local wld=Instance.new("Weld", workspace)
  662. wld.Part0=vic.HumanoidRootPart
  663. wld.Part1=skt
  664. wld.C0=CFrame.new(0,-500,0)
  665. wait(.1)
  666. skt.Anchored=true
  667. wld:Destroy()
  668. end)
  669.  end);
  670.  end;
  671. end;
  672. lol(player.Character)
  673. end
  674. end)
  675.    
  676. local function execCmd(str, plr)
  677.     local s_cmd
  678.     local a
  679.     local cmd
  680.     s_cmd = getCmd(str)
  681.     cmd = findCmd(s_cmd[1])
  682.     if cmd == nil then return end
  683.     a = str:sub(string.len(s_cmd[1]) + string.len(split) + 1)
  684.     local args=getArgs(a)
  685.  
  686.     pcall(function()
  687.     cmd.FUNC(args, plr)
  688.     end)
  689. end
  690.  
  691. function do_exec(str,plr)
  692.     if not isAdmin(plr.Name)then return end
  693.    
  694.     str=str:gsub('/e ','')
  695.  
  696.     local t=getprfx(str)
  697.     if t==nil then return end
  698.     str=str:sub(t[2])
  699.     if t[1]=='exec' then
  700.         exec(str)
  701.     elseif t[1]=='cmd' then
  702.         execCmd(str, plr)
  703.     end
  704. end
  705.  
  706. updateevents()
  707. _G.exec_cmd = execCmd
  708. --game.Players.LocalPlayer.Chatted:connect(doexec)
  709.  
  710. local _char=function(plr_name)
  711.     for i,v in pairs(game.Players:GetChildren())do
  712.         if v:IsA'Player'then
  713.             if v.Name==plr_name then return v.Character end
  714.         end
  715.     end
  716.     return
  717. end
  718.  
  719. local _plr=function(plr_name)
  720.     for i,v in pairs(game.Players:GetChildren())do
  721.         if v:IsA'Player'then
  722.             if v.Name==plr_name then return v end
  723.         end
  724.     end
  725.     return
  726. end
  727.  
  728. function addcmd(name,desc,alias,func)
  729.     cmds[#cmds+1]=
  730.     {
  731.         NAME=name;
  732.         DESC=desc;
  733.         ALIAS=alias;
  734.         FUNC=func;
  735.     }
  736. end
  737.  
  738. local function getPlayer(name)
  739.     local nameTable = {}
  740.     name=name:lower()
  741.     if name == "me" then
  742.      nameTable[#nameTable+1]=admin
  743.     elseif name == "others" then
  744.         for i,v in pairs(gPlayers:GetChildren()) do
  745.             if v:IsA'Player'then
  746.                 if v.Name~=admin then
  747.                     nameTable[#nameTable+1]=v.Name
  748.                 end
  749.             end
  750.         end
  751.     elseif name == "team" then
  752.         for i,v in pairs(gPlayers:GetChildren()) do
  753.             if v.TeamColor == user.TeamColor then
  754.                 nameTable[#nameTable+1]=v.Name
  755.                 end
  756.             end
  757.     elseif name == "nonteam" then
  758.         for i,v in pairs(gPlayers:GetChildren()) do
  759.             if v.TeamColor ~= user.TeamColor then
  760.                 nameTable[#nameTable+1]=v.Name
  761.                 end
  762.             end
  763.     elseif name == "friends" then
  764.         for i,v in pairs(gPlayers:GetChildren()) do
  765.             if v ~= user and v:IsFriendsWith(user.userId) then
  766.                 nameTable[#nameTable+1]=v.Name
  767.                 end
  768.             end
  769.     elseif name == "nonfriends" then
  770.         for i,v in pairs(gPlayers:GetChildren()) do
  771.             if not v:IsFriendsWith(user.userId) then
  772.                 nameTable[#nameTable+1]=v.Name
  773.                 end
  774.             end
  775.     elseif name == "all" then
  776.         for i,v in pairs(gPlayers:GetChildren()) do
  777.             if v:IsA'Player'then
  778.                 nameTable[#nameTable+1]=v.Name
  779.             end
  780.         end
  781.     else
  782.         for i,v in pairs(gPlayers:GetChildren()) do
  783.             local lname = v.Name:lower()
  784.             local i,j = lname:find(name)
  785.             if i == 1 then
  786.                 return {v.Name}
  787.             end
  788.         end
  789.     end
  790.     return nameTable
  791. end
  792.  
  793. function fWeld(zName, zParent, zPart0, zPart1, zCoco, A, B, C, D, E, F)
  794.     local funcw = Instance.new('Weld') funcw.Name = zName funcw.Parent = zParent funcw.Part0 = zPart0 funcw.Part1 = zPart1
  795.     if (zCoco) then
  796.         funcw.C0 = CFrame.new(A, B, C) * CFrame.fromEulerAnglesXYZ(D, E, F)
  797.     else
  798.         funcw.C1 = CFrame.new(A, B, C) * CFrame.fromEulerAnglesXYZ(D, E, F)
  799.     end
  800.     return funcw
  801. end
  802.  
  803. function rape(victim)
  804.     spawn(function()
  805.         local P1 = _players.LocalPlayer.Character.Torso
  806.         local V1 = _players[victim].Character.Torso
  807.        
  808.         V1.Parent.Humanoid.PlatformStand = true
  809.        
  810.         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'
  811.        
  812.         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'
  813.        
  814.         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'
  815.        
  816.         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'
  817.        
  818.         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'
  819.        
  820.         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'
  821.        
  822.         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)
  823.        
  824.         local DM1 = Instance.new('SpecialMesh', D) DM1.MeshType = 'Sphere' DM1.Scale = Vector3.new(0.4, 0.4, 0.4)
  825.        
  826.         fWeld('weld', P1, P1, D, true, -0.2, -1.3, -0.6, 0, 0, 0)
  827.        
  828.         local D2 = D:Clone() D2.Parent = P1
  829.        
  830.         fWeld('weld', P1, P1, D2, true, 0.2, -1.3, -0.6, 0, 0, 0)
  831.        
  832.         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)
  833.        
  834.         fWeld('weld', P1, P1, C, true, 0, -1, -0.52 + (-C.Size.y / 2), math.rad(-80), 0, 0)
  835.        
  836.         local C2 = D:Clone() C2.BrickColor = BrickColor.new('Pink') C2.Mesh.Scale = Vector3.new(0.4, 0.62, 0.4) C2.Parent = P1
  837.        
  838.         fWeld('weld', C, C, C2, true, 0, 0 + (C.Size.y / 2), 0, math.rad(-10), 0, 0)
  839.        
  840.         local CM = Instance.new('CylinderMesh', C)
  841.        
  842.         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)
  843.        
  844.         local DM2 = Instance.new('SpecialMesh', BL) DM2.MeshType = 'Sphere' DM2.Scale = Vector3.new(1.2, 1.2, 1.2)
  845.        
  846.         fWeld('weld', V1, V1, BL, true, -0.5, 0.5, -0.6, 0, 0, 0)
  847.        
  848.         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)
  849.        
  850.         local DM3 = Instance.new('SpecialMesh', BR) DM3.MeshType = 'Sphere' DM3.Scale = Vector3.new(1.2, 1.2, 1.2)
  851.        
  852.         fWeld('weld', V1, V1, BR, true, 0.5, 0.5, -0.6, 0, 0, 0)
  853.        
  854.         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)
  855.        
  856.         local DM4 = Instance.new('SpecialMesh', BLN) DM4.MeshType = 'Sphere' DM4.Scale = Vector3.new(0.2, 0.2, 0.2)
  857.        
  858.         fWeld('weld', V1, V1, BLN, true, -0.5, 0.5, -1.2, 0, 0, 0)
  859.        
  860.         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)
  861.        
  862.         local DM5 = Instance.new('SpecialMesh', BRN) DM5.MeshType = 'Sphere' DM5.Scale = Vector3.new(0.2, 0.2, 0.2)
  863.        
  864.         fWeld('weld', V1, V1, BRN, true, 0.5, 0.5, -1.2, 0, 0, 0)
  865.        
  866.         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)
  867.         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)
  868.         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)
  869.        
  870.         if P1:FindFirstChild('weldx') then P1.weldx:destroy() end
  871.        
  872.         WE = fWeld('weldx', P1, P1, V1, true, 0, -0.9, -1.3, math.rad(-90), 0, 0)
  873.        
  874.         local N = V1.Neck N.C0 = CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-210), math.rad(180), 0)
  875.     end)
  876.     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)
  877. end
  878.  
  879. ----------------
  880. ----Commands----
  881. ----------------
  882.  
  883. addcmd('ff','gives ff to player',{},
  884. function(args, speaker)
  885.     local players = getPlayer(args[1], speaker)
  886.     for i,v in pairs(players)do
  887.         local pchar=_char(v)
  888.         Instance.new("ForceField", pchar)
  889.     end
  890. end)
  891.  
  892. addcmd('unff', 'takes away ff from player',{'unff'},
  893. function(args, speaker)
  894.     local players = getPlayer(args[1], speaker)
  895.     for i,v in pairs(players)do
  896.         local pchar=_char(v)
  897.         for j,v1 in pairs(pchar:GetChildren()) do
  898.             if v1:IsA("ForceField") then
  899.                 v1:Destroy()
  900.             end
  901.         end
  902.     end
  903. end)
  904.  
  905. addcmd('fire', 'set a player on fire',{},
  906. function(args, speaker)
  907.     local players = getPlayer(args[1], speaker)
  908.     for i,v in pairs(players)do
  909.         local pchar=_char(v)
  910.         local Fire1 = Instance.new("Fire", pchar.Head)
  911.         local Fire2 = Instance.new("Fire", pchar.HumanoidRootPart)
  912.         local Fire3 = Instance.new("Fire", pchar["Left Arm"])
  913.         local Fire4 = Instance.new("Fire", pchar["Right Arm"])
  914.         local Fire5 = Instance.new("Fire", pchar["Left Leg"])
  915.         local Fire6 = Instance.new("Fire", pchar["Right Leg"])
  916.         Fire1.Color = Color3.new((args[2]),(args[3]),(args[4]))
  917.         Fire1.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  918.         Fire2.Color = Color3.new((args[2]),(args[3]),(args[4]))
  919.         Fire2.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  920.         Fire3.Color = Color3.new((args[2]),(args[3]),(args[4]))
  921.         Fire3.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  922.         Fire4.Color = Color3.new((args[2]),(args[3]),(args[4]))
  923.         Fire4.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  924.         Fire5.Color = Color3.new((args[2]),(args[3]),(args[4]))
  925.         Fire5.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  926.         Fire6.Color = Color3.new((args[2]),(args[3]),(args[4]))
  927.         Fire6.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  928.     end
  929. end)
  930.  
  931. addcmd('nofire', 'extinguish a player',{'unfire'},
  932. function(args, speaker)
  933.     local players = getPlayer(args[1], speaker)
  934.     for i,v in pairs(players)do
  935.         local pchar=_char(v)
  936.         for j,v1 in pairs(pchar.Head:GetChildren()) do
  937.             if v1:IsA("Fire") then
  938.                 v1:Destroy()
  939.             end
  940. end
  941.         for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  942.             if v1:IsA("Fire") then
  943.                 v1:Destroy()
  944.             end
  945. end
  946.         for j,v1 in pairs(pchar["Left Arm"]:GetChildren()) do
  947.             if v1:IsA("Fire") then
  948.                 v1:Destroy()
  949.             end
  950. end
  951.         for j,v1 in pairs(pchar["Right Arm"]:GetChildren()) do
  952.             if v1:IsA("Fire") then
  953.                 v1:Destroy()
  954.             end
  955. end
  956.         for j,v1 in pairs(pchar["Left Leg"]:GetChildren()) do
  957.             if v1:IsA("Fire") then
  958.                 v1:Destroy()
  959.             end
  960. end
  961.         for j,v1 in pairs(pchar["Right Leg"]:GetChildren()) do
  962.             if v1:IsA("Fire") then
  963.                 v1:Destroy()
  964.             end
  965.         end
  966.     end
  967. end)
  968.  
  969. addcmd('light', 'givs em light',{},
  970. function(args, speaker)
  971.     local players = getPlayer(args[1], speaker)
  972.     for i,v in pairs(players)do
  973.         local pchar=_char(v)
  974.         local light = Instance.new("PointLight", pchar.HumanoidRootPart)
  975.         light.Color = Color3.new((args[2]),(args[3]),(args[4]))
  976.         light.Range = 12
  977.         light.Brightness = 3
  978.     end
  979. end)
  980.  
  981. addcmd('nolight', 'no more light',{'unlight'},
  982. function(args, speaker)
  983.     local players = getPlayer(args[1], speaker)
  984.     for i,v in pairs(players)do
  985.         local pchar=_char(v)
  986.         for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  987.             if v1:IsA("PointLight") then
  988.                 v1:Destroy()
  989.             end
  990.         end
  991.     end
  992. end)
  993.  
  994. addcmd('loopkill', 'rip person',{'lkill'},
  995. function(args, speaker)
  996.     local players = getPlayer(args[1], speaker)
  997.     for i,v in pairs(players)do
  998.         if not FindTable(loopkillT, _players[v].Name) then
  999.             table.insert(loopkillT, _players[v].Name)
  1000.         end
  1001.         end
  1002. end)
  1003.  
  1004. addcmd('unloopkill', 'un rip person',{'unlkill'},
  1005. function(args, speaker)
  1006.     local players = getPlayer(args[1], speaker)
  1007.     for i,v in pairs(players)do
  1008.         if FindTable(loopkillT, _players[v].Name) then
  1009.             table.remove(loopkillT, GetInTable(loopkillT, _players[v].Name))
  1010.         end
  1011.         end
  1012. end)
  1013.  
  1014. addcmd('disabletools', 'removes their tools',{'loopremovetools'},
  1015. function(args, speaker)
  1016.     local players = getPlayer(args[1], speaker)
  1017.     for i,v in pairs(players)do
  1018.         if not FindTable(disabletoolsT, _players[v].Name) then
  1019.             table.insert(disabletoolsT, _players[v].Name)
  1020.         end
  1021.         end
  1022. end)
  1023.  
  1024. addcmd('enabletools', 'lets them have tools',{'unloopremovetools'},
  1025. function(args, speaker)
  1026.     local players = getPlayer(args[1], speaker)
  1027.     for i,v in pairs(players)do
  1028.         if FindTable(disabletoolsT, _players[v].Name) then
  1029.             table.remove(disabletoolsT, GetInTable(disabletoolsT, _players[v].Name))
  1030.         end
  1031.         end
  1032. end)
  1033.  
  1034. addcmd('ban', 'goodbye ;)',{},
  1035. function(args, speaker)
  1036.     local players = getPlayer(args[1], speaker)
  1037.     for i,v in pairs(players)do
  1038.         table.insert(banT, _players[v].userId)
  1039.         Notify(gPlayers[v].Name .. ' has been banned')
  1040.         end
  1041. end)
  1042.  
  1043. addcmd('clearbans', 'welcome back!',{'clrbans'},
  1044. function(args, speaker)
  1045.     banT = {}
  1046.     Notify('Removed all bans')
  1047. end)
  1048.  
  1049. addcmd('admin', 'ur an admin now ;o',{},
  1050. function(args, speaker)
  1051.     local players = getPlayer(args[1], speaker)
  1052.     for i,v in pairs(players)do
  1053.         table.insert(admins, _players[v].userId)
  1054.         Notify(gPlayers[v].Name .. ' has been given admin')
  1055.         end
  1056. end)
  1057.  
  1058. addcmd('bang','owo',{'rape'},
  1059. function(args, speaker)
  1060.     local players = getPlayer(args[1], speaker)
  1061.     for i,v in pairs(players)do
  1062.         rape(_players[v].Name)
  1063.     end
  1064. end)
  1065.  
  1066. addcmd('clearadmins', 'welcome back!',{'clradmins'},
  1067. function(args, speaker)
  1068.     admins = {}
  1069.     Notify('Removed all admins')
  1070. end)
  1071.  
  1072. addcmd('bgui', 'gives player billboard gui presenting text',{},
  1073. function(args, speaker)
  1074.     local players = getPlayer(args[1], speaker)
  1075.     for i,v in pairs(players)do
  1076. if gPlayers[v].Character.Head:FindFirstChild("BillboardGui") then
  1077. gPlayers[v].Character.Head:FindFirstChild("BillboardGui"):Remove() 
  1078. end
  1079.  
  1080.     local msg = table.concat(args, " ")
  1081.     local newmsg = string.gsub(msg, args[1] .. " ", "")
  1082.  
  1083. y = Instance.new("BillboardGui")
  1084. y.Size = UDim2.new(0,100,0,150)
  1085. y.StudsOffset = Vector3.new(0,1,0)
  1086. y.Parent = gPlayers[v].Character.Head
  1087. y.Adornee = gPlayers[v].Character.Head
  1088. f = Instance.new("TextLabel")
  1089. f.Parent = y
  1090. f.BackgroundTransparency = 1
  1091. f.Position = UDim2.new(0,0,0,-50)
  1092. f.Size = UDim2.new(0,100,0,100)
  1093. f.Font = "Highway"
  1094. f.FontSize = "Size48"
  1095. f.Text = newmsg
  1096. f.TextStrokeColor3 = Color3.new(0,0,0)
  1097. f.TextColor3 = Color3.new(255/255,255/255,255/255)
  1098. f.TextStrokeTransparency = 0
  1099. f.TextYAlignment = "Bottom"
  1100. end
  1101. end)
  1102.  
  1103. addcmd('rhats', 'no more hats',{'removehats'},
  1104. function(args, speaker)
  1105.     local players = getPlayer(args[1], speaker)
  1106.     for i,v in pairs(players) do
  1107.         for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  1108.             if v:IsA('Accessory') then
  1109.                 v:destroy()
  1110.             end
  1111.         end
  1112.     end
  1113. end)
  1114.  
  1115. addcmd('removetools', 'no more tools',{'rtools'},
  1116. function(args, speaker)
  1117.     local players = getPlayer(args[1], speaker)
  1118.     for i,v in pairs(players) do
  1119.         for i,v in pairs(gPlayers[v].Backpack:GetChildren()) do
  1120.             if v:IsA('Tool') or v:IsA('HopperBin') then
  1121.                 v:destroy()
  1122.             end
  1123.     for i,v in pairs(players) do
  1124.         for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  1125.             if v:IsA('Tool') or v:IsA('HopperBin') then
  1126.                 v:destroy()
  1127.                 end
  1128.         end
  1129.         end
  1130.         end
  1131.     end
  1132. end)
  1133.  
  1134. addcmd('sit', 'makes someone sit',{''},
  1135. function(args, speaker)
  1136.     local players = getPlayer(args[1], speaker)
  1137.     for i,v in pairs(players) do
  1138.         gPlayers[v].Character.Humanoid.Sit = true
  1139.     end
  1140. end)
  1141.  
  1142. addcmd('unsit', 'makes someone stand',{'stand'},
  1143. function(args, speaker)
  1144.     local players = getPlayer(args[1], speaker)
  1145.     for i,v in pairs(players) do
  1146.         gPlayers[v].Character.Humanoid.Sit = false
  1147.     end
  1148. end)
  1149.  
  1150. addcmd('gravity', 'workspace gravity',{''},
  1151. function(args, speaker)
  1152. workspace.Gravity = args[1]
  1153. end)
  1154.  
  1155. addcmd('serverinfo', 'gives you info about the server',{'info'},
  1156. function(args, speaker)
  1157. wait(0.5)
  1158.  
  1159. -- Objects
  1160.  
  1161. local Sinfo = Instance.new("ScreenGui")
  1162. local Time = Instance.new("TextLabel")
  1163. local TextLabel = Instance.new("TextLabel")
  1164. local TextLabel3 = Instance.new("TextLabel")
  1165. local name = Instance.new("TextLabel")
  1166. local fe = Instance.new("TextLabel")
  1167. local players = Instance.new("TextLabel")
  1168. local maxplayers = Instance.new("TextLabel")
  1169. local TextLabel2 = Instance.new("TextLabel")
  1170. local playerid = Instance.new("TextLabel")
  1171. local appearance = Instance.new("TextLabel")
  1172. local placeid = Instance.new("TextLabel")
  1173. local exit = Instance.new("TextButton")
  1174.  
  1175. -- Properties
  1176.  
  1177. Sinfo.Name = "Sinfo"
  1178. Sinfo.Parent = game.Players.LocalPlayer.PlayerGui
  1179.  
  1180. Time.Name = "Time"
  1181. Time.Parent = Sinfo
  1182. Time.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1183. Time.BackgroundTransparency = 1
  1184. Time.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1185. Time.Position = UDim2.new(0, 20, 0.924000025, 0)
  1186. Time.Size = UDim2.new(0, 1000, 0, 20)
  1187. Time.Font = Enum.Font.ArialBold
  1188. Time.FontSize = Enum.FontSize.Size14
  1189. Time.Text = "0 Hours, 0 Minute(s), 0 Seconds"
  1190. Time.TextColor3 = Color3.new(1, 1, 1)
  1191. Time.TextStrokeTransparency = 0
  1192.  
  1193. TextLabel.Name = "Text Label"
  1194. TextLabel.Parent = Sinfo
  1195. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1196. TextLabel.BackgroundTransparency = 1
  1197. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  1198. TextLabel.Position = UDim2.new(0, 50, 0.924000025, 0)
  1199. TextLabel.Size = UDim2.new(0, 600, 0, 20)
  1200. TextLabel.Font = Enum.Font.ArialBold
  1201. TextLabel.FontSize = Enum.FontSize.Size14
  1202. TextLabel.Text = "Server Time:"
  1203. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  1204. TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
  1205. TextLabel.TextStrokeTransparency = 0
  1206.  
  1207. TextLabel3.Name = "Text Label3"
  1208. TextLabel3.Parent = Sinfo
  1209. TextLabel3.BackgroundColor3 = Color3.new(1, 1, 1)
  1210. TextLabel3.BackgroundTransparency = 1
  1211. TextLabel3.BorderColor3 = Color3.new(0, 0, 0)
  1212. TextLabel3.Position = UDim2.new(0, -250, 0.924000025, 0)
  1213. TextLabel3.Size = UDim2.new(0, 600, 0, 20)
  1214. TextLabel3.Font = Enum.Font.ArialBold
  1215. TextLabel3.FontSize = Enum.FontSize.Size14
  1216. TextLabel3.Text = "Local Player:"
  1217. TextLabel3.TextColor3 = Color3.new(0, 0, 0)
  1218. TextLabel3.TextStrokeColor3 = Color3.new(1, 1, 1)
  1219. TextLabel3.TextStrokeTransparency = 0
  1220.  
  1221. name.Name = "name"
  1222. name.Parent = Sinfo
  1223. name.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1224. name.BackgroundTransparency = 1
  1225. name.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1226. name.Position = UDim2.new(0, 350, 0.899999976, 0)
  1227. name.Size = UDim2.new(0, 1000, 0, 20)
  1228. name.Font = Enum.Font.ArialBold
  1229. name.FontSize = Enum.FontSize.Size14
  1230. name.Text = "Loading Place Name"
  1231. name.TextColor3 = Color3.new(1, 1, 1)
  1232. name.TextStrokeTransparency = 0
  1233.  
  1234. fe.Name = "fe"
  1235. fe.Parent = Sinfo
  1236. fe.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1237. fe.BackgroundTransparency = 1
  1238. fe.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1239. fe.Position = UDim2.new(0, 350, 0.949999988, 0)
  1240. fe.Size = UDim2.new(0, 1000, 0, 20)
  1241. fe.Font = Enum.Font.ArialBold
  1242. fe.FontSize = Enum.FontSize.Size14
  1243. fe.Text = "Loading FE Status"
  1244. fe.TextColor3 = Color3.new(1, 1, 1)
  1245. fe.TextStrokeTransparency = 0
  1246.  
  1247. players.Name = "players"
  1248. players.Parent = Sinfo
  1249. players.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1250. players.BackgroundTransparency = 1
  1251. players.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1252. players.Position = UDim2.new(0, 530, 0.899999976, 0)
  1253. players.Size = UDim2.new(0, 1000, 0, 20)
  1254. players.Font = Enum.Font.ArialBold
  1255. players.FontSize = Enum.FontSize.Size14
  1256. players.Text = "Loading Players"
  1257. players.TextColor3 = Color3.new(1, 1, 1)
  1258. players.TextStrokeTransparency = 0
  1259.  
  1260. maxplayers.Name = "maxplayers"
  1261. maxplayers.Parent = Sinfo
  1262. maxplayers.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1263. maxplayers.BackgroundTransparency = 1
  1264. maxplayers.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1265. maxplayers.Position = UDim2.new(0, 530, 0.949999988, 0)
  1266. maxplayers.Size = UDim2.new(0, 1000, 0, 20)
  1267. maxplayers.Font = Enum.Font.ArialBold
  1268. maxplayers.FontSize = Enum.FontSize.Size14
  1269. maxplayers.Text = "Loading Max Players"
  1270. maxplayers.TextColor3 = Color3.new(1, 1, 1)
  1271. maxplayers.TextStrokeTransparency = 0
  1272.  
  1273. TextLabel2.Name = "Text Label2"
  1274. TextLabel2.Parent = Sinfo
  1275. TextLabel2.BackgroundColor3 = Color3.new(1, 1, 1)
  1276. TextLabel2.BackgroundTransparency = 1
  1277. TextLabel2.BorderColor3 = Color3.new(0, 0, 0)
  1278. TextLabel2.Position = UDim2.new(0, 400, 0.924000025, 0)
  1279. TextLabel2.Size = UDim2.new(0, 600, 0, 20)
  1280. TextLabel2.Font = Enum.Font.ArialBold
  1281. TextLabel2.FontSize = Enum.FontSize.Size14
  1282. TextLabel2.Text = "Statistics:"
  1283. TextLabel2.TextColor3 = Color3.new(0, 0, 0)
  1284. TextLabel2.TextStrokeColor3 = Color3.new(1, 1, 1)
  1285. TextLabel2.TextStrokeTransparency = 0
  1286.  
  1287. playerid.Name = "playerid"
  1288. playerid.Parent = Sinfo
  1289. playerid.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1290. playerid.BackgroundTransparency = 1
  1291. playerid.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1292. playerid.Position = UDim2.new(0, -330, 0.899999976, 0)
  1293. playerid.Size = UDim2.new(0, 1000, 0, 20)
  1294. playerid.Font = Enum.Font.ArialBold
  1295. playerid.FontSize = Enum.FontSize.Size14
  1296. playerid.Text = "Loading Player ID"
  1297. playerid.TextColor3 = Color3.new(1, 1, 1)
  1298. playerid.TextStrokeTransparency = 0
  1299.  
  1300. appearance.Name = "appearance"
  1301. appearance.Parent = Sinfo
  1302. appearance.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1303. appearance.BackgroundTransparency = 1
  1304. appearance.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1305. appearance.Position = UDim2.new(0, -330, 0.949999988, 0)
  1306. appearance.Size = UDim2.new(0, 1000, 0, 20)
  1307. appearance.Font = Enum.Font.ArialBold
  1308. appearance.FontSize = Enum.FontSize.Size14
  1309. appearance.Text = "Loading Appearance ID"
  1310. appearance.TextColor3 = Color3.new(1, 1, 1)
  1311. appearance.TextStrokeTransparency = 0
  1312.  
  1313. placeid.Name = "placeid"
  1314. placeid.Parent = Sinfo
  1315. placeid.BackgroundColor3 = Color3.new(0, 0.8, 1)
  1316. placeid.BackgroundTransparency = 1
  1317. placeid.BorderColor3 = Color3.new(0.2, 0.8, 0.2)
  1318. placeid.Position = UDim2.new(0, 700, 0.899999976, 0)
  1319. placeid.Size = UDim2.new(0, 1000, 0, 20)
  1320. placeid.Font = Enum.Font.ArialBold
  1321. placeid.FontSize = Enum.FontSize.Size14
  1322. placeid.Text = "Loading Place ID"
  1323. placeid.TextColor3 = Color3.new(1, 1, 1)
  1324. placeid.TextStrokeTransparency = 0
  1325.  
  1326. exit.Name = "exit"
  1327. exit.Parent = Sinfo
  1328. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  1329. exit.BorderColor3 = Color3.new(0, 0, 0)
  1330. exit.Position = UDim2.new(0, 1150, 0.944999993, 0)
  1331. exit.Size = UDim2.new(0, 100, 0, 25)
  1332. exit.FontSize = Enum.FontSize.Size10
  1333. exit.Text = "Exit"
  1334. exit.TextColor3 = Color3.new(0, 0, 0)
  1335.  
  1336. wait(0.5)
  1337. game.Players.LocalPlayer.PlayerGui.Sinfo.name.Text = game.Name
  1338. game.Players.LocalPlayer.PlayerGui.Sinfo.playerid.Text = "Player ID: " ..game.Players.LocalPlayer.UserId
  1339. if game.Workspace.FilteringEnabled == true then
  1340.     game.Players.LocalPlayer.PlayerGui.Sinfo.fe.Text = "Filtering Enabled"
  1341. elseif game.Workspace.FilteringEnabled == false then
  1342.     game.Players.LocalPlayer.PlayerGui.Sinfo.fe.Text = "Filtering Disabled"
  1343. end
  1344. players = game.Players:getPlayers()
  1345. game.Players.LocalPlayer.PlayerGui.Sinfo.maxplayers.Text = game.Players.MaxPlayers.. " Players Max"
  1346. game.Players.LocalPlayer.PlayerGui.Sinfo.placeid.Text = "Place ID: " ..game.PlaceId
  1347.  
  1348. game.Players.LocalPlayer.PlayerGui.Sinfo.exit.MouseButton1Click:Connect(function()
  1349. wait()
  1350. game.Players.LocalPlayer.PlayerGui.Sinfo:Destroy()
  1351. end)
  1352.  
  1353. while true do
  1354.     wait()
  1355.     game.Players.LocalPlayer.PlayerGui.Sinfo.players.Text = #players.. " Player(s)"
  1356.     game.Players.LocalPlayer.PlayerGui.Sinfo.appearance.Text = "Appearance: " ..game.Players.LocalPlayer.CharacterAppearanceId
  1357.     local seconds = math.floor(workspace.DistributedGameTime)
  1358.     local minutes = math.floor(workspace.DistributedGameTime / 60)
  1359.     local hours = math.floor(workspace.DistributedGameTime / 60 / 60)
  1360.     local seconds = seconds - (minutes * 60)
  1361.     local minutes = minutes - (hours * 60)
  1362.     if hours < 1 then
  1363.         if minutes < 1 then
  1364.             game.Players.LocalPlayer.PlayerGui.Sinfo.Time.Text = seconds .. " Second(s)"
  1365.         else
  1366.             game.Players.LocalPlayer.PlayerGui.Sinfo.Time.Text = minutes .. " Minute(s), " .. seconds .. " Second(s)"
  1367.         end
  1368.     else
  1369.         game.Players.LocalPlayer.PlayerGui.Sinfo.Time.Text = hours .. " Hour(s), " .. minutes .. " Minute(s), " .. seconds .. " Second(s)"
  1370.     end
  1371. end
  1372. end)
  1373.  
  1374. addcmd('sparkles', 'give a player sparkles',{},
  1375. function(args, speaker)
  1376.     local players = getPlayer(args[1], speaker)
  1377.     for i,v in pairs(players)do
  1378.         local pchar=_char(v)
  1379.         local Sparkles1 = Instance.new("Sparkles", pchar.Head)
  1380.         local Sparkles2 = Instance.new("Sparkles", pchar.HumanoidRootPart)
  1381.         local Sparkles3 = Instance.new("Sparkles", pchar["Left Arm"])
  1382.         local Sparkles4 = Instance.new("Sparkles", pchar["Right Arm"])
  1383.         local Sparkles5 = Instance.new("Sparkles", pchar["Left Leg"])
  1384.         local Sparkles6 = Instance.new("Sparkles", pchar["Right Leg"])
  1385.         Sparkles1.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1386.         Sparkles2.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1387.         Sparkles3.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1388.         Sparkles4.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1389.         Sparkles5.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1390.         Sparkles6.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1391.     end
  1392. end)
  1393.  
  1394. addcmd('nosparkles', 'remove sparkles from a player',{'unsparkles'},
  1395. function(args, speaker)
  1396.     local players = getPlayer(args[1], speaker)
  1397.     for i,v in pairs(players)do
  1398.         local pchar=_char(v)
  1399.         for j,v1 in pairs(pchar.Head:GetChildren()) do
  1400.             if v1:IsA("Sparkles") then
  1401.                 v1:Destroy()
  1402.             end
  1403. end
  1404.         for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  1405.             if v1:IsA("Sparkles") then
  1406.                 v1:Destroy()
  1407.             end
  1408. end
  1409.         for j,v1 in pairs(pchar["Left Arm"]:GetChildren()) do
  1410.             if v1:IsA("Sparkles") then
  1411.                 v1:Destroy()
  1412.             end
  1413. end
  1414.         for j,v1 in pairs(pchar["Right Arm"]:GetChildren()) do
  1415.             if v1:IsA("Sparkles") then
  1416.                 v1:Destroy()
  1417.             end
  1418. end
  1419.         for j,v1 in pairs(pchar["Left Leg"]:GetChildren()) do
  1420.             if v1:IsA("Sparkles") then
  1421.                 v1:Destroy()
  1422.             end
  1423. end
  1424.         for j,v1 in pairs(pchar["Right Leg"]:GetChildren()) do
  1425.             if v1:IsA("Sparkles") then
  1426.                 v1:Destroy()
  1427.             end
  1428.         end
  1429.     end
  1430. end)
  1431.  
  1432. addcmd('smoke', 'give a player smoke',{},
  1433. function(args, speaker)
  1434.     local players = getPlayer(args[1], speaker)
  1435.     for i,v in pairs(players)do
  1436.         local pchar=_char(v)
  1437.         Instance.new("Smoke", pchar.HumanoidRootPart)
  1438.     end
  1439. end)
  1440.  
  1441. addcmd('addstat', 'give a player smoke',{'stat'},
  1442. function(args, speaker)
  1443.     local players = getPlayer(args[1], speaker)
  1444.     for i,v in pairs(players)do
  1445.     wait(0.5)
  1446.    
  1447.     function meep()
  1448.         for _, child in pairs(gPlayers[v].leaderstats:GetChildren()) do
  1449.     if child.Name == "IY" then
  1450.         child:Destroy()
  1451.     end
  1452. end
  1453.  
  1454.     local score = Instance.new("StringValue")
  1455.    
  1456.     score.Name = "IY"
  1457.     score.Value = (args[2])
  1458.  
  1459.     score.Parent = gPlayers[v].leaderstats
  1460.     end
  1461.    
  1462.    
  1463.     if gPlayers[v]:FindFirstChild("leaderstats") then
  1464.     meep()
  1465.     else
  1466.     local stats = Instance.new("IntValue")
  1467.     stats.Name = "leaderstats"
  1468.     stats.Parent = gPlayers[v]
  1469.     wait(0.5)
  1470.     meep()
  1471.     end
  1472.     end
  1473. end)
  1474.  
  1475. addcmd('unsmoke', 'remove smoke from a player',{'nosmoke'},
  1476. function(args, speaker)
  1477.     local players = getPlayer(args[1], speaker)
  1478.     for i,v in pairs(players)do
  1479.         local pchar=_char(v)
  1480.         for j,v1 in pairs(pchar.HumanoidRootPart:GetChildren()) do
  1481.             if v1:IsA("Smoke") then
  1482.                 v1:Destroy()
  1483.             end
  1484.         end
  1485.     end
  1486. end)
  1487.  
  1488. addcmd('removeterrain', 'rip terrain',{'noterrain','clrterrain'},
  1489. function(args, speaker)
  1490. game.Workspace.Terrain:Clear()
  1491. end)
  1492.  
  1493. addcmd('smite','get hit by lightning',{},
  1494. function(args, speaker)
  1495.     local players = getPlayer(args[1], speaker)
  1496.     for i,v in pairs(players)do
  1497. spawn(function()
  1498.         local pchar=_char(v)
  1499. game.Lighting.Ambient = Color3.new(0,0,0)
  1500. local time_=tonumber(1)
  1501. game.Lighting:SetMinutesAfterMidnight(time_*60)
  1502. game.Lighting.Brightness = 0
  1503.  
  1504. local s = Instance.new("Sound")
  1505.  
  1506.  
  1507. s.Name = "thunder"
  1508. s.SoundId = "http://www.roblox.com/asset/?id=357559831"
  1509. s.Volume = 10
  1510. s.Pitch = 1
  1511. s.Looped = false
  1512. s.archivable = true
  1513.  
  1514. s.Parent = pchar.Head
  1515.  
  1516. wait()
  1517.  
  1518. s:play()
  1519.  
  1520. wait(1)
  1521.  
  1522. local e = Instance.new("Explosion")
  1523.    
  1524. e.BlastRadius = 5
  1525.  
  1526. e.BlastPressure = 1000
  1527.  
  1528. e.Parent = game.Workspace
  1529.  
  1530. e.Position = pchar.HumanoidRootPart.Position
  1531.  
  1532. System = {}
  1533.  
  1534. System.Create = function(a, c)
  1535.     local e = Instance.new(a)
  1536.     for d, a in pairs(c) do
  1537.         local b, a = ypcall(function()
  1538.             return e[d]
  1539.         end)
  1540.         if b then
  1541.             e[d] = c[d]
  1542.         end
  1543.     end
  1544.     return e
  1545. end
  1546. function b(d, b)
  1547.     local c = getfenv(d)
  1548.     local a = setmetatable({}, {
  1549.         __index = function(a, a)
  1550.             if a:lower() == 'script' then
  1551.                 return b
  1552.             else
  1553.                 return c[a]
  1554.             end
  1555.         end
  1556.     })
  1557.     setfenv(d, a)
  1558.     ypcall(function()
  1559.         d()
  1560.     end)
  1561. end
  1562. c = {}
  1563. mas = Instance.new("Model",game:GetService("Lighting"))
  1564. mas.Name = "CompiledModel"
  1565. o1 = System.Create("Model",{
  1566. ["Name"] = "SMITE",
  1567. ["Parent"] = mas,
  1568. })
  1569. o2 = System.Create("Part",{
  1570. ["Parent"] = o1,
  1571. ["Material"] = Enum.Material.Cobblestone,
  1572. ["BrickColor"] = BrickColor.new("New Yeller"),
  1573. ["Transparency"] = 0.60000002384186,
  1574. ["Position"] = pchar.HumanoidRootPart.Position,
  1575. ["Anchored"] = true,
  1576. ["CanCollide"] = false,
  1577. ["Size"] = Vector3.new(8.39999962, 578.400024, 0.99999994),
  1578. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1579. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1580. ["Color"] = Color3.new(1, 1, 0),
  1581. })
  1582. o3 = System.Create("Part",{
  1583. ["Parent"] = o1,
  1584. ["Material"] = Enum.Material.Foil,
  1585. ["BrickColor"] = BrickColor.new("New Yeller"),
  1586. ["Transparency"] = 0.40000000596046,
  1587. ["Position"] = pchar.HumanoidRootPart.Position,
  1588. ["Rotation"] = Vector3.new(-0, -90, 0),
  1589. ["Anchored"] = true,
  1590. ["CanCollide"] = false,
  1591. ["Size"] = Vector3.new(7.39999962, 578.400024, 7.39999962),
  1592. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1593. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1594. ["Color"] = Color3.new(1, 1, 0),
  1595. })
  1596. o4 = System.Create("PointLight",{
  1597. ["Parent"] = o3,
  1598. ["Brightness"] = 10000000000,
  1599. ["Range"] = 60,
  1600. })
  1601. o5 = System.Create("Part",{
  1602. ["Parent"] = o1,
  1603. ["Material"] = Enum.Material.Cobblestone,
  1604. ["BrickColor"] = BrickColor.new("New Yeller"),
  1605. ["Transparency"] = 0.60000002384186,
  1606. ["Position"] = pchar.HumanoidRootPart.Position,
  1607. ["Rotation"] = Vector3.new(-0, -90, 0),
  1608. ["Anchored"] = true,
  1609. ["CanCollide"] = false,
  1610. ["Size"] = Vector3.new(8.39999962, 578.400024, 0.99999994),
  1611. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1612. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1613. ["Color"] = Color3.new(1, 1, 0),
  1614. })
  1615. o6 = System.Create("Part",{
  1616. ["Parent"] = o1,
  1617. ["Material"] = Enum.Material.Cobblestone,
  1618. ["BrickColor"] = BrickColor.new("New Yeller"),
  1619. ["Transparency"] = 0.60000002384186,
  1620. ["Position"] = pchar.HumanoidRootPart.Position,
  1621. ["Rotation"] = Vector3.new(-180, 0, -180),
  1622. ["Anchored"] = true,
  1623. ["CanCollide"] = false,
  1624. ["Size"] = Vector3.new(8.39999962, 578.400024, 0.99999994),
  1625. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1626. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1627. ["Color"] = Color3.new(1, 1, 0),
  1628. })
  1629. o7 = System.Create("Part",{
  1630. ["Parent"] = o1,
  1631. ["Material"] = Enum.Material.Cobblestone,
  1632. ["BrickColor"] = BrickColor.new("New Yeller"),
  1633. ["Transparency"] = 0.60000002384186,
  1634. ["Position"] = pchar.HumanoidRootPart.Position,
  1635. ["Rotation"] = Vector3.new(0, 90, 0),
  1636. ["Anchored"] = true,
  1637. ["CanCollide"] = false,
  1638. ["Size"] = Vector3.new(8.39999962, 379.800018, 0.99999994),
  1639. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1640. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1641. ["Color"] = Color3.new(1, 1, 0),
  1642. })
  1643. mas.Parent = workspace
  1644. mas:MakeJoints()
  1645. local b = mas:GetChildren()
  1646. for a = 1, #b do
  1647.     b[a].Parent = workspace
  1648.     ypcall(function()
  1649.         b[a]:MakeJoints()
  1650.     end)
  1651. end
  1652. mas:Destroy()
  1653. for a = 1, #c do
  1654.     coroutine.resume(c[a])
  1655. end
  1656.  
  1657. wait(0.5)
  1658. game.workspace.SMITE:Destroy()
  1659.  
  1660.  
  1661. wait(1)
  1662. game.Lighting.Brightness = 1
  1663. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  1664. game.Lighting.TimeOfDay = 14
  1665. end)
  1666. end
  1667. end)
  1668.  
  1669. addcmd('settings', 'gives you settings window',{'options'},
  1670. function(args, speaker)
  1671. -- Objects
  1672.  
  1673. local SettingsGUI = Instance.new("ScreenGui")
  1674. local FeedbackMain = Instance.new("Frame")
  1675. local Title = Instance.new("TextLabel")
  1676. local credit = Instance.new("TextLabel")
  1677. local close = Instance.new("TextButton")
  1678. local checkboxText = Instance.new("TextLabel")
  1679. local CheckBox = Instance.new("ImageButton")
  1680. local MtimeInput = Instance.new("TextButton")
  1681. local Input = Instance.new("TextBox")
  1682. local preText = Instance.new("TextLabel")
  1683. local SetBcolor = Instance.new("TextButton")
  1684. local RB = Instance.new("TextButton")
  1685. local Input_2 = Instance.new("TextBox")
  1686. local setpre = Instance.new("TextButton")
  1687. local bcolortxt = Instance.new("TextLabel")
  1688. local BB = Instance.new("TextButton")
  1689. local Input_3 = Instance.new("TextBox")
  1690. local GB = Instance.new("TextButton")
  1691. local Input_4 = Instance.new("TextBox")
  1692. local Rbox = Instance.new("TextButton")
  1693. local Input_5 = Instance.new("TextBox")
  1694. local Gbox = Instance.new("TextButton")
  1695. local Input_6 = Instance.new("TextBox")
  1696. local Bbox = Instance.new("TextButton")
  1697. local Input_7 = Instance.new("TextBox")
  1698. local InputBox = Instance.new("TextButton")
  1699. local Input_8 = Instance.new("TextBox")
  1700. local MTText = Instance.new("TextLabel")
  1701. local setMT = Instance.new("TextButton")
  1702. local CheckBoxS = Instance.new("ImageButton")
  1703. local slocktext = Instance.new("TextLabel")
  1704. local CheckBoxJL = Instance.new("ImageButton")
  1705. local JLtext = Instance.new("TextLabel")
  1706.  
  1707. -- Properties
  1708.  
  1709. SettingsGUI.Name = "SettingsGUI"
  1710. SettingsGUI.Parent = game.Players.LocalPlayer.PlayerGui
  1711.  
  1712. FeedbackMain.Name = "FeedbackMain"
  1713. FeedbackMain.Parent = SettingsGUI
  1714. FeedbackMain.BackgroundColor3 = Color3.new(1, 1, 1)
  1715. FeedbackMain.Position = UDim2.new(1, 100, 1, -300)
  1716. FeedbackMain.Size = UDim2.new(0, 300, 0, 300)
  1717. FeedbackMain.Style = Enum.FrameStyle.DropShadow
  1718.  
  1719. Title.Name = "Title"
  1720. Title.Parent = FeedbackMain
  1721. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  1722. Title.BackgroundTransparency = 1
  1723. Title.Size = UDim2.new(1, 0, 0, 30)
  1724. Title.Font = Enum.Font.SourceSansBold
  1725. Title.FontSize = Enum.FontSize.Size24
  1726. Title.Text = "Settings"
  1727. Title.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  1728.  
  1729. credit.Name = "credit"
  1730. credit.Parent = FeedbackMain
  1731. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  1732. credit.BackgroundTransparency = 1
  1733. credit.Position = UDim2.new(0, 0, 0, 260)
  1734. credit.Size = UDim2.new(1, 0, 0, 30)
  1735. credit.Font = Enum.Font.SourceSansItalic
  1736. credit.FontSize = Enum.FontSize.Size18
  1737. credit.Text = "Created by IoIman616 & DesiredUsername1233"
  1738. credit.TextColor3 = Color3.new(0, 0, 0)
  1739. credit.TextScaled = true
  1740. credit.TextStrokeColor3 = Color3.new(1, 1, 1)
  1741. credit.TextStrokeTransparency = 0
  1742. credit.TextWrapped = true
  1743.  
  1744. close.Name = "close"
  1745. close.Parent = FeedbackMain
  1746. close.BackgroundColor3 = Color3.new(1, 0, 0)
  1747. close.BackgroundTransparency = 0.30000001192093
  1748. close.BorderColor3 = Color3.new(1, 0, 0)
  1749. close.Position = UDim2.new(1, -20, 1, -284)
  1750. close.Size = UDim2.new(0, 20, 0, 20)
  1751. close.Font = Enum.Font.SourceSans
  1752. close.FontSize = Enum.FontSize.Size14
  1753. close.Text = ""
  1754.  
  1755. checkboxText.Name = "checkboxText"
  1756. checkboxText.Parent = FeedbackMain
  1757. checkboxText.BackgroundColor3 = Color3.new(1, 1, 1)
  1758. checkboxText.BackgroundTransparency = 1
  1759. checkboxText.Position = UDim2.new(0, 0, 0, 43)
  1760. checkboxText.Size = UDim2.new(1, 0, 0, 30)
  1761. checkboxText.Font = Enum.Font.Code
  1762. checkboxText.FontSize = Enum.FontSize.Size18
  1763. checkboxText.Text = "Notifications"
  1764. checkboxText.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  1765.  
  1766. CheckBox.Name = "CheckBox"
  1767. CheckBox.Parent = FeedbackMain
  1768. CheckBox.BackgroundTransparency = 1
  1769. CheckBox.Position = UDim2.new(0, 10, 0, 40)
  1770. CheckBox.Size = UDim2.new(0, 30, 0, 30)
  1771. CheckBox.Image = "http://www.roblox.com/asset/?id=65492641"
  1772.  
  1773. MtimeInput.Name = "MtimeInput"
  1774. MtimeInput.Parent = FeedbackMain
  1775. MtimeInput.BackgroundColor3 = Color3.new(1, 1, 1)
  1776. MtimeInput.Position = UDim2.new(0, 8, 0, 159)
  1777. MtimeInput.Size = UDim2.new(0, 30, 0, 30)
  1778. MtimeInput.AutoButtonColor = false
  1779. MtimeInput.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1780. MtimeInput.Font = Enum.Font.SourceSans
  1781. MtimeInput.FontSize = Enum.FontSize.Size14
  1782. MtimeInput.Text = ""
  1783.  
  1784. Input.Name = "Input"
  1785. Input.Parent = MtimeInput
  1786. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  1787. Input.BackgroundTransparency = 1
  1788. Input.Position = UDim2.new(-0.699999988, 0, 0, -8)
  1789. Input.Size = UDim2.new(0, 30, 0, 30)
  1790. Input.Font = Enum.Font.SourceSansBold
  1791. Input.FontSize = Enum.FontSize.Size18
  1792. Input.MultiLine = true
  1793. Input.Text = ""
  1794. Input.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1795. Input.TextWrapped = true
  1796. Input.TextXAlignment = Enum.TextXAlignment.Left
  1797. Input.TextYAlignment = Enum.TextYAlignment.Top
  1798.  
  1799. preText.Name = "preText"
  1800. preText.Parent = FeedbackMain
  1801. preText.BackgroundColor3 = Color3.new(1, 1, 1)
  1802. preText.BackgroundTransparency = 1
  1803. preText.Position = UDim2.new(0, 0, 0, 118)
  1804. preText.Size = UDim2.new(1, 0, 0, 30)
  1805. preText.Font = Enum.Font.Code
  1806. preText.FontSize = Enum.FontSize.Size18
  1807. preText.Text = "Prefix"
  1808. preText.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  1809.  
  1810. SetBcolor.Name = "SetBcolor"
  1811. SetBcolor.Parent = FeedbackMain
  1812. SetBcolor.BackgroundColor3 = Color3.new(1, 1, 1)
  1813. SetBcolor.BorderSizePixel = 5
  1814. SetBcolor.Position = UDim2.new(0, 235, 0, 83)
  1815. SetBcolor.Size = UDim2.new(0, 40, 0, 25)
  1816. SetBcolor.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1817. SetBcolor.Font = Enum.Font.ArialBold
  1818. SetBcolor.FontSize = Enum.FontSize.Size18
  1819. SetBcolor.Text = "Set"
  1820.  
  1821. RB.Name = "RB"
  1822. RB.Parent = FeedbackMain
  1823. RB.BackgroundColor3 = Color3.new(1, 1, 1)
  1824. RB.Position = UDim2.new(0, 8, 0, 80)
  1825. RB.Size = UDim2.new(0, 30, 0, 30)
  1826. RB.AutoButtonColor = false
  1827. RB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1828. RB.Font = Enum.Font.SourceSans
  1829. RB.FontSize = Enum.FontSize.Size14
  1830. RB.Text = "R"
  1831.  
  1832. Input_2.Name = "Input"
  1833. Input_2.Parent = RB
  1834. Input_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1835. Input_2.BackgroundTransparency = 1
  1836. Input_2.Position = UDim2.new(0, 0, 0, -8)
  1837. Input_2.Size = UDim2.new(0, 30, 0, 30)
  1838. Input_2.Font = Enum.Font.SourceSansBold
  1839. Input_2.FontSize = Enum.FontSize.Size18
  1840. Input_2.MultiLine = true
  1841. Input_2.Text = ""
  1842. Input_2.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1843. Input_2.TextWrapped = true
  1844. Input_2.TextXAlignment = Enum.TextXAlignment.Left
  1845. Input_2.TextYAlignment = Enum.TextYAlignment.Top
  1846.  
  1847. setpre.Name = "setpre"
  1848. setpre.Parent = FeedbackMain
  1849. setpre.BackgroundColor3 = Color3.new(1, 1, 1)
  1850. setpre.BorderSizePixel = 5
  1851. setpre.Position = UDim2.new(0, 235, 0, 120)
  1852. setpre.Size = UDim2.new(0, 40, 0, 25)
  1853. setpre.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1854. setpre.Font = Enum.Font.ArialBold
  1855. setpre.FontSize = Enum.FontSize.Size18
  1856. setpre.Text = "Set"
  1857.  
  1858. bcolortxt.Name = "bcolortxt"
  1859. bcolortxt.Parent = FeedbackMain
  1860. bcolortxt.BackgroundColor3 = Color3.new(1, 1, 1)
  1861. bcolortxt.BackgroundTransparency = 1
  1862. bcolortxt.Position = UDim2.new(0, 0, 0, 78)
  1863. bcolortxt.Size = UDim2.new(1, 0, 0, 30)
  1864. bcolortxt.Font = Enum.Font.Code
  1865. bcolortxt.FontSize = Enum.FontSize.Size14
  1866. bcolortxt.Text = "Notification\nBorder Color"
  1867. bcolortxt.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  1868.  
  1869. BB.Name = "BB"
  1870. BB.Parent = FeedbackMain
  1871. BB.BackgroundColor3 = Color3.new(1, 1, 1)
  1872. BB.Position = UDim2.new(0, 60, 0, 80)
  1873. BB.Size = UDim2.new(0, 30, 0, 30)
  1874. BB.AutoButtonColor = false
  1875. BB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1876. BB.Font = Enum.Font.SourceSans
  1877. BB.FontSize = Enum.FontSize.Size14
  1878. BB.Text = "B"
  1879.  
  1880. Input_3.Name = "Input"
  1881. Input_3.Parent = BB
  1882. Input_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1883. Input_3.BackgroundTransparency = 1
  1884. Input_3.Position = UDim2.new(0, 0, 0, -8)
  1885. Input_3.Size = UDim2.new(0, 30, 0, 30)
  1886. Input_3.Font = Enum.Font.SourceSansBold
  1887. Input_3.FontSize = Enum.FontSize.Size18
  1888. Input_3.MultiLine = true
  1889. Input_3.Text = ""
  1890. Input_3.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1891. Input_3.TextWrapped = true
  1892. Input_3.TextXAlignment = Enum.TextXAlignment.Left
  1893. Input_3.TextYAlignment = Enum.TextYAlignment.Top
  1894.  
  1895. GB.Name = "GB"
  1896. GB.Parent = FeedbackMain
  1897. GB.BackgroundColor3 = Color3.new(1, 1, 1)
  1898. GB.Position = UDim2.new(0, 34, 0, 80)
  1899. GB.Size = UDim2.new(0, 30, 0, 30)
  1900. GB.AutoButtonColor = false
  1901. GB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1902. GB.Font = Enum.Font.SourceSans
  1903. GB.FontSize = Enum.FontSize.Size14
  1904. GB.Text = "G"
  1905.  
  1906. Input_4.Name = "Input"
  1907. Input_4.Parent = GB
  1908. Input_4.BackgroundColor3 = Color3.new(1, 1, 1)
  1909. Input_4.BackgroundTransparency = 1
  1910. Input_4.Position = UDim2.new(0, 0, 0, -8)
  1911. Input_4.Size = UDim2.new(0, 30, 0, 30)
  1912. Input_4.Font = Enum.Font.SourceSansBold
  1913. Input_4.FontSize = Enum.FontSize.Size18
  1914. Input_4.MultiLine = true
  1915. Input_4.Text = ""
  1916. Input_4.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1917. Input_4.TextWrapped = true
  1918. Input_4.TextXAlignment = Enum.TextXAlignment.Left
  1919. Input_4.TextYAlignment = Enum.TextYAlignment.Top
  1920.  
  1921. Rbox.Name = "Rbox"
  1922. Rbox.Parent = FeedbackMain
  1923. Rbox.BackgroundColor3 = Color3.new(1, 1, 1)
  1924. Rbox.Position = UDim2.new(0, 8, 0, 80)
  1925. Rbox.Size = UDim2.new(0, 30, 0, 30)
  1926. Rbox.AutoButtonColor = false
  1927. Rbox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1928. Rbox.Font = Enum.Font.SourceSans
  1929. Rbox.FontSize = Enum.FontSize.Size14
  1930. Rbox.Text = ""
  1931.  
  1932. Input_5.Name = "Input"
  1933. Input_5.Parent = Rbox
  1934. Input_5.BackgroundColor3 = Color3.new(1, 1, 1)
  1935. Input_5.BackgroundTransparency = 1
  1936. Input_5.Position = UDim2.new(0, -9, 0, -8)
  1937. Input_5.Size = UDim2.new(0, 30, 0, 30)
  1938. Input_5.Font = Enum.Font.SourceSansBold
  1939. Input_5.FontSize = Enum.FontSize.Size18
  1940. Input_5.MultiLine = true
  1941. Input_5.Text = ""
  1942. Input_5.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1943. Input_5.TextWrapped = true
  1944. Input_5.TextXAlignment = Enum.TextXAlignment.Left
  1945. Input_5.TextYAlignment = Enum.TextYAlignment.Top
  1946.  
  1947. Gbox.Name = "Gbox"
  1948. Gbox.Parent = FeedbackMain
  1949. Gbox.BackgroundColor3 = Color3.new(1, 1, 1)
  1950. Gbox.Position = UDim2.new(0, 34, 0, 80)
  1951. Gbox.Size = UDim2.new(0, 30, 0, 30)
  1952. Gbox.AutoButtonColor = false
  1953. Gbox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1954. Gbox.Font = Enum.Font.SourceSans
  1955. Gbox.FontSize = Enum.FontSize.Size14
  1956. Gbox.Text = ""
  1957.  
  1958. Input_6.Name = "Input"
  1959. Input_6.Parent = Gbox
  1960. Input_6.BackgroundColor3 = Color3.new(1, 1, 1)
  1961. Input_6.BackgroundTransparency = 1
  1962. Input_6.Position = UDim2.new(0, -9, 0, -8)
  1963. Input_6.Size = UDim2.new(0, 30, 0, 30)
  1964. Input_6.Font = Enum.Font.SourceSansBold
  1965. Input_6.FontSize = Enum.FontSize.Size18
  1966. Input_6.MultiLine = true
  1967. Input_6.Text = ""
  1968. Input_6.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1969. Input_6.TextWrapped = true
  1970. Input_6.TextXAlignment = Enum.TextXAlignment.Left
  1971. Input_6.TextYAlignment = Enum.TextYAlignment.Top
  1972.  
  1973. Bbox.Name = "Bbox"
  1974. Bbox.Parent = FeedbackMain
  1975. Bbox.BackgroundColor3 = Color3.new(1, 1, 1)
  1976. Bbox.Position = UDim2.new(0, 60, 0, 80)
  1977. Bbox.Size = UDim2.new(0, 30, 0, 30)
  1978. Bbox.AutoButtonColor = false
  1979. Bbox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  1980. Bbox.Font = Enum.Font.SourceSans
  1981. Bbox.FontSize = Enum.FontSize.Size14
  1982. Bbox.Text = ""
  1983.  
  1984. Input_7.Name = "Input"
  1985. Input_7.Parent = Bbox
  1986. Input_7.BackgroundColor3 = Color3.new(1, 1, 1)
  1987. Input_7.BackgroundTransparency = 1
  1988. Input_7.Position = UDim2.new(0, -9, 0, -8)
  1989. Input_7.Size = UDim2.new(0, 30, 0, 30)
  1990. Input_7.Font = Enum.Font.SourceSansBold
  1991. Input_7.FontSize = Enum.FontSize.Size18
  1992. Input_7.MultiLine = true
  1993. Input_7.Text = ""
  1994. Input_7.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  1995. Input_7.TextWrapped = true
  1996. Input_7.TextXAlignment = Enum.TextXAlignment.Left
  1997. Input_7.TextYAlignment = Enum.TextYAlignment.Top
  1998.  
  1999. InputBox.Name = "InputBox"
  2000. InputBox.Parent = FeedbackMain
  2001. InputBox.BackgroundColor3 = Color3.new(1, 1, 1)
  2002. InputBox.Position = UDim2.new(0, 8, 0, 120)
  2003. InputBox.Size = UDim2.new(0, 30, 0, 30)
  2004. InputBox.AutoButtonColor = false
  2005. InputBox.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  2006. InputBox.Font = Enum.Font.SourceSans
  2007. InputBox.FontSize = Enum.FontSize.Size14
  2008. InputBox.Text = ""
  2009.  
  2010. Input_8.Name = "Input"
  2011. Input_8.Parent = InputBox
  2012. Input_8.BackgroundColor3 = Color3.new(1, 1, 1)
  2013. Input_8.BackgroundTransparency = 1
  2014. Input_8.Position = UDim2.new(0, 0, 0, -8)
  2015. Input_8.Size = UDim2.new(0, 30, 0, 30)
  2016. Input_8.Font = Enum.Font.SourceSansBold
  2017. Input_8.FontSize = Enum.FontSize.Size18
  2018. Input_8.MultiLine = true
  2019. Input_8.Text = ""
  2020. Input_8.TextColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  2021. Input_8.TextWrapped = true
  2022. Input_8.TextXAlignment = Enum.TextXAlignment.Left
  2023. Input_8.TextYAlignment = Enum.TextYAlignment.Top
  2024.  
  2025. MTText.Name = "MTText"
  2026. MTText.Parent = FeedbackMain
  2027. MTText.BackgroundColor3 = Color3.new(1, 1, 1)
  2028. MTText.BackgroundTransparency = 1
  2029. MTText.Position = UDim2.new(0, 0, 0, 158)
  2030. MTText.Size = UDim2.new(1, 0, 0, 30)
  2031. MTText.Font = Enum.Font.Code
  2032. MTText.FontSize = Enum.FontSize.Size18
  2033. MTText.Text = "Message Time"
  2034. MTText.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  2035.  
  2036. setMT.Name = "setMT"
  2037. setMT.Parent = FeedbackMain
  2038. setMT.BackgroundColor3 = Color3.new(1, 1, 1)
  2039. setMT.BorderSizePixel = 5
  2040. setMT.Position = UDim2.new(0, 235, 0, 159)
  2041. setMT.Size = UDim2.new(0, 40, 0, 25)
  2042. setMT.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  2043. setMT.Font = Enum.Font.ArialBold
  2044. setMT.FontSize = Enum.FontSize.Size18
  2045. setMT.Text = "Set"
  2046.  
  2047. CheckBoxS.Name = "CheckBoxS"
  2048. CheckBoxS.Parent = FeedbackMain
  2049. CheckBoxS.BackgroundTransparency = 1
  2050. CheckBoxS.Position = UDim2.new(0, 10, 0, 195)
  2051. CheckBoxS.Size = UDim2.new(0, 30, 0, 30)
  2052. CheckBoxS.Image = "http://www.roblox.com/asset/?id=65492641"
  2053.  
  2054. slocktext.Name = "slocktext"
  2055. slocktext.Parent = FeedbackMain
  2056. slocktext.BackgroundColor3 = Color3.new(1, 1, 1)
  2057. slocktext.BackgroundTransparency = 1
  2058. slocktext.Position = UDim2.new(0, 0, 0, 195)
  2059. slocktext.Size = UDim2.new(1, 0, 0, 30)
  2060. slocktext.Font = Enum.Font.Code
  2061. slocktext.FontSize = Enum.FontSize.Size14
  2062. slocktext.Text = "Allow Friends On Serverlock"
  2063. slocktext.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  2064.  
  2065. CheckBoxJL.Name = "CheckBoxJL"
  2066. CheckBoxJL.Parent = FeedbackMain
  2067. CheckBoxJL.BackgroundTransparency = 1
  2068. CheckBoxJL.Position = UDim2.new(0, 10, 0, 230)
  2069. CheckBoxJL.Size = UDim2.new(0, 30, 0, 30)
  2070. CheckBoxJL.Image = "http://www.roblox.com/asset/?id=65492641"
  2071.  
  2072. JLtext.Name = "JLtext"
  2073. JLtext.Parent = FeedbackMain
  2074. JLtext.BackgroundColor3 = Color3.new(1, 1, 1)
  2075. JLtext.BackgroundTransparency = 1
  2076. JLtext.Position = UDim2.new(0, 0, 0, 230)
  2077. JLtext.Size = UDim2.new(1, 0, 0, 30)
  2078. JLtext.Font = Enum.Font.Code
  2079. JLtext.FontSize = Enum.FontSize.Size14
  2080. JLtext.Text = "Joined / Left Notifications"
  2081. JLtext.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  2082. wait(0.5)
  2083. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain:TweenPosition(UDim2.new(1,-300,1,-300),"Out","Quint",0.3,true)
  2084. wait(0.5)
  2085. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.close.MouseButton1Click:Connect(function()
  2086. wait()
  2087. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain:TweenPosition(UDim2.new(1,100,1,-300),"Out","Quint",0.3,true)
  2088. wait(1)
  2089. game.Players.LocalPlayer.PlayerGui.SettingsGUI:Destroy()
  2090. end)
  2091.  
  2092. --Message time
  2093.  
  2094. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.setMT.MouseButton1Click:Connect(function()
  2095. wait()
  2096.     game.Players.LocalPlayer.MSGtime.Value = game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.MtimeInput.Input.Text
  2097.     Notify('Set message time to ' ..game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.MtimeInput.Input.Text.. ' second(s)')
  2098. end)
  2099.  
  2100. --Border Color
  2101.  
  2102. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.SetBcolor.MouseButton1Click:Connect(function()
  2103. wait()
  2104.     notifyNOT.BorderColor = BrickColor.new(game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.Rbox.Input.Text,game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.Gbox.Input.Text,game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.Bbox.Input.Text)
  2105.     Notify('Set Border Color.')
  2106. end)
  2107.  
  2108. --Change prefix
  2109.  
  2110. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.setpre.MouseButton1Click:Connect(function()
  2111. wait()
  2112.     cmdprefix = game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.InputBox.Input.Text
  2113.     Notify('Set prefix to "' .. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.InputBox.Input.Text .. '"')
  2114. end)
  2115.  
  2116. --Check Box for notify
  2117.  
  2118. checked = "http://www.roblox.com/asset/?id=65492641"
  2119. unchecked = "http://www.roblox.com/asset/?id=65492651"
  2120. checkValue = game.Players.LocalPlayer.notify
  2121.  
  2122. if checkValue.Value == true then
  2123. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBox.Image = checked
  2124. else
  2125. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBox.Image = unchecked
  2126. end
  2127.  
  2128. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBox.MouseButton1Down:connect(function()
  2129. if checkValue.Value then
  2130. checkValue.Value = false
  2131. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBox.Image = unchecked
  2132. notifyNOT.Visible = false
  2133. else
  2134. checkValue.Value = true
  2135. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBox.Image = checked
  2136. notifyNOT.Visible = true
  2137. end
  2138. end)
  2139.  
  2140. --Check Box for allow friends on serverlock
  2141.  
  2142. checked2 = "http://www.roblox.com/asset/?id=65492641"
  2143. unchecked2 = "http://www.roblox.com/asset/?id=65492651"
  2144. checkValue2 = game.Players.LocalPlayer.allowfriends
  2145.  
  2146. if checkValue2.Value == true then
  2147. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxS.Image = checked2
  2148. else
  2149. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxS.Image = unchecked2
  2150. end
  2151.  
  2152. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxS.MouseButton1Down:connect(function()
  2153. if checkValue2.Value then
  2154. checkValue2.Value = false
  2155. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxS.Image = unchecked2
  2156. else
  2157. checkValue2.Value = true
  2158. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxS.Image = checked2
  2159. end
  2160. end)
  2161.  
  2162. --Check Box for JoinedLeft notifications
  2163.  
  2164. checked3 = "http://www.roblox.com/asset/?id=65492641"
  2165. unchecked3 = "http://www.roblox.com/asset/?id=65492651"
  2166. checkValue3 = game.Players.LocalPlayer.JLnotify
  2167.  
  2168. if checkValue3.Value == true then
  2169. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxJL.Image = checked3
  2170. else
  2171. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxJL.Image = unchecked3
  2172. end
  2173.  
  2174. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxJL.MouseButton1Down:connect(function()
  2175. if checkValue3.Value then
  2176. checkValue3.Value = false
  2177. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxJL.Image = unchecked3
  2178. else
  2179. checkValue3.Value = true
  2180. game.Players.LocalPlayer.PlayerGui.SettingsGUI.FeedbackMain.CheckBoxJL.Image = checked3
  2181. end
  2182. end)
  2183. end)
  2184.  
  2185. addcmd('btools', 'gives a player btools',{},
  2186. function(args, speaker)
  2187.     local players = getPlayer(args[1], speaker)
  2188.     if players ~= nil then
  2189.         for i, v in pairs(players) do
  2190.             Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 2
  2191.             Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 3
  2192.             Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 4
  2193.         end
  2194.     end
  2195. end)
  2196.  
  2197. addcmd('hsize', 'changes players hat size',{'hatsize'},
  2198. function(args, speaker)
  2199.     local players = getPlayer(args[1], speaker)
  2200.     for i,v in pairs(players) do
  2201.         for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  2202.             if v:IsA('Accessory') then
  2203.                 for a,b in pairs(v.Handle:GetChildren()) do
  2204.                     if b:IsA('SpecialMesh') then
  2205.                         b.Scale = args[2] * Vector3.new(1, 1, 1)
  2206.                     end
  2207.                 end
  2208.             end
  2209.         end
  2210.     end
  2211. end)
  2212.  
  2213. addcmd('headsize', 'changes players hat size',{''},
  2214. function(args, speaker)
  2215.     local players = getPlayer(args[1], speaker)
  2216.     for i,v in pairs(players) do
  2217.     local plrchar = _players[v].Character
  2218.         if args[2] == 1 then
  2219.             plrchar.Head.Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  2220.             plrchar.Head.Mesh.Offset = Vector3.new(0, 0, 0)
  2221.         else
  2222.             plrchar.Head.Mesh.Scale = args[2] * Vector3.new(1.25, 1.25, 1.25)
  2223.         end
  2224.     end
  2225. end)
  2226.  
  2227. addcmd('change', 'changes players hat size',{''},
  2228. function(args, speaker)
  2229.     local players = getPlayer(args[1], speaker)
  2230.     for i,v in pairs(players) do
  2231.         if _players[v]:FindFirstChild('leaderstats') then
  2232.             for i,v in pairs(_players[v].leaderstats:GetChildren()) do
  2233.                 if string.lower(v.Name) == string.lower(args[2]) and v:IsA('IntValue') or v:IsA('NumberValue') then
  2234.                     if args[3] then v.Value = tonumber(args[3]) end
  2235.                 end
  2236.             end
  2237.         end
  2238.         end
  2239. end)
  2240.  
  2241. addcmd('draw', 'drawing tool',{},
  2242. function(args, speaker)
  2243. for i,v in next,game:children()do
  2244.     pcall(function()
  2245.         local c=v.className;
  2246.         rawset(getfenv(0),c:sub(1,1):lower()..c:sub(2),game:service(c));
  2247.     end);
  2248. end;
  2249.  
  2250.  
  2251. user=players.LocalPlayer;
  2252. uname=user.Name;
  2253. guis=user.PlayerGui;
  2254. pack=user.Backpack;
  2255.  
  2256. keyDowns={};
  2257. freeKeys={};
  2258. shortcuts={};
  2259.  
  2260. _G.mine=_G.mine or{};
  2261.  
  2262. name='Draw3D';
  2263. url='http://www.roblox.com/asset/?id=%d';
  2264.  
  2265. iconNormal=url:format(96578285);
  2266. iconOnDown=url:format(96584484);
  2267.  
  2268. ver=0;
  2269. drawPixel=0.10;
  2270. _G.drawLimit=_G.drawLimit or 1000;
  2271.  
  2272. _G.drawColor=_G.drawColor or Color3.new();
  2273.  
  2274.  
  2275.  
  2276.  
  2277.  
  2278. destroy=game.remove;
  2279. find=game.findFirstChild;
  2280. new=Instance.new;
  2281. with=function(c)
  2282.     return function(p)
  2283.         local o=type(c)=='string'and new(c)or c;
  2284.         local x=p.Parent;p.Parent=nil;
  2285.         for i,v in next,p do
  2286.             o[i]=v;
  2287.         end;
  2288.         if(x)then
  2289.             o.Parent=x;
  2290.         end;
  2291.         return o;
  2292.     end;
  2293. end;
  2294. getPlace=function()
  2295.     if(find(workspace,'draw')==nil)then
  2296.         new('Model',workspace).Name='draw';
  2297.     end;
  2298.     if(find(workspace.draw,uname)==nil)then
  2299.         new('Model',workspace.draw).Name=uname;
  2300.     end;
  2301.     return workspace.draw[uname];
  2302. end;
  2303. drawLine=function(start,target)
  2304.     local gui=with'BlockMesh'{
  2305.         Parent=with'Part'{
  2306.             CFrame=CFrame.new(start,target)*CFrame.new(0,0,-(start-target).magnitude/2);
  2307.             Size=Vector3.new(drawPixel,drawPixel,(start-target).magnitude+.325*drawPixel);
  2308.             Parent=getPlace();
  2309.             Color=_G.drawColor;
  2310.             BottomSurface=0;
  2311.             Anchored=true;
  2312.             TopSurface=0;
  2313.             formFactor=3;
  2314.             Name=name;
  2315.     }}.Parent;
  2316.     table.insert(_G.mine,gui);
  2317.     return gui;
  2318. end;
  2319. onDown=function()
  2320.     if(drawing)then
  2321.         return nil;
  2322.     end;
  2323.     if(selectGui.Adornee)then
  2324.         destroy(selectGui.Adornee);
  2325.     end;
  2326.    
  2327.     drawing=true;
  2328.    
  2329.     mouse.Icon=iconOnDown;
  2330.     ver=ver+1;
  2331.    
  2332.    
  2333.     local cVer,start,target=ver,mouse.hit.p;
  2334.    
  2335.     local group={};
  2336.     repeat
  2337.         Wait(0.02);
  2338.        
  2339.         if(mouse.target and mouse.target.Name~=name and mouse.hit.p~=start)then
  2340.            
  2341.             target=mouse.hit.p;
  2342.            
  2343.             table.insert(group,drawLine(start,target));
  2344.            
  2345.             start=target;
  2346.         end;
  2347.     until ver~=cVer;
  2348.     drawing=false;
  2349.    
  2350.     local groupM=new('Model',getPlace());
  2351.     for i,v in next,group do
  2352.         if(v:IsDescendantOf(Workspace))then
  2353.             v.Parent=groupM;
  2354.         end;
  2355.     end;
  2356.     if(next(groupM:children())==nil)then
  2357.         destroy(groupM);
  2358.     end;
  2359. end;
  2360. onUp=function()
  2361.     mouse.Icon=iconNormal;
  2362.     ver=ver+1;
  2363. end;
  2364. onKeyDown=function(k)
  2365.     if(freeKeys[k]==false)then
  2366.         return false;
  2367.     end;
  2368.     freeKeys[k]=false;
  2369.     Wait(0.01);
  2370.     if(keyDowns[k])then
  2371.         keyDowns[k]();
  2372.     elseif(shortcuts[k])then
  2373.         shortcuts[k]();
  2374.     end;
  2375. end;
  2376. onKeyUp=function(k)
  2377.     freeKeys[k]=true;
  2378. end;
  2379. onMove=function()
  2380.  
  2381. end;
  2382. onSelect=function(lmouse)
  2383.     frame.Visible=true;
  2384.  
  2385.     mouse=lmouse;
  2386.    
  2387.     mouse.Icon=iconNormal;
  2388.    
  2389.     mouse.Button1Down:connect(onDown);
  2390.     mouse.KeyDown:connect(onKeyDown);
  2391.     mouse.Button1Up:connect(onUp);
  2392.     mouse.KeyUp:connect(onKeyUp);
  2393.     mouse.Move:connect(onMove);
  2394. end;
  2395. onDeselect=function()
  2396.     ver=ver+1;
  2397.     frame.Visible=false;
  2398.     selectGui.Adornee=nil;
  2399.     mouse.Icon=iconNormal;
  2400.     for i,v in next,freeKeys do
  2401.         freeKeys[i]=true;
  2402.     end;
  2403. end;
  2404. addButton=function(title,shortcut,fun)
  2405.     with'TextButton'{
  2406.         Text=string.format(' %s (%s)',title,shortcut);
  2407.         TextXAlignment=0;
  2408.         Parent=frame;
  2409.     }.MouseButton1Up:connect(fun);
  2410.    
  2411.     shortcuts[shortcut]=fun;
  2412.    
  2413.     local c=#frame:children();
  2414.     for i,v in next,frame:children()do
  2415.         v.Position=UDim2.new(0,0,0,20*(i-1));
  2416.         v.Size=UDim2.new(1,0,0,20);
  2417.     end;
  2418.    
  2419.     frame.Position=UDim2.new(1,-152,.5,-c*10);
  2420.     frame.Size=UDim2.new(0,150,0,c*20);
  2421. end;
  2422.  
  2423.  
  2424.  
  2425.  
  2426.  
  2427.  
  2428.  
  2429.  
  2430. for i,v in next,{guis;pack;}do
  2431.     pcall(function()
  2432.         repeat until destroy(v[name]);
  2433.     end);
  2434. end;
  2435.  
  2436.  
  2437.  
  2438. tool=with'HopperBin'{
  2439.     Parent=pack;
  2440.     Name=name;
  2441. };
  2442. tool.Deselected:connect(onDeselect);
  2443. tool.Selected:connect(onSelect);
  2444.  
  2445.  
  2446.  
  2447.  
  2448. screen=with'ScreenGui'{
  2449.     Parent=guis;
  2450.     Name=name;
  2451. };
  2452. frame=with'Frame'{
  2453.     Parent=screen;
  2454.     Visible=false;
  2455. };
  2456. clframe=with'Frame'{
  2457.     Position=UDim2.new(.5,-50,.5,-50);
  2458.     Size=UDim2.new(0,100,0,100);
  2459.     Visible=false;
  2460.     Parent=screen;
  2461. };
  2462. selectGui=with'SelectionBox'{
  2463.     Parent=screen;
  2464. };
  2465.  
  2466. local c=0;
  2467. for y=0,7 do
  2468.     for x=0,7 do
  2469.         local color=BrickColor.palette(c).Color;
  2470.        
  2471.         with'ImageButton'{
  2472.             Position=UDim2.new(.125*x,0,.125*y);
  2473.             Size=UDim2.new(.125,0,.125);
  2474.             BackgroundColor3=color;
  2475.             Parent=clframe;
  2476.         }.MouseButton1Up:connect(function()
  2477.             clframe.Visible=false;
  2478.             _G.drawColor=color;
  2479.         end);
  2480.        
  2481.         c=c+1;
  2482.     end;
  2483. end;
  2484.  
  2485. addButton('Color','c',function()
  2486.     clframe.Visible=true;
  2487. end);
  2488. addButton('Remove your draws','r',function()
  2489.     repeat
  2490.         destroy(_G.mine[1]);
  2491.         table.remove(_G.mine,1);
  2492.         Wait(0.01);
  2493.     until nil;
  2494. end);
  2495. addButton('Remove global draws','k',function()
  2496.     destroy(workspace.draw);
  2497.     while(_G.mine[1])do
  2498.         destroy(_G.mine[1]);
  2499.         table.remove(_G.mine,1);
  2500.     end;
  2501. end);
  2502. addButton('Remove selected','x',function()
  2503.     repeat
  2504.         if(find(workspace,'draw'))then
  2505.             local dt=mouse.target;
  2506.             if(dt and dt:IsDescendantOf(workspace.draw))then
  2507.                 selectGui.Adornee=dt.Parent;
  2508.             else
  2509.                 selectGui.Adornee=nil;
  2510.             end;
  2511.         else
  2512.             selectGui.Adornee=nil;
  2513.         end;
  2514.         Wait(0.01);
  2515.     until freeKeys.x;
  2516.     selectGui.Adornee=nil;
  2517. end);
  2518.  
  2519.  
  2520.  
  2521.  
  2522. repeat
  2523.     Wait(0.01);
  2524.     if(next(_G.mine)and _G.mine[_G.drawLimit])then
  2525.         destroy(_G.mine[1]);
  2526.         table.remove(_G.mine,1);
  2527.     end;
  2528. until script.Parent==nil or tool.Parent==nil;
  2529. script.Disabled=true;
  2530. destroy(screen);
  2531.  
  2532. end)
  2533.  
  2534. addcmd('god', 'gods player',{},
  2535. function(args, speaker)
  2536.     local players = getPlayer(args[1], speaker)
  2537.     for i,v in pairs(players)do
  2538.         local pchar=_char(v)
  2539.         if pchar then pchar.Humanoid.MaxHealth=math.huge end
  2540.     end
  2541. end)
  2542.  
  2543. addcmd('sgod', 'silently gods player',{},
  2544. function(args, speaker)
  2545.     local players = getPlayer(args[1], speaker)
  2546.     for i,v in pairs(players)do
  2547.         local pchar=_char(v)
  2548.         spawn(function()
  2549.             pchar.Humanoid.MaxHealth = 10000000
  2550.             wait()
  2551.             pchar.Humanoid.Health = 10000000
  2552.             Notify('Godded ' .. gPlayers[v].Name)
  2553.         end)
  2554.     end
  2555. end)
  2556.  
  2557. addcmd('ungod', 'removes god from a player',{},
  2558. function(args, speaker)
  2559.     local players = getPlayer(args[1], speaker)
  2560.     for i,v in pairs(players)do
  2561.         local pchar=_char(v)
  2562.         if pchar then
  2563.             pchar.Humanoid.MaxHealth=100
  2564.             pchar.Humanoid.Health=100
  2565.         end
  2566.     end
  2567. end)
  2568.  
  2569. addcmd('heal', 'resets a players health',{},
  2570. function(args, speaker)
  2571.     local players = getPlayer(args[1], speaker)
  2572.     for i,v in pairs(players)do
  2573.         local pchar=_char(v)
  2574.         if pchar then pchar.Humanoid.Health=pchar.Humanoid.MaxHealth;end
  2575.     end
  2576. end)
  2577.  
  2578. addcmd('fart', 'makes u fart',{},
  2579. function(args, speaker)
  2580.     local players = getPlayer(args[1], speaker)
  2581.     for i,v in pairs(players)do
  2582.     spawn(function()
  2583.         local pchar=_char(v)
  2584. fart = Instance.new("Smoke")
  2585. fart.Parent = pchar.HumanoidRootPart
  2586. fart.Color = Color3.new(255/255, 255/255, 0)
  2587. fart.Opacity = 0.4
  2588. fart.Size = 1.0
  2589. fart.RiseVelocity = 8
  2590. fartsound = Instance.new("Sound", workspace)
  2591. fsound = "http://www.roblox.com/asset?id=251309043"
  2592. fartsound.SoundId = fsound
  2593. fartsound.Volume = 1.0
  2594. fartsound:Play()
  2595. wait(9.0)
  2596. fartsound:Destroy()
  2597. pchar.HumanoidRootPart.Smoke:Destroy()
  2598.         end)
  2599. end
  2600. end)
  2601.  
  2602. addcmd('decalspam', 'you can already guess...',{},
  2603. function(args, speaker)
  2604. Notify('Decal Spammed ID: ' ..args[1])
  2605. wait(2.6)
  2606. decalID = args[1]
  2607. function exPro(root)
  2608. for _, v in pairs(root:GetChildren()) do
  2609. if v:IsA("BasePart") then
  2610. local One = Instance.new("Decal", v)
  2611. local Two = Instance.new("Decal", v)
  2612. local Three = Instance.new("Decal", v)
  2613. local Four = Instance.new("Decal", v)
  2614. local Five = Instance.new("Decal", v)
  2615. local Six = Instance.new("Decal", v)
  2616. One.Texture = "http://www.roblox.com/asset/?id="..decalID
  2617. Two.Texture = "http://www.roblox.com/asset/?id="..decalID
  2618. Three.Texture = "http://www.roblox.com/asset/?id="..decalID
  2619. Four.Texture = "http://www.roblox.com/asset/?id="..decalID
  2620. Five.Texture = "http://www.roblox.com/asset/?id="..decalID
  2621. Six.Texture = "http://www.roblox.com/asset/?id="..decalID
  2622. One.Face = "Front"
  2623. Two.Face = "Back"
  2624. Three.Face = "Right"
  2625. Four.Face = "Left"
  2626. Five.Face = "Top"
  2627. Six.Face = "Bottom"
  2628. One.Name = "IYdecal"
  2629. Two.Name = "IYdecal"
  2630. Three.Name = "IYdecal"
  2631. Four.Name = "IYdecal"
  2632. Five.Name = "IYdecal"
  2633. Six.Name = "IYdecal"
  2634. end
  2635. exPro(v)
  2636. end
  2637. end
  2638. function asdf(root)
  2639. for _, v in pairs(root:GetChildren()) do
  2640. asdf(v)
  2641. end
  2642. end
  2643. exPro(game.Workspace)
  2644. asdf(game.Workspace)
  2645. end)
  2646.  
  2647. addcmd('undecalspam', 'removes the mess',{},
  2648. function(args, speaker)
  2649. Notify('Removing Decal Spam...')
  2650. wait(2.6)
  2651. function exPro(root)
  2652. for _, v in pairs(root:GetChildren()) do
  2653. if v:IsA("Decal") and v.Texture == "http://www.roblox.com/asset/?id="..decalID then
  2654. v.Parent = nil
  2655. end
  2656. exPro(v)
  2657. end
  2658. end
  2659. function asdf(root)
  2660. for _, v in pairs(root:GetChildren()) do
  2661. asdf(v)
  2662. end
  2663. end
  2664. exPro(game.Workspace)
  2665. asdf(game.Workspace)
  2666. end)
  2667.  
  2668. addcmd('sky', 'sets the sky',{'skybox'},
  2669. function(args, speaker)
  2670. s = Instance.new("Sky")
  2671. s.Name = "Sky"
  2672. s.Parent = game.Lighting
  2673. skyboxID = args[1]
  2674. s.SkyboxBk = "http://www.roblox.com/asset/?id="..skyboxID
  2675. s.SkyboxDn = "http://www.roblox.com/asset/?id="..skyboxID
  2676. s.SkyboxFt = "http://www.roblox.com/asset/?id="..skyboxID
  2677. s.SkyboxLf = "http://www.roblox.com/asset/?id="..skyboxID
  2678. s.SkyboxRt = "http://www.roblox.com/asset/?id="..skyboxID
  2679. s.SkyboxUp = "http://www.roblox.com/asset/?id="..skyboxID
  2680. game.Lighting.TimeOfDay = 12
  2681. end)
  2682.  
  2683. addcmd('freeze', 'freezes a player',{'fr'},
  2684. function(args, speaker)
  2685.     local players = getPlayer(args[1], speaker)
  2686.     if players ~= nil then
  2687.         for i, v in pairs(players) do
  2688.             _char(v).Head.Anchored = true
  2689.         end
  2690.     end
  2691. end)
  2692.  
  2693. addcmd('thaw', 'unfreezes a player',{'unfreeze'},
  2694. function(args, speaker)
  2695.     local players = getPlayer(args[1], speaker)
  2696.     if players ~= nil then
  2697.         for i, v in pairs(players) do
  2698.             _char(v).Head.Anchored = false
  2699.         end
  2700.     end
  2701. end)
  2702.  
  2703. addcmd('kill', 'kills a player',{},
  2704. function(args, speaker)
  2705.     local players = getPlayer(args[1], speaker)
  2706.     for i,v in pairs(players)do
  2707.         local pchar=_char(v)
  2708.         if pchar then pchar.Humanoid.MaxHealth=0;pchar.Humanoid.Health=0;end
  2709.     end
  2710. end)
  2711.  
  2712. addcmd('sound', 'plays a sound',{'music','play'},
  2713. function(args, speaker)
  2714.     local function dels(instance)
  2715.         for i,v in pairs(instance:GetChildren())do
  2716.             if v:IsA'Sound'then v:Destroy()end
  2717.             dels(v)
  2718.         end
  2719.     end
  2720.     dels(workspace)
  2721.  
  2722.     local c = args[1] or 'stop'
  2723.     if std.inTable({'stop'}, c:lower()) then return end
  2724.     local s = Instance.new("Sound", workspace)
  2725.     s.Name = "IYsound"
  2726.     s.Looped = true
  2727.     s.SoundId = "rbxassetid://" .. c
  2728.     s.Volume = 1
  2729.     s:Play()
  2730.     local Asset = game:GetService("MarketplaceService"):GetProductInfo(c)
  2731.     Notify('Playing: ' .. Asset.Name)
  2732. end)
  2733.  
  2734. addcmd('blur', 'adjusts blur',{},
  2735. function(args, speaker)
  2736.     local function dels(instance)
  2737.         for i,v in pairs(instance:GetChildren())do
  2738.             if v:IsA'BlurEffect'then v:Destroy()end
  2739.             dels(v)
  2740.         end
  2741.     end
  2742.     dels(game.Lighting)
  2743.  
  2744.     local b = Instance.new("BlurEffect", game.Lighting)
  2745.     b.Name = "IYblur"
  2746.     b.Size = args[1]
  2747. end)
  2748.  
  2749.  
  2750. addcmd('volume','changes volume of sound',{},
  2751. function(args, speaker)
  2752.     for i,v in pairs(game.Workspace:GetChildren())do
  2753.         if v:IsA("Sound") and v.Name == "IYsound" then
  2754.             v.Volume = args[1]
  2755.             Notify('Changed volume to ' .. args[1])
  2756.         end
  2757.     end
  2758. end)
  2759.  
  2760. addcmd('pitch','changes pitch of sound',{},
  2761. function(args, speaker)
  2762.     for i,v in pairs(game.Workspace:GetChildren())do
  2763.         if v:IsA("Sound") and v.Name == "IYsound" then
  2764.             v.Pitch = args[1]
  2765.             Notify('Changed pitch to ' .. args[1])
  2766.         end
  2767.     end
  2768. end)
  2769.  
  2770. addcmd('loadmap', 'spawns a map',{},
  2771. function(args, speaker)
  2772.     local m = args[1]
  2773.  
  2774. for i,v in pairs(game.Workspace:GetChildren()) do
  2775.     if v.Name ~= "Terrain" and v.Name ~= "Camera" then
  2776.         v:Destroy()
  2777.     end
  2778. end
  2779.  
  2780. game.Lighting.FogEnd = 1999999999
  2781. game.Lighting.TimeOfDay = 14
  2782.  
  2783. for i,v in pairs(game.Lighting:GetChildren()) do
  2784.     if v:IsA('Sky') then
  2785.         v:Remove()
  2786.     end
  2787. end
  2788.  
  2789. for i,v in pairs(game.Players:GetChildren()) do
  2790.     if v.Character ~= nil then
  2791.         local M = Instance.new('Model', game.Workspace) M.Name = 'respawn_iy'
  2792.         local T = Instance.new('Part', M) T.Name = 'Torso' T.CanCollide = false T.Transparency = 1
  2793.         Instance.new('Humanoid', M)
  2794.         v.Character = M
  2795.         wait(1)
  2796.         game:GetObjects('rbxassetid://'..m..'')[1].Parent = workspace
  2797.     end
  2798. end
  2799. end)
  2800.  
  2801. addcmd('loadm','loads global messaging',{},
  2802. function(args, speaker)
  2803. wait(0.1)
  2804.  
  2805. localp = game:GetService'Players'.LocalPlayer
  2806. localp.CharacterAppearanceId = 20018
  2807. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  2808.  
  2809. repeat wait() until game.Players.LocalPlayer.Character.Humanoid.Health > 0
  2810. Instance.new("ForceField", game.Players.LocalPlayer.Character)
  2811. wait(3)
  2812.  
  2813. if localp.Character:FindFirstChild'BunnyEarsOfCaprice' then
  2814. _G.mainhat = localp.Character:FindFirstChild'BunnyEarsOfCaprice':Clone()
  2815. print'loaded hat successfully'
  2816. end
  2817. localp.CharacterAppearanceId = 0
  2818. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  2819. print'Still Loading Dude...'
  2820. --Loading for the messages
  2821.  
  2822. if _G.mainhat == nil then
  2823. wait(3)
  2824. if localp.Character:FindFirstChild'BunnyEarsOfCaprice' then
  2825. _G.mainhat = localp.Character:FindFirstChild'BunnyEarsOfCaprice':Clone()
  2826. print'loaded hat successfully'
  2827. end
  2828. localp.CharacterAppearanceId = 0
  2829. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  2830. print'Still Loading Dude...'
  2831. end
  2832.  
  2833. --display global message to server WITHOUT loadasset--
  2834. if _G.mainhat ~= nil then
  2835. local main = _G.mainhat.Handle.BunnyTools.EggScript3:Clone()
  2836. local localp = game:GetService'Players'.LocalPlayer
  2837. local part = Instance.new('Part')
  2838. part.Anchored = true
  2839. part.Transparency = 1
  2840. main.Disabled = false
  2841. main.Parent = part
  2842. _G.mainhat.Handle.BunnyTools.EggMesh3:Clone().Parent = part
  2843. Instance.new('ForceField', localp.Character)
  2844. localp.Character.Torso.Anchored = true
  2845. part.Parent = localp.Character
  2846. part.CFrame = localp.Character.Torso.CFrame
  2847. wait(0.5)
  2848. localp.Character.Torso.Anchored = false
  2849. repeat wait() until localp:FindFirstChild'ChessMsg'
  2850. part:Remove()
  2851. local message = localp:FindFirstChild'ChessMsg'
  2852. message.Text = ''
  2853. message.Parent = workspace
  2854. message.Name = "IYmessage"
  2855. function _G.msg(txt)
  2856.     message.Text = ''
  2857.     local b = Instance.new("BlurEffect", game.Lighting)
  2858.     b.Name = "IYmblur"
  2859.     b.Size = 0
  2860.     wait(.01)
  2861.     b.Size = 2
  2862.     wait(.01)
  2863.     b.Size = 4
  2864.     wait(.01)
  2865.     b.Size = 6
  2866.     wait(.01)
  2867.     b.Size = 8
  2868.     wait(.01)
  2869.     b.Size = 10
  2870.     wait(.01)
  2871.     b.Size = 12
  2872.     wait(.01)
  2873.     b.Size = 14
  2874.     wait(.01)
  2875.     b.Size = 16
  2876.     wait(.01)
  2877.     b.Size = 18
  2878.     wait(.01)
  2879.     b.Size = 20
  2880.     message.Text = txt
  2881.     wait(game.Players.LocalPlayer.MSGtime.Value)
  2882.     message.Text = ''
  2883.     b.Size = 20
  2884.     wait(.01)
  2885.     b.Size = 18
  2886.     wait(.01)
  2887.     b.Size = 16
  2888.     wait(.01)
  2889.     b.Size = 14
  2890.     wait(.01)
  2891.     b.Size = 12
  2892.     wait(.01)
  2893.     b.Size = 10
  2894.     wait(.01)
  2895.     b.Size = 8
  2896.     wait(.01)
  2897.     b.Size = 6
  2898.     wait(.01)
  2899.     b.Size = 4
  2900.     wait(.01)
  2901.     b.Size = 2
  2902.     wait(.01)
  2903.     b:Destroy()
  2904. end
  2905. if part ~= nil then part:Remove() end
  2906. localp.Character.Torso.Anchored = false
  2907. for _, child in pairs( workspace:GetChildren()) do
  2908.     if child.Name == "Part" and child.Size == Vector3.new(8, 0.4, 8) then
  2909.         child:Destroy()
  2910.     end
  2911. end
  2912. if localp.Character:FindFirstChild'ForceField' then localp.Character.ForceField:Remove() end
  2913. if localp.Character:FindFirstChild'ForceField' then localp.Character.ForceField:Remove() end
  2914. if _G.msg ~= nil then
  2915. print'Loaded Message System'
  2916. else
  2917. warn'failed sadly'
  2918. end
  2919. end
  2920. end)
  2921.  
  2922. addcmd('explode', 'explode a player', {},
  2923. function(args, speaker)
  2924.     local players = getPlayer(args[1], speaker)
  2925.     for i, v in pairs(players) do
  2926.         local char = _char(v)
  2927.         if char:FindFirstChild("Torso") then
  2928.             Instance.new("Explosion", char).Position = char.Torso.Position                 
  2929.         end
  2930.     end
  2931. end)
  2932.  
  2933. addcmd('flood', 'makes a flood e.e', {},
  2934. function(args, speaker)
  2935. game.Workspace.Terrain:SetCells(Region3int16.new(Vector3int16.new(-100,-100,-100), Vector3int16.new(100,100,100)), 17, "Solid", "X")
  2936. end)
  2937.  
  2938. addcmd('spookyify', 'makes it sp00ky', {},
  2939. function(args, speaker)
  2940. local music = Instance.new("Sound", workspace)
  2941. music.SoundId = "http://www.roblox.com/asset/?id=257569267"
  2942. music.Volume = 20
  2943. music.Looped = true
  2944. music:Play()
  2945.  
  2946. tex1 = "http://www.roblox.com/asset/?id=185495987"
  2947. tex2 = "http://www.roblox.com/asset/?id=260858020"
  2948. tex3 = "http://www.roblox.com/asset/?id=149213919"
  2949. tex4 = "http://www.roblox.com/asset/?id=171905673"
  2950.  
  2951. local w = game.Workspace:GetChildren()
  2952.  
  2953. for i= 1,#w do
  2954.     if w[i]:isA("BasePart") then
  2955.         pe = Instance.new("ParticleEmitter", w[i])
  2956.         pe.Texture = tex4
  2957.         pe.VelocitySpread = 5
  2958.     end
  2959. end
  2960.  
  2961. local playerLeaderstats = {}
  2962. for i, v in pairs(game.Players:GetChildren()) do
  2963. table.insert(playerLeaderstats, v)
  2964. end
  2965. for i, v in pairs(playerLeaderstats) do
  2966. pe = Instance.new("ParticleEmitter",v.Character.Torso)
  2967. pe.Texture = "http://www.roblox.com/asset/?id=171905673"
  2968. pe.VelocitySpread = 50
  2969. end
  2970.  
  2971. texture = "http://www.roblox.com/asset/?id=185495987"
  2972.  
  2973. local A = game.Workspace:GetChildren()
  2974. local B = game.Workspace:GetChildren()
  2975. local C = game.Workspace:GetChildren()
  2976. local D = game.Workspace:GetChildren()
  2977. local E = game.Workspace:GetChildren()
  2978. local F = game.Workspace:GetChildren()
  2979. for i,v in pairs(A) do
  2980.     if v:IsA("Part") then
  2981.     local d =    Instance.new("Decal",v)
  2982.         v.Decal.Face = "Top"
  2983.         v.Decal.Texture = texture
  2984.         v.Anchored = true        
  2985.     end
  2986. end
  2987.  
  2988. for i,v in pairs(B) do
  2989.     if v:IsA("Part") then
  2990.         local s = Instance.new("Decal",v)
  2991.         s.Face = "Front"
  2992.         s.Texture = texture
  2993.     end
  2994. end
  2995.  
  2996. for i,v in pairs(C) do
  2997.     if v:IsA("Part") then
  2998.         local h = Instance.new("Decal",v)
  2999.         h.Face = "Back"
  3000.         h.Texture = texture
  3001.     end
  3002. end
  3003.  
  3004. for i,v in pairs(D) do
  3005.     if v:IsA("Part") then
  3006.         local j = Instance.new("Decal",v)
  3007.         j.Face = "Left"
  3008.         j.Texture = texture
  3009.     end
  3010. end
  3011.  
  3012. for i,v in pairs(E) do
  3013.     if v:IsA("Part") then
  3014.         local k = Instance.new("Decal",v)
  3015.         k.Face = "Right"
  3016.         k.Texture = texture
  3017.     end
  3018. end
  3019.  
  3020. for i,v in pairs(F) do
  3021.     if v:IsA("Part") then
  3022.         local l = Instance.new("Decal",v)
  3023.         l.Face = "Bottom"
  3024.         l.Texture = texture
  3025.     end
  3026.  
  3027.     imageOne = "http://www.roblox.com/asset/?id=169585459"
  3028. imageTwo = "http://www.roblox.com/asset/?id=169585475"
  3029. imageThree = "http://www.roblox.com/asset/?id=169585485"
  3030. imageFour = "http://www.roblox.com/asset/?id=169585502"
  3031. imageFive = "http://www.roblox.com/asset/?id=169585515"
  3032. imageSix = "http://www.roblox.com/asset/?id=169585502"
  3033. imageSeven = "http://www.roblox.com/asset/?id=169585485"
  3034. imageEight = "http://www.roblox.com/asset/?id=169585475"
  3035.  
  3036. Spooky = Instance.new("Sound", workspace)
  3037. Spooky.Name = "Spooky"
  3038. Spooky.SoundId = "rbxassetid://174270407"
  3039. Spooky.Volume = 15
  3040. Spooky.Looped = true
  3041. Spooky:Play()
  3042.  
  3043. Sky = Instance.new("Sky", game.Lighting)
  3044. Sky.SkyboxBk = imageOne
  3045. Sky.SkyboxDn = imageOne
  3046. Sky.SkyboxFt = imageOne
  3047. Sky.SkyboxLf = imageOne
  3048. Sky.SkyboxRt = imageOne
  3049. Sky.SkyboxUp = imageOne
  3050.  
  3051.  
  3052. while true do
  3053.     Sky.SkyboxBk = imageOne
  3054.     Sky.SkyboxDn = imageOne
  3055.     Sky.SkyboxFt = imageOne
  3056.     Sky.SkyboxLf = imageOne
  3057.     Sky.SkyboxRt = imageOne
  3058.     Sky.SkyboxUp = imageOne
  3059.     wait(0.15)
  3060.     Sky.SkyboxBk = imageTwo
  3061.     Sky.SkyboxDn = imageTwo
  3062.     Sky.SkyboxFt = imageTwo
  3063.     Sky.SkyboxLf = imageTwo
  3064.     Sky.SkyboxRt = imageTwo
  3065.     Sky.SkyboxUp = imageTwo
  3066.     wait(0.15)
  3067.     Sky.SkyboxBk = imageThree
  3068.     Sky.SkyboxDn = imageThree
  3069.     Sky.SkyboxFt = imageThree
  3070.     Sky.SkyboxLf = imageThree
  3071.     Sky.SkyboxRt = imageThree
  3072.     Sky.SkyboxUp = imageThree
  3073.     wait(0.15)
  3074.     Sky.SkyboxBk = imageFour
  3075.     Sky.SkyboxDn = imageFour
  3076.     Sky.SkyboxFt = imageFour
  3077.     Sky.SkyboxLf = imageFour
  3078.     Sky.SkyboxRt = imageFour
  3079.     Sky.SkyboxUp = imageFour
  3080.     wait(0.15)
  3081.     Sky.SkyboxBk = imageFive
  3082.     Sky.SkyboxDn = imageFive
  3083.     Sky.SkyboxFt = imageFive
  3084.     Sky.SkyboxLf = imageFive
  3085.     Sky.SkyboxRt = imageFive
  3086.     Sky.SkyboxUp = imageFive
  3087.     wait(0.15)
  3088.     Sky.SkyboxBk = imageSix
  3089.     Sky.SkyboxDn = imageSix
  3090.     Sky.SkyboxFt = imageSix
  3091.     Sky.SkyboxLf = imageSix
  3092.     Sky.SkyboxRt = imageSix
  3093.     Sky.SkyboxUp = imageSix
  3094.     wait(0.15)
  3095.     Sky.SkyboxBk = imageSeven
  3096.     Sky.SkyboxDn = imageSeven
  3097.     Sky.SkyboxFt = imageSeven
  3098.     Sky.SkyboxLf = imageSeven
  3099.     Sky.SkyboxRt = imageSeven
  3100.     Sky.SkyboxUp = imageSeven
  3101.     wait(0.15)
  3102.     Sky.SkyboxBk = imageEight
  3103.     Sky.SkyboxDn = imageEight
  3104.     Sky.SkyboxFt = imageEight
  3105.     Sky.SkyboxLf = imageEight
  3106.     Sky.SkyboxRt = imageEight
  3107.     Sky.SkyboxUp = imageEight
  3108.     wait(0.15)
  3109.    
  3110. end
  3111. end
  3112. end)
  3113.  
  3114. addcmd('invisible', 'make a player invisible',{},
  3115. function(args, speaker)
  3116.     local players = getPlayer(args[1], speaker)
  3117.     for i, v in pairs(players) do
  3118.         for k, v2 in pairs(_char(v):GetChildren()) do
  3119.             if v2.className == "Part" then
  3120.                 if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 1 end
  3121.             elseif v2.className == "Accessory" then
  3122.                 if v2:FindFirstChild("Handle") then
  3123.                     v2.Handle.Transparency = 1
  3124.                 end
  3125.             end
  3126.             if v2:FindFirstChild("face") then
  3127.                 v2.face.Transparency = 1
  3128.             end
  3129.         end
  3130.     end
  3131. end)
  3132.  
  3133. addcmd('visible', 'make a player visible',{},
  3134. function(args, speaker)
  3135.     local players = getPlayer(args[1], speaker)
  3136.     for i, v in pairs(players) do
  3137.         for k, v2 in pairs(_char(v):GetChildren()) do
  3138.             if v2.className == "Part" then
  3139.                 if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 0 end elseif v2.className == "Accessory" then
  3140.                 if v2:FindFirstChild("Handle") then v2.Handle.Transparency = 0 end
  3141.             end
  3142.             if v2:FindFirstChild("face") then
  3143.                 v2.face.Transparency = 0
  3144.             end
  3145.         end
  3146.     end
  3147. end)
  3148.  
  3149. addcmd('goto', 'go to a player',{},
  3150. function(args, speaker)
  3151.     local players = getPlayer(args[1], speaker)
  3152.     if players ~= nil and _char(players[1]):FindFirstChild("HumanoidRootPart") then
  3153.         _char(admin).HumanoidRootPart.CFrame = _char(players[1]).HumanoidRootPart.CFrame
  3154.     end
  3155. end)
  3156.  
  3157. addcmd('bring', 'bring a player to you',{},
  3158. function(args, speaker)
  3159.     local players = getPlayer(args[1], speaker)
  3160.     for i,v in pairs(players) do
  3161.         if _char(v):FindFirstChild("HumanoidRootPart") then
  3162.             _char(v).HumanoidRootPart.CFrame = _char(admin).HumanoidRootPart.CFrame
  3163.         end
  3164.     end
  3165. end)
  3166.  
  3167. addcmd('tp', 'teleport player 1 to player 2',{},
  3168. function(args, speaker)
  3169.     local players1=getPlayer(args[1], speaker)
  3170.     local players2=getPlayer(args[2], speaker)
  3171.     if not players2[1] then return end
  3172.     for i,v in pairs(players1) do
  3173.         if _char(v):FindFirstChild("HumanoidRootPart") and _char(players2[1]):FindFirstChild("HumanoidRootPart") then
  3174.             _char(v).HumanoidRootPart.CFrame = _char(players2[1]).HumanoidRootPart.CFrame
  3175.             wait(0.1)
  3176.             _char(v).HumanoidRootPart.CFrame = _char(players2[1]).HumanoidRootPart.CFrame
  3177.         end    
  3178.     end
  3179. end)
  3180.  
  3181. addcmd('char', 'change a players appearance',{},
  3182. function(args, speaker)
  3183.     local players = getPlayer(args[1], speaker)
  3184.     if not args[1]or not args[2]then return end
  3185.     local id=args[2]
  3186.     if players ~= nil then
  3187.         for i,v in pairs(players) do
  3188.             gPlayers[v].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..id
  3189.             if _char(v):FindFirstChild("Head") then
  3190.                 _char(v).Head:Destroy()
  3191.             end
  3192.         end
  3193.     end
  3194. end)
  3195.  
  3196. addcmd('speed', 'change a players walkspeed',{'ws'},
  3197. function(args, speaker)
  3198.     local players = getPlayer(args[1], speaker)
  3199.     if not args[1]or not args[2]then return end
  3200.     local num=args[2]
  3201.     for i,v in pairs(players) do
  3202.         if _char(v):FindFirstChild("Humanoid") then
  3203.             _char(v).Humanoid.WalkSpeed=tonumber(num)
  3204.         end
  3205.     end
  3206. end)
  3207.  
  3208. addcmd('gravity', 'change a players jump height',{'grav'},
  3209. function(args, speaker)
  3210.     local players = getPlayer(args[1], speaker)
  3211.     if not args[1]or not args[2]then return end
  3212.     local num=args[2]
  3213.     for i,v in pairs(players) do
  3214.         if _char(v):FindFirstChild("Humanoid") then
  3215.             _char(v).Humanoid.JumpPower=tonumber(num)
  3216.         end
  3217.     end
  3218. end)
  3219.  
  3220. addcmd('confuse', 'confusing...',{},
  3221. function(args, speaker)
  3222.     local players = getPlayer(args[1], speaker)
  3223.     for i,v in pairs(players) do
  3224.         spawn(function()
  3225.         if _char(v):FindFirstChild("Humanoid") then
  3226.             _char(v).Humanoid.Name = "ConfusedNigga"
  3227.             while true do
  3228.             _char(v).ConfusedNigga.CameraOffset = Vector3.new(2, 4, 6)
  3229.             _char(v).ConfusedNigga.WalkToPoint = Vector3.new(math.random(1,100), math.random(1,100), math.random(1,100))
  3230.             wait(0.1)
  3231.             end
  3232.  
  3233.         end
  3234.         end)
  3235.         end
  3236.     end)
  3237.  
  3238. addcmd('unconfuse', 'not confusing...',{},
  3239. function(args, speaker)
  3240.     local players = getPlayer(args[1], speaker)
  3241.     for i,v in pairs(players) do
  3242.         spawn(function()
  3243.         if _char(v):FindFirstChild("ConfusedNigga") then
  3244.             _char(v).ConfusedNigga.Name = "Humanoid"
  3245.             wait(0.3)
  3246.             _char(v).Humanoid.CameraOffset = Vector3.new(0, 0, 0)
  3247.  
  3248.         end
  3249.         end)
  3250.         end
  3251. end)
  3252.  
  3253. addcmd('cripple', 'cripples a player xddd',{'stun'},
  3254. function(args, speaker)
  3255.     local players = getPlayer(args[1], speaker)
  3256.     for i,v in pairs(players) do
  3257.         if _char(v):FindFirstChild("Humanoid") then
  3258.             _char(v).Humanoid.PlatformStand = true
  3259.         end
  3260.     end
  3261. end)
  3262.  
  3263. addcmd('uncripple', 'un cripples a player xddd',{'unstun'},
  3264. function(args, speaker)
  3265.     local players = getPlayer(args[1], speaker)
  3266.     for i,v in pairs(players) do
  3267.         if _char(v):FindFirstChild("Humanoid") then
  3268.             _char(v).Humanoid.PlatformStand = false
  3269.         end
  3270.     end
  3271. end)
  3272.  
  3273. addcmd('hipheight', 'adjusts hip height',{'hheight'},
  3274. function(args, speaker)
  3275.     local players = getPlayer(args[1], speaker)
  3276.     for i,v in pairs(players) do
  3277.         if _char(v):FindFirstChild("Humanoid") then
  3278.             _char(v).Humanoid.HipHeight = args[2]
  3279.         end
  3280.     end
  3281. end)
  3282.  
  3283. addcmd('time', 'change the time of day',{},
  3284. function(args, speaker)
  3285.     if not args[1]then return end
  3286.     local time_=tonumber(args[1])
  3287.     Notify('Time set to ' .. args[1])
  3288.    
  3289.     game.Lighting:SetMinutesAfterMidnight(time_*60)
  3290. end)
  3291.  
  3292. addcmd('kick', 'kick a player',{},
  3293. function(args, speaker)
  3294.     local players = getPlayer(args[1], speaker)
  3295.     for i,v in pairs(players) do
  3296. lol=function(wt) -- thx man
  3297.  if(wt~=nil)then
  3298.     spawn(function()
  3299.         pcall(function()
  3300. local vic=wt
  3301.  
  3302. local skt=Instance.new("SkateboardPlatform", vic)
  3303. skt.CFrame=CFrame.new(math.random(-1000,1000),1000,math.random(-1000,1000))
  3304. skt.CanCollide=false
  3305. skt.Anchored=false
  3306. skt.Transparency=1
  3307. skt.Size=Vector3.new(5,5,5)
  3308. vic.Humanoid.WalkSpeed=0
  3309. vic.Humanoid.Jump=true
  3310. wait(.1)
  3311. local wld=Instance.new("Weld", workspace)
  3312. wld.Part0=vic.HumanoidRootPart
  3313. wld.Part1=skt
  3314. wld.C0=CFrame.new(0,-500,0)
  3315. wait(.1)
  3316. skt.Anchored=true
  3317. wld:Destroy()
  3318. Notify('Kicked ' .. gPlayers[v].Name)
  3319. end)
  3320.  end);
  3321.  end;
  3322. end;
  3323. lol(gPlayers[v].Character)
  3324. end
  3325. end)
  3326.  
  3327.  
  3328. addcmd('serverlock', 'lock teh server',{'slock'},
  3329. function(args, speaker)
  3330. slock = true
  3331. Notify('Locked Server')
  3332. end)
  3333.  
  3334. addcmd('unserverlock', 'unlock teh server',{'unslock'},
  3335. function(args, speaker)
  3336. slock = false
  3337. Notify('Unlocked Server')
  3338. end)
  3339.  
  3340. addcmd('unlockws', 'unlock the whole workspace',{'unlock'},
  3341. function(args, speaker)
  3342.     Notify('Workspace unlocked')
  3343.     wait(1)
  3344.     local function unlock(instance)
  3345.         for i,v in pairs(instance:GetChildren()) do
  3346.             if v:IsA("BasePart") then
  3347.                 v.Locked = false
  3348.             end
  3349.             unlock(v)
  3350.         end
  3351.     end
  3352.     unlock(workspace)
  3353. end)
  3354.  
  3355. addcmd('lockws', 'lock the whole workspace',{'lock'},
  3356. function(args, speaker)
  3357.     Notify('Workspace locked')
  3358.     wait(1)
  3359.     local function lock(instance)
  3360.         for i,v in pairs(instance:GetChildren()) do
  3361.             if v:IsA("BasePart") then
  3362.                 v.Locked = true
  3363.             end
  3364.             lock(v)
  3365.         end
  3366.     end
  3367.     lock(workspace)
  3368. end)
  3369.  
  3370. addcmd('unanchorws', 'unanchor the whole workspace',{'unanchor', 'unanchr'},
  3371. function(args, speaker)
  3372.    local function unanchor(instance)
  3373.         for i,v in pairs(instance:GetChildren()) do
  3374.             if v:IsA("BasePart") then
  3375.                 v.Anchored=false
  3376.             end
  3377.             unanchor(v)
  3378.         end
  3379.     end
  3380.     unanchor(workspace)
  3381. end)
  3382.  
  3383. addcmd('anchorws', 'unanchor the whole workspace',{'unanchor', 'anchor'},
  3384. function(args, speaker)
  3385.    local function anchor(instance)
  3386.         for i,v in pairs(instance:GetChildren()) do
  3387.             if v:IsA("BasePart") then
  3388.                 v.Anchored=true
  3389.             end
  3390.             anchor(v)
  3391.         end
  3392.     end
  3393.     anchor(workspace)
  3394. end)
  3395.  
  3396. addcmd('gear', 'give player a gear ingame',{},
  3397. function(args, speaker)
  3398.     spawn(function()
  3399.         if not args[1] or not args[2] then return end
  3400.         local players = getPlayer(args[1], speaker)
  3401.         local id=args[2]
  3402.         local model = game:GetService("InsertService"):LoadAsset(id)
  3403.         for i,v in pairs(players) do
  3404.             for _,j in pairs(model:GetChildren()) do
  3405.                 if j:IsA("Tool") then
  3406.                     j:Clone().Parent = gPlayers[v].Backpack
  3407.                     local Asset = game:GetService("MarketplaceService"):GetProductInfo(id)
  3408.                     Notify('Gave ' .. gPlayers[v].Name .. ' ' .. Asset.Name)
  3409.                 end
  3410.             end
  3411.         end
  3412.         model:Destroy()
  3413.     end)
  3414. end)
  3415.  
  3416. addcmd('explorer', 'opens DEX',{},
  3417. function(args, speaker)
  3418. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  3419. end)
  3420.  
  3421. addcmd('firstp', 'forces player to go into first person',{},
  3422. function(args, speaker)
  3423.     local players = getPlayer(args[1], speaker)
  3424.     for i,v in pairs(players)do
  3425.         gPlayers[v].CameraMode = "LockFirstPerson"
  3426.     end
  3427. end)
  3428.  
  3429. addcmd('base', 'spawns a base',{},
  3430. function(args, speaker)
  3431. local pt = Instance.new("Part")
  3432. pt.BrickColor = BrickColor.new("Silver")
  3433. pt.Anchored = true
  3434. pt.CanCollide = true
  3435. pt.BottomSurface = "Weld"
  3436. pt.Parent = workspace
  3437. pt.Name = (math.random(1,1000000))
  3438. pt.Size = Vector3.new(1000, 1, 1000)
  3439. pt.Locked = true
  3440. Notify('Created new base')
  3441. end)
  3442.  
  3443. addcmd('fix', 'restores lighting and what not',{},
  3444. function(args, speaker)
  3445. game.Lighting.Ambient = origsettings.abt
  3446. game.Lighting.Brightness = origsettings.brt
  3447. game.Lighting.TimeOfDay = origsettings.time
  3448. game.Lighting.FogColor = origsettings.fclr
  3449. game.Lighting.FogEnd = origsettings.fe
  3450. game.Lighting.FogStart = origsettings.fs
  3451.     local function dels(instance)
  3452.         for i,v in pairs(instance:GetChildren())do
  3453.             if v:IsA'Sound'then v:Destroy()end
  3454.             dels(v)
  3455.         end
  3456.     end
  3457.     dels(workspace)
  3458. for i,v in pairs(game.Lighting:GetChildren()) do
  3459.     if v:IsA('Sky') then
  3460.         v:Remove()
  3461.     end
  3462. end
  3463. for i,v in pairs(game.Lighting:GetChildren()) do
  3464.     if v:IsA('BloomEffect') then
  3465.         v:Remove()
  3466.     end
  3467. end
  3468. for i,v in pairs(game.Lighting:GetChildren()) do
  3469.     if v:IsA('BlurEffect') then
  3470.         v:Remove()
  3471.     end
  3472. end
  3473. for i,v in pairs(game.Lighting:GetChildren()) do
  3474.     if v:IsA('ColorCorrectionEffect') then
  3475.         v:Remove()
  3476.     end
  3477. end
  3478. for i,v in pairs(game.Lighting:GetChildren()) do
  3479.     if v:IsA('SunRaysEffect') then
  3480.         v:Remove()
  3481.     end
  3482. end
  3483. end)
  3484.  
  3485. addcmd('thirdp', 'allows player to go into third person',{},
  3486. function(args, speaker)
  3487.     local players = getPlayer(args[1], speaker)
  3488.     for i,v in pairs(players)do
  3489.         gPlayers[v].CameraMode = "Classic"
  3490.     end
  3491. end)
  3492.  
  3493. addcmd('chat', 'forces player to chat what you input',{},
  3494. function(args, speaker)
  3495.     local players = getPlayer(args[1], speaker)
  3496.     local MSG = table.concat(args, " ")
  3497.     local newMSG = string.gsub(MSG, args[1] .. " ", "")
  3498.     for i,v in pairs(players)do
  3499.         game.Chat:Chat(gPlayers[v].Character.Head, newMSG)
  3500.     end
  3501. end)
  3502.  
  3503. addcmd('name', 'names player',{},
  3504. function(args, speaker)
  3505.     local players = getPlayer(args[1], speaker)
  3506.     local msg = table.concat(args, " ")
  3507.     local newmsg = string.gsub(msg, args[1] .. " ", "")
  3508.     for i,v in pairs(players) do
  3509.         for a, mod in pairs(gPlayers[v].Character:children()) do
  3510.         if mod:FindFirstChild("TAG") then
  3511.         gPlayers[v].Character.Head.Transparency = 0
  3512.         mod:Destroy()
  3513.         end
  3514.         end
  3515.        
  3516.         local char = gPlayers[v].Character
  3517.         local model = Instance.new("Model", char)
  3518.         local clone = char.Head:Clone()
  3519.         local hum = Instance.new("Humanoid", model)
  3520.         local weld = Instance.new("Weld", clone)
  3521.             model.Name = newmsg
  3522.             clone.Parent = model
  3523.             hum.Name = "TAG"
  3524.             hum.MaxHealth = 100
  3525.             hum.Health = 100
  3526.             weld.Part0 = clone
  3527.             weld.Part1 = char.Head
  3528.             char.Head.Transparency = 1
  3529.     end
  3530. end)
  3531.  
  3532. addcmd('unname', 'unnames player',{},
  3533. function(args, speaker)
  3534.     local players = getPlayer(args[1], speaker)
  3535.     local name = (args[2])
  3536.     for i,v in pairs(players) do
  3537.         for a, mod in pairs(gPlayers[v].Character:children()) do
  3538.             if mod:FindFirstChild("TAG") then
  3539.                 gPlayers[v].Character.Head.Transparency = 0
  3540.                 mod:Destroy()
  3541.             end
  3542.         end
  3543.     end
  3544. end)
  3545.  
  3546. addcmd('damage', 'damages a player',{},
  3547. function(args, speaker)
  3548.     local players = getPlayer(args[1], speaker)
  3549.     for i,v in pairs(players) do
  3550.         gPlayers[v].Character.Humanoid.Health = gPlayers[v].Character.Humanoid.Health - 25
  3551.     end
  3552. end)
  3553.  
  3554. addcmd('view', 'views player',{},
  3555. function(args, speaker)
  3556.     local players = getPlayer(args[1], speaker)
  3557.     for i,v in pairs(players) do
  3558.         game.Workspace.CurrentCamera.CameraSubject = gPlayers[v].Character
  3559.         Notify('Viewing ' .. gPlayers[v].Name)
  3560.     end
  3561. end)
  3562.  
  3563. addcmd('unview', 'stops viewing player',{},
  3564. function()
  3565.     game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3566.     Notify('View turned off')
  3567. end)
  3568.  
  3569. addcmd('nolimbs', 'removes limbs from player',{},
  3570. function(args, speaker)
  3571.     local players = getPlayer(args[1], speaker)
  3572.     for i,v in pairs(players) do
  3573.         for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  3574.             if v:IsA("BasePart") and
  3575.                 v.Name == "Right Leg" or
  3576.                 v.Name == "Left Leg" or
  3577.                 v.Name == "Right Arm" or
  3578.                 v.Name == "Left Arm" then
  3579.                 v:Remove()
  3580.             end
  3581.         end
  3582.     end
  3583. end)
  3584.  
  3585. addcmd('box', 'creates a box around player',{},
  3586. function(args, speaker)
  3587.     local players = getPlayer(args[1], speaker)
  3588.     for i,v in pairs(players)do
  3589.         local pchar=_char(v)
  3590.         local SB = Instance.new("SelectionBox", pchar)
  3591.         SB.Adornee = SB.Parent
  3592.     end
  3593. end)
  3594.  
  3595. addcmd('nobox', 'takes away box from player',{'unbox'},
  3596. function(args, speaker)
  3597.     local players = getPlayer(args[1], speaker)
  3598.     for i,v in pairs(players)do
  3599.         local pchar=_char(v)
  3600.         for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  3601.             if v:IsA("SelectionBox") then
  3602.                 v:Destroy()
  3603.             end
  3604.         end
  3605.     end
  3606. end)
  3607.  
  3608. addcmd('ghost', 'ghostifys player',{},
  3609. function(args, speaker)
  3610.     local players = getPlayer(args[1], speaker)
  3611.     for i,v in pairs(players)do
  3612.         local pchar=gPlayers[v].Character
  3613.         pchar.Head.Transparency = 0.5
  3614.         pchar.Torso.Transparency = 0.5
  3615.         pchar["Left Arm"].Transparency = 0.5
  3616.         pchar["Right Arm"].Transparency = 0.5
  3617.         pchar["Left Leg"].Transparency = 0.5
  3618.         pchar["Right Leg"].Transparency = 0.5
  3619.         pchar.Head.face.Transparency = 0.5
  3620.     end
  3621. end)
  3622.  
  3623. addcmd('sphere', 'puts sphere around player',{},
  3624. function(args, speaker)
  3625.     local players = getPlayer(args[1], speaker)
  3626.     for i,v in pairs(players)do
  3627.         local pchar=gPlayers[v].Character
  3628.         local SS = Instance.new("SelectionSphere", pchar)
  3629.         SS.Adornee = SS.Parent
  3630.     end
  3631. end)
  3632.  
  3633. addcmd('unsphere', 'removes sphere around player',{},
  3634. function(args, speaker)
  3635.     local players = getPlayer(args[1], speaker)
  3636.     for i,v in pairs(players)do
  3637.         local pchar=_char(v)
  3638.         for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  3639.             if v:IsA("SelectionSphere") then
  3640.                 v:Destroy()
  3641.             end
  3642.         end
  3643.     end
  3644. end)
  3645.  
  3646. addcmd('ambient','changes ambient',{},
  3647. function(args, speaker)
  3648.     game.Lighting.Ambient = Color3.new(args[1],args[2],args[3])
  3649. end)
  3650.  
  3651. addcmd('fogend','changes the fogend',{},
  3652. function(args, speaker)
  3653.     game.Lighting.FogEnd = args[1]
  3654. end)
  3655.  
  3656. addcmd('fogcolor','changes the fogs color',{},
  3657. function(args, speaker)
  3658.     game.Lighting.FogColor = Color3.new(args[1],args[2],args[3])
  3659. end)
  3660.  
  3661. addcmd('jail','jails player',{},
  3662. function(args, speaker)
  3663.     local players = getPlayer(args[1], speaker)
  3664.     for i,v in pairs(players)do
  3665.         local pchar=gPlayers[v].Character
  3666.         local JailPlayer = DATA.JAIL:Clone()
  3667.         JailPlayer.Parent = game.Workspace
  3668.         JailPlayer:MoveTo(pchar.Torso.Position)
  3669.         JailPlayer.Name = "JAIL_" .. gPlayers[v].Name
  3670.         if pchar:FindFirstChild("HumanoidRootPart") then
  3671.             pchar.HumanoidRootPart.CFrame = JailPlayer.MAIN.CFrame
  3672.         end    
  3673.     end
  3674. end)
  3675.  
  3676. addcmd('unjail','unjails player',{},
  3677. function(args, speaker)
  3678.     local players = getPlayer(args[1], speaker)
  3679.     for i,v in pairs(players)do
  3680.         game.Workspace["JAIL_" .. gPlayers[v].Name]:Destroy()
  3681.     end
  3682. end)
  3683.  
  3684. addcmd('shutdown', 'shuts the server down',{},
  3685. function(args, speaker)
  3686.     local function ShutDown(Base)
  3687.         for i,v in pairs(Base:GetChildren()) do
  3688.             v:Destroy()
  3689.             Notify('Shutting Down...')
  3690.         end
  3691.     end
  3692.     ShutDown(game.Players)
  3693. end)
  3694.  
  3695. addcmd('animation','makes player animate',{'anim'},
  3696. function(args, speaker)
  3697.     local players = getPlayer(args[1], speaker)
  3698.     for i,v in pairs(players)do
  3699.         local pchar = gPlayers[v].Character
  3700.         local ID = args[2]
  3701.  
  3702.         if args[2] == "climb" then
  3703.             ID = "180436334"
  3704.     end
  3705.         if args[2] == "fall" then
  3706.             ID = "180436148"
  3707.     end
  3708.         if args[2] == "jump" then
  3709.             ID = "125750702"
  3710.     end
  3711.         if args[2] == "sit" then
  3712.             ID = "178130996"
  3713.     end
  3714.         for _,x in pairs(gPlayers[v].Character.Animate:GetChildren()) do
  3715.             if x:IsA("StringValue") then
  3716.                 for _,c in pairs(x:GetChildren()) do
  3717.                     if c:IsA("Animation") then
  3718.                         c.AnimationId = "rbxassetid://" .. ID
  3719.                     end
  3720.                 end
  3721.             end
  3722.         end
  3723.     end
  3724. end)
  3725.  
  3726. addcmd('normal','turns player back to normal',{},
  3727. function(args, speaker)
  3728.     local players = getPlayer(args[1], speaker)
  3729.     for i,v in pairs(players)do
  3730.         local pchar = gPlayers[v].Character
  3731.        
  3732.         pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  3733.         pchar.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,0) * CFrame.Angles(0,math.rad(90),0)
  3734.         pchar.Torso["Left Shoulder"].C0 = CFrame.new(-1,0.5,0) * CFrame.Angles(0,math.rad(-90),0)
  3735.         pchar.Torso["Right Hip"].C0 = CFrame.new(1,-1,0) * CFrame.Angles(0,math.rad(90),0)
  3736.         pchar.Torso["Left Hip"].C0 = CFrame.new(-1,-1,0) * CFrame.Angles(0,math.rad(-90),0)
  3737.    
  3738.         for i,v in pairs(pchar.Head:GetChildren()) do
  3739.             if v:IsA("SpecialMesh") then
  3740.                 v:Destroy()
  3741.             end
  3742.         end
  3743.    
  3744.         for i,v in pairs(pchar:GetChildren()) do
  3745.             if v:IsA("Shirt") then
  3746.                 v:Destroy()
  3747.             end
  3748.         end
  3749.        
  3750.         for i,v in pairs(pchar:GetChildren()) do
  3751.             if v:IsA("Pants") then
  3752.                 v:Destroy()
  3753.             end
  3754.         end
  3755.        
  3756.         if Player.Character:FindFirstChild("Shirt Graphic") ~= nil then
  3757.             Player.Character["Shirt Graphic"].Graphic = ""
  3758.         end
  3759.        
  3760.         local HeadMesh = Instance.new("SpecialMesh", pchar.Head)
  3761.         HeadMesh.MeshType = "Head"
  3762.         HeadMesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  3763.        
  3764.         pchar.Head.Transparency = 0
  3765.         pchar.Torso.Transparency = 0
  3766.         pchar["Left Arm"].Transparency = 0
  3767.         pchar["Right Arm"].Transparency = 0
  3768.         pchar["Left Leg"].Transparency = 0
  3769.         pchar["Right Leg"].Transparency = 0
  3770.        
  3771.         for i,v in pairs(pchar.Head:GetChildren()) do
  3772.             if v:IsA("Decal") then
  3773.                 v:Destroy()
  3774.             end
  3775.         end
  3776.        
  3777.         local face = Instance.new("Decal", pchar.Head)
  3778.         face.Name = "face"
  3779.         face.Texture = "rbxasset://textures/face.png"
  3780.         face.Face = "Front"
  3781.        
  3782.         for i,v in pairs(pchar:GetChildren()) do
  3783.             if v:IsA("Seat") then
  3784.                 v:Destroy()
  3785.             end
  3786.         end
  3787.        
  3788.         for i,v in pairs(pchar.Torso:GetChildren()) do
  3789.             if v:IsA("Weld") then
  3790.                 v:Destroy()
  3791.             end
  3792.         end
  3793.        
  3794.         for i,v in pairs(pchar.Torso:GetChildren()) do
  3795.             if v:IsA("SpecialMesh") then
  3796.                 v:Destroy()
  3797.             end
  3798.         end
  3799.        
  3800.         pchar["Body Colors"].HeadColor = BrickColor.new("Cool yellow")
  3801.         pchar["Body Colors"].LeftArmColor = BrickColor.new("Cool yellow")
  3802.         pchar["Body Colors"].LeftLegColor = BrickColor.new("Medium blue")
  3803.         pchar["Body Colors"].RightArmColor = BrickColor.new("Cool yellow")
  3804.         pchar["Body Colors"].RightLegColor = BrickColor.new("Medium blue")
  3805.         pchar["Body Colors"].TorsoColor = BrickColor.new("Bright blue")
  3806.         for _,v in pairs(Player.Character:GetChildren()) do
  3807.             if v:IsA("Accessory") then
  3808.                 v:Destroy()
  3809.             end
  3810.         end
  3811.     end
  3812. end)
  3813.  
  3814. addcmd('creeper','make the player a creeper',{'crpr'},
  3815. function(args, speaker)
  3816.     local players = getPlayer(args[1], speaker)
  3817.     for i,v in pairs(players)do
  3818.     local pchar = gPlayers[v].Character
  3819.         if gPlayers[v] and pchar and pchar:findFirstChild("Torso") then
  3820.             if pchar:FindFirstChild("Shirt") then
  3821.                 pchar.Shirt.Parent = pchar.Torso
  3822.             end
  3823.             if pchar:FindFirstChild("Pants") then
  3824.                 pchar.Pants.Parent = pchar.Torso
  3825.             end
  3826.             if pchar:FindFirstChild("Shirt Graphic") then
  3827.                 pchar["Shirt Graphic"].Graphic = ""
  3828.             end
  3829.             for i,v in pairs(pchar:GetChildren()) do
  3830.                 if v:IsA("Accessory") then
  3831.                     v:Destroy()
  3832.                 end
  3833.             end
  3834.             pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  3835.             pchar.Torso["Right Shoulder"].C0 = CFrame.new(0,-1.5,-.5) * CFrame.Angles(0,math.rad(90),0)
  3836.             pchar.Torso["Left Shoulder"].C0 = CFrame.new(0,-1.5,-.5) * CFrame.Angles(0,math.rad(-90),0)
  3837.             pchar.Torso["Right Hip"].C0 = CFrame.new(0,-1,.5) * CFrame.Angles(0,math.rad(90),0)
  3838.             pchar.Torso["Left Hip"].C0 = CFrame.new(0,-1,.5) * CFrame.Angles(0,math.rad(-90),0)
  3839.             pchar["Body Colors"].HeadColor = BrickColor.new("Bright green")
  3840.             pchar["Body Colors"].LeftArmColor = BrickColor.new("Bright green")
  3841.             pchar["Body Colors"].LeftLegColor = BrickColor.new("Bright green")
  3842.             pchar["Body Colors"].RightArmColor = BrickColor.new("Bright green")
  3843.             pchar["Body Colors"].RightLegColor = BrickColor.new("Bright green")
  3844.             pchar["Body Colors"].TorsoColor = BrickColor.new("Bright green")
  3845.         end
  3846.     end
  3847. end)
  3848.  
  3849. addcmd('uncreeper','makes player back to normal',{},
  3850. function(args, speaker)
  3851.     local players = getPlayer(args[1], speaker)
  3852.     for i,v in pairs(players)do
  3853.         execCmd("normal " .. gPlayers[v].Name, Player)
  3854.     end
  3855. end)
  3856.  
  3857. addcmd('shrek', 'makes player shrek',{},
  3858. function(args, speaker)
  3859.     local players = getPlayer(args[1], speaker)
  3860.     for i,v in pairs(players) do
  3861.         local pchar = gPlayers[v].Character
  3862.         for i,v in pairs(pchar:GetChildren()) do
  3863.             if v:IsA("Accessory") or v:IsA("CharacterMesh") or v:IsA("Shirt") or v:IsA("Pants")
  3864. then
  3865.                 v:Destroy()
  3866.             end
  3867.         end
  3868.         for i,v in pairs(pchar.Head:GetChildren()) do
  3869.             if v:IsA("Decal") or v:IsA("SpecialMesh") then
  3870.                 v:Destroy()
  3871.             end
  3872.         end
  3873.        
  3874.         local mesh = Instance.new("SpecialMesh", pchar.Head)
  3875.         mesh.MeshType = "FileMesh"
  3876.         pchar.Head.Mesh.MeshId = "http://www.roblox.com/asset/?id=19999257"
  3877.         pchar.Head.Mesh.Offset = Vector3.new(-0.1, 0.1, 0)
  3878.         pchar.Head.Mesh.TextureId = "http://www.roblox.com/asset/?id=156397869"
  3879.        
  3880.         local Shirt = Instance.new("Shirt", gPlayers[v].Character)
  3881.         local Pants = Instance.new("Pants", gPlayers[v].Character)
  3882.        
  3883.         Shirt.ShirtTemplate = "rbxassetid://133078194"
  3884.         Pants.PantsTemplate = "rbxassetid://133078204"
  3885.     end
  3886. end)
  3887.  
  3888. addcmd('unshrek','makes player back to normal',{},
  3889. function(args, speaker)
  3890.     local players = getPlayer(args[1], speaker)
  3891.     for i,v in pairs(players)do
  3892.         execCmd("normal " .. gPlayers[v].Name, Player)
  3893.     end
  3894. end)
  3895.  
  3896. addcmd('control','controls player',{},
  3897. function(args, speaker)
  3898.     local players = getPlayer(args[1], speaker)
  3899.     for i,v in pairs(players)do
  3900.         local pchar = gPlayers[v].Character
  3901.         if gPlayers[v] and pchar then
  3902.             pchar.Humanoid.PlatformStand = true
  3903.             local w = Instance.new("Weld", Player.Character.Torso)
  3904.             w.Part0 = Player.Character.Torso
  3905.             w.Part1 = pchar.Torso  
  3906.             local w2 = Instance.new("Weld", Player.Character.Head)
  3907.             w2.Part0 = Player.Character.Head
  3908.             w2.Part1 = pchar.Head  
  3909.             local w3 = Instance.new("Weld", Player.Character:findFirstChild("Right Arm"))
  3910.             w3.Part0 = Player.Character:findFirstChild("Right Arm")
  3911.             w3.Part1 = pchar:findFirstChild("Right Arm")
  3912.             local w4 = Instance.new("Weld", Player.Character:findFirstChild("Left Arm"))
  3913.             w4.Part0 = Player.Character:findFirstChild("Left Arm")
  3914.             w4.Part1 = pchar:findFirstChild("Left Arm")
  3915.             local w5 = Instance.new("Weld", Player.Character:findFirstChild("Right Leg"))
  3916.             w5.Part0 = Player.Character:findFirstChild("Right Leg")
  3917.             w5.Part1 = pchar:findFirstChild("Right Leg")
  3918.             local w6 = Instance.new("Weld", Player.Character:findFirstChild("Left Leg"))
  3919.             w6.Part0 = Player.Character:findFirstChild("Left Leg")
  3920.             w6.Part1 = pchar:findFirstChild("Left Leg")
  3921.             char.Head.face:Destroy()
  3922.             for i,v in pairs(pchar:GetChildren()) do
  3923.                 if v:IsA("BasePart") then
  3924.                     v.CanCollide = false
  3925.                 end
  3926.             end
  3927.             for i,v in pairs(char:GetChildren()) do
  3928.                 if v:IsA("BasePart") then
  3929.                     v.Transparency = 1
  3930.                 elseif v:IsA("Accessory") then
  3931.                     v:Destroy()
  3932.                 end
  3933.             end
  3934.             pchar.Parent = char
  3935.             pchar.Humanoid.Changed:connect(function()
  3936.                 pchar.Humanoid.PlatformStand = true
  3937.             end)
  3938.         end
  3939.         end
  3940. end)
  3941.  
  3942. addcmd('nuke','nukes player',{},
  3943. function(args, speaker)
  3944.     local players = getPlayer(args[1], speaker)
  3945.     for i,v in pairs(players)do
  3946.         local pchar = gPlayers[v].Character
  3947.         if gPlayers[v] and pchar and pchar:FindFirstChild("Torso")  then
  3948.             local nuke = Instance.new("Part", game.Workspace)
  3949.             nuke.Anchored = true
  3950.             nuke.CanCollide = false
  3951.             nuke.FormFactor = "Symmetric"
  3952.             nuke.Shape = "Ball"
  3953.             nuke.Size = Vector3.new(1,1,1)
  3954.             nuke.BrickColor = BrickColor.new("New Yeller")
  3955.             nuke.Transparency = 0.5
  3956.             nuke.Reflectance = 0.2
  3957.             nuke.TopSurface = 0
  3958.             nuke.BottomSurface = 0
  3959.             nuke.Touched:connect(function (hit)
  3960.                 if hit and hit.Parent then
  3961.                     local boom = Instance.new("Explosion", game.Workspace)
  3962.                     boom.Position = hit.Position
  3963.                     boom.BlastRadius = 11
  3964.                     boom.BlastPressure = math.huge
  3965.                 end
  3966.             end)
  3967.             local CF = pchar.Torso.CFrame
  3968.             nuke.CFrame = CF
  3969.             for i = 1,333 do
  3970.                 nuke.Size = nuke.Size + Vector3.new(3,3,3)
  3971.                 nuke.CFrame = CF
  3972.                 wait(1/44)
  3973.             end
  3974.             nuke:Destroy()
  3975.         end
  3976.     end
  3977. end)
  3978.  
  3979. addcmd('infect','infects player',{},
  3980. function(args, speaker)
  3981.     local players = getPlayer(args[1], speaker)
  3982.     for i,v in pairs(players)do
  3983.         function infect(rip)
  3984.         local pchar = gPlayers[v].Character
  3985.             for i,v in pairs(pchar:GetChildren()) do
  3986.                 if v:IsA("Accessory") or v:IsA("Shirt") or v:IsA("Pants") then
  3987.                     v:Destroy()
  3988.                 end
  3989.             end
  3990.             if pchar.Torso:FindFirstChild("roblox") then
  3991.                 pchar.Torso.roblox:Destroy()
  3992.             end
  3993.             if pchar.Head:FindFirstChild("face") then
  3994.                 pchar.Head.face.Texture = "http://www.roblox.com/asset/?id=94634491"
  3995.             end
  3996.             if pchar:FindFirstChild("Body Colors") then
  3997.                 local Colors = pchar["Body Colors"]
  3998.                 local Skin = BrickColor.new("Pastel green")
  3999.                 local Clothes = BrickColor.new("Reddish brown")
  4000.                 Colors.HeadColor = Skin
  4001.                 Colors.LeftArmColor = Skin
  4002.                 Colors.RightArmColor = Skin
  4003.                 Colors.LeftLegColor = Clothes
  4004.                 Colors.RightLegColor = Clothes
  4005.                 Colors.TorsoColor = Clothes
  4006.             end
  4007.             local w1 = Instance.new("Weld", pchar)
  4008.             w1.Part0 = pchar["Right Arm"]
  4009.             w1.Part1 = pchar.Torso
  4010.             w1.C0 = CFrame.new(-1.5, 0.5, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(-90),
  4011. math.rad(0), math.rad(0))
  4012.             local w2 = Instance.new("Weld", pchar)
  4013.             w2.Part0 = pchar["Left Arm"]
  4014.             w2.Part1 = pchar.Torso
  4015.             w2.C0 = CFrame.new(1.5, 0.5, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(-90),
  4016. math.rad(0), math.rad(0))
  4017.             local rip = false
  4018.             local connect1 = pchar["Left Arm"].Touched:connect(function(hit)
  4019.                 if connect1 == false then
  4020.                     connect1 = true
  4021.                     if game.Players:FindFirstChild(hit.Parent.Name) then
  4022.                         infect(game.Players[hit.Parent.Name])
  4023.                     end
  4024.                     wait(0.5)
  4025.                     connect1 = true
  4026.                 end
  4027.             end)
  4028.             local connect2 = pchar["Right Arm"].Touched:connect(function(hit)
  4029.                 if connect2 == false then
  4030.                     connect2 = true
  4031.                     if game.Players:FindFirstChild(hit.Parent.Name) then
  4032.                         infect(game.Players[hit.Parent.Name])
  4033.                     end
  4034.                     wait(0.5)
  4035.                     connect2 = true
  4036.                 end
  4037.             end)
  4038.             local IV = Instance.new("IntValue", pchar)
  4039.             IV.Name = "Infected"
  4040.             IV.Value = 0
  4041.             IV.Changed:connect(function()
  4042.                 connect1:disconnect()
  4043.                 connect2:disconnect()
  4044.             end)
  4045.         end
  4046.         infect(v)
  4047.     end
  4048. end)
  4049.  
  4050. addcmd('uninfect','makes player back to normal',{},
  4051. function(args, speaker)
  4052.     local players = getPlayer(args[1], speaker)
  4053.     for i,v in pairs(players)do
  4054.         execCmd("normal " .. gPlayers[v].Name, Player)
  4055.     end
  4056. end)
  4057.  
  4058. addcmd('duck','makes players head a duck',{},
  4059. function(args, speaker)
  4060.     local players = getPlayer(args[1], speaker)
  4061.     for i,v in pairs(players)do
  4062.         local pchar = gPlayers[v].Character
  4063.         for i,v in pairs(pchar.Torso:GetChildren()) do
  4064.             if v:IsA("Decal") then
  4065.                 v:Destroy()
  4066.             end
  4067.         end
  4068.         for i,v in pairs(pchar:GetChildren()) do
  4069.             if v:IsA("Accessory") then
  4070.                 v:Destroy()
  4071.             end
  4072.         end
  4073.         local duck = Instance.new("SpecialMesh", pchar.Torso)
  4074.         duck.MeshType = "FileMesh"
  4075.         duck.MeshId = "http://www.roblox.com/asset/?id=9419831"
  4076.         duck.TextureId = "http://www.roblox.com/asset/?id=9419827"
  4077.         duck.Scale = Vector3.new(5, 5, 5)
  4078.         pchar.Head.Transparency = 1
  4079.         pchar["Left Arm"].Transparency = 1
  4080.         pchar["Right Arm"].Transparency = 1
  4081.         pchar["Left Leg"].Transparency = 1
  4082.         pchar["Right Leg"].Transparency = 1
  4083.         pchar.Head.face.Transparency = 1
  4084.     end
  4085. end)
  4086.  
  4087. addcmd('unduck','makes player back to normal',{},
  4088. function(args, speaker)
  4089.     local players = getPlayer(args[1], speaker)
  4090.     for i,v in pairs(players)do
  4091.         execCmd("normal " .. gPlayers[v].Name, Player)
  4092.     end
  4093. end)
  4094.  
  4095. addcmd('disable','removes players humanoid',{},
  4096. function(args, speaker)
  4097.     local players = getPlayer(args[1], speaker)
  4098.     for i,v in pairs(players)do
  4099.         local pchar = gPlayers[v].Character
  4100.         if pchar:FindFirstChild("Humanoid") then
  4101.            pchar.Humanoid.Name = "HUMANOID_" .. gPlayers[v].Name
  4102.            local humanoid = pchar["HUMANOID_" .. gPlayers[v].Name]
  4103.            humanoid.Parent = game.ContextActionService
  4104.         Notify(gPlayers[v].Name .. ' has been disabled')
  4105.         end
  4106.     end
  4107. end)
  4108.  
  4109. addcmd('enable','gives player humanoid',{},
  4110. function(args, speaker)
  4111.     local players = getPlayer(args[1], speaker)
  4112.     for i,v in pairs(players)do
  4113.         local pchar = gPlayers[v].Character
  4114.         if pchar:FindFirstChild("Humanoid") then
  4115.             return
  4116.         else
  4117.             local humanoid = game.ContextActionService["HUMANOID_" .. gPlayers[v].Name]
  4118.             humanoid.Parent = pchar
  4119.             humanoid.Name = "Humanoid"
  4120.             Notify(gPlayers[v].Name .. ' has been enabled')
  4121.         end
  4122.     end
  4123. end)
  4124.  
  4125. addcmd('size','changes size of player',{},
  4126. function(args, speaker)
  4127.     local players = getPlayer(args[1], speaker)
  4128.     for i,v in pairs(players)do
  4129.     local pchar = gPlayers[v].Character
  4130.         local function scale(chr,scl)
  4131.        
  4132.             for _,v in pairs(pchar:GetChildren()) do
  4133.                 if v:IsA("Accessory") then
  4134.                     v:Clone()
  4135.                     v.Parent = game.Lighting
  4136.                 end
  4137.             end
  4138.                
  4139.             local Head = chr['Head']
  4140.             local Torso = chr['Torso']
  4141.             local LA = chr['Left Arm']
  4142.             local RA = chr['Right Arm']
  4143.             local LL = chr['Left Leg']
  4144.             local RL = chr['Right Leg']
  4145.             local HRP = chr['HumanoidRootPart']
  4146.        
  4147.             wait(0.1)
  4148.            
  4149.             Head.formFactor = 3
  4150.             Torso.formFactor = 3
  4151.             LA.formFactor = 3
  4152.             RA.formFactor = 3
  4153.             LL.formFactor = 3
  4154.             RL.formFactor = 3
  4155.             HRP.formFactor = 3
  4156.            
  4157.             Head.Size = Vector3.new(scl * 2, scl, scl)
  4158.             Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  4159.             LA.Size = Vector3.new(scl, scl * 2, scl)
  4160.             RA.Size = Vector3.new(scl, scl * 2, scl)
  4161.             LL.Size = Vector3.new(scl, scl * 2, scl)
  4162.             RL.Size = Vector3.new(scl, scl * 2, scl)
  4163.             HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  4164.            
  4165.             local Motor1 = Instance.new('Motor6D', Torso)
  4166.             Motor1.Part0 = Torso
  4167.             Motor1.Part1 = Head
  4168.             Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  4169.             Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  4170.             Motor1.Name = "Neck"
  4171.                    
  4172.             local Motor2 = Instance.new('Motor6D', Torso)
  4173.             Motor2.Part0 = Torso
  4174.             Motor2.Part1 = LA
  4175.             Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  4176.             Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  4177.             Motor2.Name = "Left Shoulder"
  4178.            
  4179.             local Motor3 = Instance.new('Motor6D', Torso)
  4180.             Motor3.Part0 = Torso
  4181.             Motor3.Part1 = RA
  4182.             Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  4183.             Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  4184.             Motor3.Name = "Right Shoulder"
  4185.            
  4186.             local Motor4 = Instance.new('Motor6D', Torso)
  4187.             Motor4.Part0 = Torso
  4188.             Motor4.Part1 = LL
  4189.             Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  4190.             Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  4191.             Motor4.Name = "Left Hip"
  4192.            
  4193.             local Motor5 = Instance.new('Motor6D', Torso)
  4194.             Motor5.Part0 = Torso
  4195.             Motor5.Part1 = RL
  4196.             Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  4197.             Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  4198.             Motor5.Name = "Right Hip"
  4199.            
  4200.             local Motor6 = Instance.new('Motor6D', HRP)
  4201.             Motor6.Part0 = HRP
  4202.             Motor6.Part1 = Torso
  4203.             Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  4204.             Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  4205.                
  4206.         end
  4207.        
  4208.         scale(pchar, args[2])
  4209.    
  4210.         for _,v in pairs(game.Lighting:GetChildren()) do
  4211.             if v:IsA("Accessory") then
  4212.                 v.Parent = pchar
  4213.             end
  4214.         end
  4215.     end
  4216. end)
  4217.  
  4218. addcmd('clone','clones player',{},
  4219. function(args, speaker)
  4220.     local players = getPlayer(args[1], speaker)
  4221.     for i,v in pairs(players)do
  4222.         local pchar = gPlayers[v].Character
  4223.         pchar.Archivable = true
  4224.         local clone = pchar:Clone()
  4225.         clone.Parent = game.Workspace
  4226.         clone:MoveTo(pchar:GetModelCFrame().p)
  4227.         clone:MakeJoints()
  4228.         pchar.Archivable = false
  4229.     end
  4230. end)
  4231.  
  4232. addcmd('spin','spins player',{},
  4233. function(args, speaker)
  4234.     local players = getPlayer(args[1], speaker)
  4235.     for i,v in pairs(players)do
  4236.         local pchar = gPlayers[v].Character
  4237.         for i,v in pairs(pchar.Torso:GetChildren()) do
  4238.             if v.Name == "Spinning" then
  4239.                 v:Destroy()
  4240.             end
  4241.         end
  4242.         local Torso = pchar.Torso
  4243.         local BG = Instance.new("BodyGyro", Torso)
  4244.         BG.Name = "Spinning"
  4245.         BG.maxTorque = Vector3.new(0, math.huge, 0)
  4246.         BG.P = 11111
  4247.         BG.cframe = Torso.CFrame
  4248.         repeat wait(1/44)
  4249.             BG.CFrame = BG.CFrame * CFrame.Angles(0,math.rad(30),0)
  4250.         until not BG or BG.Parent ~= Torso
  4251.     end
  4252. end)
  4253.  
  4254. addcmd('unspin','stops spinning player',{},
  4255. function(args, speaker)
  4256.     local players = getPlayer(args[1], speaker)
  4257.     for i,v in pairs(players)do
  4258.         local pchar = gPlayers[v].Character
  4259.         for i,v in pairs(pchar.Torso:GetChildren()) do
  4260.             if v.Name == "Spinning" then
  4261.                 v:Destroy()
  4262.             end
  4263.         end
  4264.     end
  4265. end)
  4266.  
  4267. addcmd('dog','makes player a dog',{},
  4268. function(args, speaker)
  4269.     local players = getPlayer(args[1], speaker)
  4270.     for i,v in pairs(players)do
  4271.         local pchar = gPlayers[v].Character
  4272.         if pchar:FindFirstChild("Shirt") then
  4273.             pchar.Shirt:Destroy()
  4274.         end
  4275.         if pchar:FindFirstChild("Pants") then
  4276.             pchar.Pants:Destroy()
  4277.         end
  4278.         if pchar:FindFirstChild("Shirt Graphic") then
  4279.             pchar["Shirt Graphic"].Graphic = ""
  4280.         end
  4281.         pchar.Torso.Transparency = 1
  4282.         pchar.Torso.Neck.C0 = CFrame.new(0,-.5,-2) * CFrame.Angles(math.rad(90),math.rad(180),0)
  4283.         pchar.Torso["Right Shoulder"].C0 = CFrame.new(.5,-1.5,-1.5) * CFrame.Angles(0,math.rad(90),0)
  4284.         pchar.Torso["Left Shoulder"].C0 = CFrame.new(-.5,-1.5,-1.5) * CFrame.Angles(0,math.rad(-90),0)
  4285.         pchar.Torso["Right Hip"].C0 = CFrame.new(1.5,-1,1.5) * CFrame.Angles(0,math.rad(90),0)
  4286.         pchar.Torso["Left Hip"].C0 = CFrame.new(-1.5,-1,1.5) * CFrame.Angles(0,math.rad(-90),0)
  4287.         local FakeTorso = Instance.new("Seat", pchar)
  4288.         FakeTorso.Name = "FakeTorso"
  4289.         FakeTorso.FormFactor = "Symmetric"
  4290.         FakeTorso.TopSurface = 0
  4291.         FakeTorso.BottomSurface = 0
  4292.         FakeTorso.Size = Vector3.new(3,1,4)
  4293.         FakeTorso.BrickColor = BrickColor.new("Brown")
  4294.         FakeTorso.CFrame = pchar.Torso.CFrame
  4295.         local BF = Instance.new("BodyForce", FakeTorso)
  4296.         BF.Force = Vector3.new(0, FakeTorso:GetMass() * 196.25, 0)
  4297.         local W = Instance.new("Weld", pchar.Torso)
  4298.         W.Part0 = pchar.Torso
  4299.         W.Part1 = FakeTorso
  4300.         W.C0 = CFrame.new(0,-.5,0)
  4301.         local BC = pchar["Body Colors"]
  4302.         BC.HeadColor = BrickColor.new("Brown")
  4303.         BC.LeftArmColor = BrickColor.new("Brown")
  4304.         BC.LeftLegColor = BrickColor.new("Brown")
  4305.         BC.RightArmColor = BrickColor.new("Brown")
  4306.         BC.RightLegColor = BrickColor.new("Brown")
  4307.         BC.TorsoColor = BrickColor.new("Brown")
  4308.     end
  4309. end)
  4310.  
  4311. addcmd('undog','makes player back to normal',{},
  4312. function(args, speaker)
  4313.     local players = getPlayer(args[1], speaker)
  4314.     for i,v in pairs(players)do
  4315.         execCmd("normal " .. gPlayers[v].Name, Player)
  4316.     end
  4317. end)
  4318.  
  4319. addcmd('loopheal','loop heals player',{},
  4320. function(args, speaker)
  4321.     local players = getPlayer(args[1], speaker)
  4322.     for i,v in pairs(players)do
  4323.         local pchar = gPlayers[v].Character
  4324.         if pchar:FindFirstChild("LoopHeal") then
  4325.             pchar.LoopHeal.Name = "NotLoopHeal"
  4326.             wait(0.1)
  4327.             pchar.NotLoopHeal:Destroy()
  4328.         end
  4329.         local LoopHeal = Instance.new("StringValue", pchar)
  4330.         LoopHeal.Name = "LoopHeal"
  4331.         repeat wait(0.1)
  4332.             pchar.Humanoid.Health = pchar.Humanoid.MaxHealth
  4333.         until LoopHeal.Name == "NotLoopHeal"
  4334.     end
  4335. end)
  4336.  
  4337. addcmd('unloopheal','stops loop heal on player',{'noloopheal'},
  4338. function(args, speaker)
  4339.     local players = getPlayer(args[1], speaker)
  4340.     for i,v in pairs(players)do
  4341.         local pchar = gPlayers[v].Character
  4342.         if pchar:FindFirstChild("LoopHeal") then
  4343.             pchar.LoopHeal.Name = "NotLoopHeal"
  4344.             wait(0.1)
  4345.             pchar.NotLoopHeal:Destroy()
  4346.         end
  4347.     end
  4348. end)
  4349.  
  4350. addcmd('fling','flings player',{},
  4351. function(args, speaker)
  4352.     local players = getPlayer(args[1], speaker)
  4353.     for i,v in pairs(players)do
  4354.         local pchar = gPlayers[v].Character
  4355.         if pchar:FindFirstChild("Humanoid") then
  4356.             local xran
  4357.             local zran
  4358.             repeat
  4359.                 xran = math.random(-9999,9999)
  4360.             until math.abs(xran) >= 5555
  4361.             repeat
  4362.                 zran = math.random(-9999,9999)
  4363.             until math.abs(zran) >= 5555
  4364.             pchar.Humanoid.Sit = true
  4365.             pchar.Torso.Velocity = Vector3.new(0,0,0)
  4366.             local BF = Instance.new("BodyForce", pchar.Torso)
  4367.             BF.force = Vector3.new(xran * 4, 9999 * 5, zran * 4)
  4368.         end
  4369.     end
  4370. end)
  4371.  
  4372. addcmd('nograv','makes player have moon gravity',{''},
  4373. function(args, speaker)
  4374.     local players = getPlayer(args[1], speaker)
  4375.     for i,v in pairs(players)do
  4376.         local pchar = gPlayers[v].Character
  4377.         for i,v in pairs(pchar.Torso:GetChildren()) do
  4378.             if v.Name == "NoGrav" then
  4379.                 v:Destroy()
  4380.             end
  4381.         end
  4382.         local BF = Instance.new("BodyForce", pchar.Torso)
  4383.         BF.Name = "NoGrav"
  4384.         BF.Force = Vector3.new(0,2700,0)
  4385.     end
  4386. end)
  4387.  
  4388. addcmd('grav','makes player have normal gravity',{''},
  4389. function(args, speaker)
  4390.     local players = getPlayer(args[1], speaker)
  4391.     for i,v in pairs(players)do
  4392.         local pchar = gPlayers[v].Character
  4393.         for i,v in pairs(pchar.Torso:GetChildren()) do
  4394.             if v.Name == "NoGrav" then
  4395.                 v:Destroy()
  4396.             end
  4397.         end
  4398.     end
  4399. end)
  4400.  
  4401. addcmd('seizure','makes player have a seizure',{''},
  4402. function(args, speaker)
  4403.     local players = getPlayer(args[1], speaker)
  4404.     for i,v in pairs(players)do
  4405.         local pchar = gPlayers[v].Character
  4406.         if pchar:FindFirstChild("Seizure") then
  4407.            
  4408.         end
  4409.         local Seizure = Instance.new("StringValue", pchar)
  4410.         Seizure.Name = "Seizure"
  4411.         pchar.Humanoid.PlatformStand = true
  4412.         repeat wait()
  4413.             pchar.Torso.Velocity = Vector3.new(math.random(-10,10),-5,math.random(-10,10))
  4414.             pchar.Torso.RotVelocity = Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  4415.         until Seizure.Name == "NotSeizure"
  4416.     end
  4417. end)
  4418.  
  4419. addcmd('unseizure','makes player stop having a seizure',{''},
  4420. function(args, speaker)
  4421.     local players = getPlayer(args[1], speaker)
  4422.     for i,v in pairs(players)do
  4423.         local pchar = gPlayers[v].Character
  4424.         if pchar:FindFirstChild("Seizure") then
  4425.             pchar.Humanoid.PlatformStand = false
  4426.             pchar.Seizure.Name = "NotSeizure"
  4427.             wait(0.1)
  4428.             pchar.NotSeizure:Destroy()
  4429.         end
  4430.     end
  4431. end)
  4432.  
  4433. addcmd('wtrbtools', 'tools from welcome to roblox building',{},
  4434. function(args, speaker)
  4435. x = game:GetService("InsertService"):LoadAsset(73089166)
  4436. for i,v in pairs(x:GetChildren()) do
  4437. v.Parent = game.Players.LocalPlayer.Backpack
  4438. end
  4439. x:Remove()
  4440. x = game:GetService("InsertService"):LoadAsset(73089204)
  4441. for i,v in pairs(x:GetChildren()) do
  4442. v.Parent = game.Players.LocalPlayer.Backpack
  4443. end
  4444. x:Remove()
  4445. x = game:GetService("InsertService"):LoadAsset(73089190)
  4446. for i,v in pairs(x:GetChildren()) do
  4447. v.Parent = game.Players.LocalPlayer.Backpack
  4448. end
  4449. x:Remove()
  4450. x = game:GetService("InsertService"):LoadAsset(58880579)
  4451. for i,v in pairs(x:GetChildren()) do
  4452. v.Parent = game.Players.LocalPlayer.Backpack
  4453. end
  4454. x:Remove()
  4455. x = game:GetService("InsertService"):LoadAsset(60791062)
  4456. for i,v in pairs(x:GetChildren()) do
  4457. v.Parent = game.Players.LocalPlayer.Backpack
  4458. end
  4459. x:Remove()
  4460. x = game:GetService("InsertService"):LoadAsset(73089239)
  4461. for i,v in pairs(x:GetChildren()) do
  4462. v.Parent = game.Players.LocalPlayer.Backpack
  4463. end
  4464. x:Remove()
  4465. end)
  4466.  
  4467. addcmd('m','makes a global message',{''},
  4468. function(args, speaker)
  4469.     local MSG = table.concat(args, " ")
  4470.     local newMSG = string.gsub(MSG, args[1] .. " ", "")
  4471.     _G.msg(MSG)
  4472. end)
  4473.  
  4474. addcmd('paper','makes player thin as paper',{''},
  4475. function(args, speaker)
  4476.     local players = getPlayer(args[1], speaker)
  4477.     for i,v in pairs(players)do
  4478.         local pchar = gPlayers[v].Character
  4479.         local LA = DATA.Paper:Clone()
  4480.         LA.Parent = pchar["Left Arm"]
  4481.         local RA = DATA.Paper:Clone()
  4482.         RA.Parent = pchar["Right Arm"]
  4483.         local LL = DATA.Paper:Clone()
  4484.         LL.Parent = pchar["Left Leg"]
  4485.         local RL = DATA.Paper:Clone()
  4486.         RL.Parent = pchar["Right Leg"]
  4487.         local T = DATA.Paper:Clone()
  4488.         T.Parent = pchar.Torso
  4489.         local H = DATA.Paper:Clone()
  4490.         H.Parent = pchar.Head
  4491.         pchar.Head.face:Destroy()
  4492.     end
  4493. end)
  4494.  
  4495. addcmd('punish','punishs player',{''},
  4496. function(args, speaker)
  4497.     local players = getPlayer(args[1], speaker)
  4498.     for i,v in pairs(players)do
  4499.         local pchar = gPlayers[v].Character
  4500.         pchar.Parent = game.Lighting
  4501.     end
  4502. end)
  4503.  
  4504. addcmd('unpunish','unpunishs player',{''},
  4505. function(args, speaker)
  4506.     local players = getPlayer(args[1], speaker)
  4507.     for i,v in pairs(players)do
  4508.         if game.Lighting:FindFirstChild("" .. gPlayers[v].Name) then
  4509.             game.Lighting:FindFirstChild("" .. gPlayers[v].Name).Parent = game.Workspace
  4510.         end
  4511.     end
  4512. end)
  4513.  
  4514. addcmd('disco','disco party',{''},
  4515. function(args, speaker)
  4516.     Disco = true
  4517.     if Disco == true then
  4518.         repeat wait(0.3)
  4519.             game.Lighting.Ambient = Color3.new(math.random(),math.random(),math.random())
  4520.         until Disco == false
  4521.     end
  4522. end)
  4523.  
  4524. addcmd('undisco','rip disco party',{''},
  4525. function(args, speaker)
  4526.     Disco = false
  4527.     wait(0.1)
  4528.     game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  4529. end)
  4530.  
  4531. Floating = false
  4532.  
  4533. addcmd('float', 'makes player float',{},
  4534. function(args,speaker)
  4535.     Floating = true
  4536.     local players = getPlayer(args[1], speaker)
  4537.     for _,v in pairs(players) do
  4538.         local pchar = gPlayers[v].Character
  4539.         if gPlayers[v] and pchar and not pchar:FindFirstChild("Float") then
  4540.             spawn(function()
  4541.                 local float = DATA.Float:Clone()
  4542.                 float.Parent = pchar
  4543.                 float.CFrame = pchar.Torso.CFrame * CFrame.new(0,-3.5,0)
  4544.                 spawn(function()
  4545.                     while wait(0.1) do
  4546.                         if pchar:FindFirstChild("Float") then
  4547.                             float.CFrame = pchar.Torso.CFrame * CFrame.new(0,-3.5,0)
  4548.                         else
  4549.                             break
  4550.                         end
  4551.                     end
  4552.                 end)
  4553.             end)
  4554.         end
  4555.     end
  4556. end)
  4557.  
  4558. addcmd('unfloat','disables floating',{},
  4559. function(args, speaker)
  4560.     Floating = false
  4561.     local players = getPlayer(args[1], speaker)
  4562.     for i,v in pairs(players)do
  4563.         local pchar = gPlayers[v].Character
  4564.         if pchar:FindFirstChild("Float") then
  4565.             pchar.Float:Destroy()
  4566.         end
  4567.     end
  4568. end)
  4569.  
  4570. local Clip = true
  4571.  
  4572. addcmd('noclip','enables noclip',{},
  4573. function(args, speaker)
  4574. Notify('NoClip enabled')
  4575. Clip = false
  4576.     wait(1)
  4577.     Name = game.Players.LocalPlayer.Name
  4578.     game:GetService('Players').LocalPlayer.PlayerGui.ChildAdded:connect(function (NC)
  4579.         delay(0, function()
  4580.             if NC.Name ~= "Memes" then
  4581.                 NC:Destroy()
  4582.             end
  4583.         end)
  4584.     end)
  4585.     game:GetService('RunService').Stepped:connect(function ()
  4586.     game.Workspace[Name].Torso.CanCollide = Clip
  4587.     game.Workspace[Name].Head.CanCollide = Clip
  4588.     end)
  4589.     game.Workspace[Name].Torso.Changed:connect(function()
  4590.     game.Workspace[Name].Torso.CanCollide = Clip
  4591.     game.Workspace[Name].Head.CanCollide = Clip
  4592.     end)
  4593. end)
  4594.  
  4595. addcmd('clip','disables noclip',{},
  4596. function(args, speaker)
  4597.     Notify('NoClip disabled')
  4598.     Clip = true
  4599. end)
  4600.  
  4601. wait(0.1)
  4602.  
  4603. addcmd('prefix','changes prefix',{},
  4604. function(args, speaker)
  4605.     cmdprefix = args[1]
  4606.     Notify('Set prefix to "' .. args[1] .. '"')
  4607. end)
  4608.  
  4609. addcmd('respawn','respawns',{},
  4610. function(args, speaker)
  4611.     local players = getPlayer(args[1], speaker)
  4612.     for i,v in pairs(players) do
  4613.         local M = Instance.new('Model', gWorkspace) M.Name = 'respawn_iy'
  4614.         local H = Instance.new('Humanoid', M)
  4615.         local T = Instance.new('Part', M) T.Name = 'Torso' T.CanCollide = false T.Transparency = 1
  4616.         gPlayers[v].Character = M
  4617.     end
  4618. end)
  4619.  
  4620. addcmd('version','shows version',{''},
  4621. function(args, speaker)
  4622.     Notify("Version is " .. Version)
  4623. end)
  4624.  
  4625. -----------------------
  4626. -----Floating data-----
  4627. -----------------------
  4628.  
  4629. Mouse.KeyDown:connect(function (Key)
  4630.     if Key:byte() == 29 then
  4631.         if Floating == false then
  4632.             execCmd("float me", Player)
  4633.             Floating = true
  4634.         elseif Floating == true then
  4635.             execCmd("unfloat me", Player)
  4636.             Floating = false
  4637.         end
  4638.     end
  4639. end)
  4640.  
  4641. -------------------
  4642. ----Command bar----
  4643. -------------------
  4644.  
  4645. CMDbar = Instance.new('ScreenGui', game.CoreGui)
  4646. CMDbar.Name = 'GUI'
  4647. cmdBAR = Instance.new('TextBox', CMDbar)
  4648. cmdBAR.Name = 'CMDbar'
  4649. cmdBAR.Active = true
  4650. cmdBAR.BackgroundColor = BrickColor.new(255,255,255)
  4651. cmdBAR.BackgroundTransparency = 0.5
  4652. cmdBAR.BorderColor = BrickColor.new(255,255,255)
  4653. cmdBAR.BorderSizePixel = 0
  4654. cmdBAR.Position = UDim2.new(0, -500, 0.4, 0)
  4655. cmdBAR.Size = UDim2.new(0,200,0,20)
  4656. cmdBAR.Font = 'SourceSans'
  4657. cmdBAR.FontSize = 'Size18'
  4658. cmdBAR.Text = 'Press ; to Execute a Command'
  4659. cmdBAR.TextColor = BrickColor.new(0,0,0)
  4660.  
  4661. -------------------
  4662. ----Data Folder----
  4663. -------------------
  4664.  
  4665. DATA = Instance.new('Folder', game.ContextActionService)
  4666. DATA.Name = 'Data'
  4667.  
  4668. Paper = Instance.new('BlockMesh', DATA)
  4669. Paper.Name = 'Paper'
  4670. Paper.Scale = Vector3.new(1,1,0.1)
  4671.  
  4672. ayylmao = Instance.new('Hat', DATA)
  4673. ayylmao.Name = 'ayylmao'
  4674. ayyHandle = Instance.new('Part', ayylmao)
  4675. ayyHandle.Name = 'Handle'
  4676. ayyHandle.Size = Vector3.new(2,2.4,2)
  4677. ayyHandle.FormFactor = 'Plate'
  4678. ayyMesh = Instance.new('SpecialMesh', ayyHandle)
  4679. ayyMesh.Scale = Vector3.new(1,1.02,1)
  4680. ayyMesh.MeshType = 'FileMesh'
  4681. ayyMesh.MeshId = 'http://www.roblox.com/asset/?id=13827689'
  4682. ayyMesh.TextureId = 'http://www.roblox.com/asset/?id=13827796'
  4683.  
  4684. Float = Instance.new('Part', DATA)
  4685. Float.Name = 'Float'
  4686. Float.Transparency = 1
  4687. Float.Size = Vector3.new(6,1,6)
  4688. Float.Anchored = true
  4689.  
  4690. ---------------------------
  4691. --Commands GUI properties--
  4692. ---------------------------
  4693.  
  4694. cmdGUI = Instance.new('ScreenGui', DATA)
  4695. cmdGUI.Name = 'CMDs'
  4696. cmdMAIN = Instance.new('Frame', cmdGUI)
  4697. cmdMAIN.Name = 'MAIN'
  4698. cmdMAIN.Active = true
  4699. cmdMAIN.BackgroundColor = BrickColor.new(255,255,255)
  4700. cmdMAIN.BackgroundTransparency = 0.5
  4701. cmdMAIN.BorderColor = BrickColor.new(0,0,0)
  4702. cmdMAIN.BorderSizePixel = 0
  4703. cmdMAIN.Position = UDim2.new(0, 0, 0.7, 0)
  4704. cmdMAIN.Size = UDim2.new(0,185,0,15)
  4705. cmdMAIN.Draggable = true
  4706. cmdCMDs = Instance.new('ScrollingFrame', cmdMAIN)
  4707. cmdCMDs.Name = 'CMDs'
  4708. cmdCMDs.BackgroundColor = BrickColor.new(255,255,255)
  4709. cmdCMDs.BackgroundTransparency = 0.8
  4710. cmdCMDs.BorderColor = BrickColor.new(0,0,0)
  4711. cmdCMDs.BorderSizePixel = 0
  4712. cmdCMDs.Position = UDim2.new(0,0,0,15)
  4713. cmdCMDs.Size = UDim2.new(0,200,0,150)
  4714. cmdCMDs.CanvasSize = UDim2.new(0,0,0,0)
  4715. cmdCMDs.TopImage = 'rbxasset://textures/blackBkg_square.png'
  4716. cmdCMDs.MidImage = 'rbxasset://textures/blackBkg_square.png'
  4717. cmdCMDs.BottomImage = 'rbxasset://textures/blackBkg_square.png'
  4718. cmdCMDs.ScrollBarThickness = 5
  4719. cmdExit = Instance.new('TextButton', cmdMAIN)
  4720. cmdExit.Name = 'Exit'
  4721. cmdExit.BackgroundColor = BrickColor.new(255,0,0)
  4722. cmdExit.BackgroundTransparency = 0.5
  4723. cmdExit.BorderColor = BrickColor.new(255,0,0)
  4724. cmdExit.BorderSizePixel = 0
  4725. cmdExit.Position = UDim2.new(0,185,0,0)
  4726. cmdExit.Size = UDim2.new(0,15,0,15)
  4727. cmdExit.Text = ""
  4728.  
  4729. cmdEx = Instance.new('TextLabel', cmdMAIN)
  4730. cmdEx.Name = 'Example'
  4731. cmdEx.BackgroundColor = BrickColor.new(0,0,0)
  4732. cmdEx.BackgroundTransparency = 0.8
  4733. cmdEx.BorderColor = BrickColor.new(0,0,0)
  4734. cmdEx.BorderSizePixel = 0
  4735. cmdEx.Position = UDim2.new(0,5,0,20)
  4736. cmdEx.Size = UDim2.new(0,190,0,20)
  4737. cmdEx.Visible = false
  4738. cmdEx.TextColor = BrickColor.new(255,255,255)
  4739. cmdEx.TextXAlignment = 'Left'
  4740.  
  4741. espMAIN = Instance.new('BillboardGui', DATA)
  4742. espMAIN.Name = 'MAIN'
  4743. espMAIN.AlwaysOnTop = true
  4744. espMAIN.ExtentsOffset = Vector3.new(0,1,0)
  4745. espMAIN.Size = UDim2.new(0,5,0,5)
  4746. espMAIN.StudsOffset = Vector3.new(0,1,0)
  4747. espDot = Instance.new('Frame', espMAIN)
  4748. espDot.BackgroundColor = BrickColor.new(42,181,255)
  4749. espDot.BackgroundTransparency = 0.3
  4750. espDot.BorderSizePixel = 0
  4751. espDot.Position = UDim2.new(-0.5,0,-0.5,0)
  4752. espDot.Size = UDim2.new(2,0,2,0)
  4753. espDot.Visible = false
  4754. espDot.ZIndex = 10
  4755. espName = Instance.new('TextLabel', espMAIN)
  4756. espName.Name = 'Name'
  4757. espName.BackgroundColor = BrickColor.new(0,0,0)
  4758. espName.BackgroundTransparency = 1
  4759. espName.BorderColor = BrickColor.new(0,0,0)
  4760. espName.BorderSizePixel = 0
  4761. espName.Position = UDim2.new(0,0,0,-35)
  4762. espName.Size = UDim2.new(1,0,10,0)
  4763. espName.Visible = false
  4764. espName.ZIndex = 10
  4765.  
  4766. -------------------------
  4767. ----Notify properties----
  4768. -------------------------
  4769.  
  4770. notifyMAIN = Instance.new('ScreenGui', DATA)
  4771. notifyMAIN.Name = 'Notification'
  4772. notifyNOT = Instance.new('Frame', notifyMAIN)
  4773. notifyNOT.Name = 'NOTIFY'
  4774. notifyNOT.BackgroundColor = BrickColor.new(255,255,255)
  4775. notifyNOT.BackgroundTransparency = 0.5
  4776. notifyNOT.BorderColor = BrickColor.new(0,0,0)
  4777. notifyNOT.BorderSizePixel = 2
  4778. notifyNOT.Position = UDim2.new(0,0,-0.06,0)
  4779. notifyNOT.Size = UDim2.new(1,0,0,35)
  4780. notifyNOTE = Instance.new('TextLabel', notifyNOT)
  4781. notifyNOTE.Name = 'NOTE'
  4782. notifyNOTE.BackgroundColor = BrickColor.new(255,255,255)
  4783. notifyNOTE.BackgroundTransparency = 1
  4784. notifyNOTE.BorderColor = BrickColor.new(0,0,0)
  4785. notifyNOTE.BorderSizePixel = 0
  4786. notifyNOTE.Size = UDim2.new(1,0,1,0)
  4787. notifyNOTE.ZIndex = 10
  4788. notifyNOTE.FontSize = 'Size24'
  4789. notifyNOTE.Font = 'SourceSans'
  4790. notifyNOTE.Text = 'NOTIFY'
  4791. notifyNOTE.TextColor = BrickColor.new(0,0,0)
  4792. notifyNOTE.TextStrokeColor3 = Color3.new(255,255,255)
  4793. notifyNOTE.TextStrokeTransparency = 0.8
  4794.  
  4795. tpTool = Instance.new('HopperBin', DATA)
  4796. tpTool.Name = 'Teleport'
  4797. tpScript = Instance.new('LocalScript', tpTool)
  4798. tpScript.Source =
  4799.     [[
  4800. local Player = game.Players.LocalPlayer
  4801. local Mouse = Player:GetMouse()
  4802.  
  4803. local Tool = script.Parent
  4804.  
  4805. Mouse.Button1Down:connect(function()
  4806.     if Mouse.Target and Tool.Active then
  4807.         Player.Character.HumanoidRootPart.CFrame = Mouse.Hit + Vector3.new(0,2,0)
  4808.     end
  4809. end)
  4810. ]]
  4811.  
  4812. modJAIL = Instance.new('Model', DATA)
  4813. modJAIL.Name = 'JAIL'
  4814. botJAIL = Instance.new('Part', modJAIL)
  4815. botJAIL.Name = 'BOTTOM'
  4816. botJAIL.BrickColor = BrickColor.new('Black')
  4817. botJAIL.Transparency = 0.5
  4818. botJAIL.Position = Vector3.new(-6.2,0.5,-11.6)
  4819. botJAIL.Anchored = true
  4820. botJAIL.Locked = true
  4821. botJAIL.Size = Vector3.new(6,1,6)
  4822. botJAIL.TopSurface = 'Smooth'
  4823. botJAIL.BottomSurface = 'Smooth'
  4824. topJAIL = Instance.new('Part', modJAIL)
  4825. topJAIL.Name = 'BOTTOM'
  4826. topJAIL.BrickColor = BrickColor.new('Black')
  4827. topJAIL.Transparency = 0.5
  4828. topJAIL.Position = Vector3.new(-6.2,7.5,-11.6)
  4829. topJAIL.Anchored = true
  4830. topJAIL.Locked = true
  4831. topJAIL.Size = Vector3.new(6,1,6)
  4832. topJAIL.TopSurface = 'Smooth'
  4833. topJAIL.BottomSurface = 'Smooth'
  4834. p1 = Instance.new('Part', modJAIL)
  4835. p1.Name = 'MAIN'
  4836. p1.BrickColor = BrickColor.new('Black')
  4837. p1.Transparency = 1
  4838. p1.Position = Vector3.new(-8.7,4,-11.6)
  4839. p1.Rotation = Vector3.new(-180,0,-180)
  4840. p1.Anchored = true
  4841. p1.Locked = true
  4842. p1.Size = Vector3.new(1,6,4)
  4843. p1.TopSurface = 'Smooth'
  4844. p1.BottomSurface = 'Smooth'
  4845. p2 = Instance.new('Part', modJAIL)
  4846. p2.BrickColor = BrickColor.new('Black')
  4847. p2.Transparency = 0.5
  4848. p2.Position = Vector3.new(-3.7,4,-14.1)
  4849. p2.Anchored = true
  4850. p2.Locked = true
  4851. p2.Size = Vector3.new(1,6,1)
  4852. p2.TopSurface = 'Smooth'
  4853. p2.BottomSurface = 'Smooth'
  4854. p3 = Instance.new('Part', modJAIL)
  4855. p3.BrickColor = BrickColor.new('Black')
  4856. p3.Transparency = 0.5
  4857. p3.Position = Vector3.new(-8.7,4,-9.1)
  4858. p3.Anchored = true
  4859. p3.Locked = true
  4860. p3.Size = Vector3.new(1,6,1)
  4861. p3.TopSurface = 'Smooth'
  4862. p3.BottomSurface = 'Smooth'
  4863. p4 = Instance.new('Part', modJAIL)
  4864. p4.BrickColor = BrickColor.new('Black')
  4865. p4.Transparency = 0.5
  4866. p4.Position = Vector3.new(-3.7,4,-9.1)
  4867. p4.Anchored = true
  4868. p4.Locked = true
  4869. p4.Size = Vector3.new(1,6,1)
  4870. p4.TopSurface = 'Smooth'
  4871. p4.BottomSurface = 'Smooth'
  4872. p5 = Instance.new('Part', modJAIL)
  4873. p5.BrickColor = BrickColor.new('Black')
  4874. p5.Transparency = 0.5
  4875. p5.Position = Vector3.new(-8.7,4,-14.1)
  4876. p5.Anchored = true
  4877. p5.Locked = true
  4878. p5.Size = Vector3.new(1,6,1)
  4879. p5.TopSurface = 'Smooth'
  4880. p5.BottomSurface = 'Smooth'
  4881. p6 = Instance.new('Part', modJAIL)
  4882. p6.BrickColor = BrickColor.new('Black')
  4883. p6.Transparency = 1
  4884. p6.Position = Vector3.new(-6.2,4,-14.1)
  4885. p6.Rotation = Vector3.new(0,90,0)
  4886. p6.Anchored = true
  4887. p6.Locked = true
  4888. p6.Size = Vector3.new(1,6,4)
  4889. p6.TopSurface = 'Smooth'
  4890. p6.BottomSurface = 'Smooth'
  4891. p7 = Instance.new('Part', modJAIL)
  4892. p7.BrickColor = BrickColor.new('Black')
  4893. p7.Transparency = 1
  4894. p7.Position = Vector3.new(-3.7,4,-11.6)
  4895. p7.Anchored = true
  4896. p7.Locked = true
  4897. p7.Size = Vector3.new(1,6,4)
  4898. p7.TopSurface = 'Smooth'
  4899. p7.BottomSurface = 'Smooth'
  4900. p8 = Instance.new('Part', modJAIL)
  4901. p8.BrickColor = BrickColor.new('Black')
  4902. p8.Transparency = 1
  4903. p8.Position = Vector3.new(-6.2,4,-9.1)
  4904. p8.Rotation = Vector3.new(0,90,0)
  4905. p8.Anchored = true
  4906. p8.Locked = true
  4907. p8.Size = Vector3.new(1,6,4)
  4908. p8.TopSurface = 'Smooth'
  4909. p8.BottomSurface = 'Smooth'
  4910.  
  4911. ------------------------
  4912. ---Even more commands---
  4913. ------------------------
  4914.  
  4915. addcmd('ayylmao','ayy lmao',{''},
  4916. function(args, speaker)
  4917.     local players = getPlayer(args[1], speaker)
  4918.     for i,v in pairs(players)do
  4919.         local pchar = gPlayers[v].Character
  4920.         if pchar:FindFirstChild("Shirt") then
  4921.             pchar.Shirt:Destroy()
  4922.         end
  4923.         if pchar:FindFirstChild("Pants") then
  4924.             pchar.Pants:Destroy()
  4925.         end
  4926.         if pchar:FindFirstChild("Shirt Graphic") then
  4927.             pchar["Shirt Graphic"].Graphic = ""
  4928.         end
  4929.         for i,v in pairs(pchar:GetChildren()) do
  4930.             if v:IsA("Accessory") then
  4931.                 v:Destroy()
  4932.             end
  4933.         end
  4934.         local ayylmao = DATA.ayylmao:Clone()
  4935.         ayylmao.Parent = pchar
  4936.         local BC = pchar["Body Colors"]
  4937.         BC.HeadColor = BrickColor.new("Fossil")
  4938.         BC.LeftArmColor = BrickColor.new("Fossil")
  4939.         BC.LeftLegColor = BrickColor.new("Fossil")
  4940.         BC.RightArmColor = BrickColor.new("Fossil")
  4941.         BC.RightLegColor = BrickColor.new("Fossil")
  4942.         BC.TorsoColor = BrickColor.new("Fossil")
  4943.     end
  4944. end)
  4945.  
  4946. ----------------------
  4947. -----Commands GUI-----
  4948. ----------------------
  4949.  
  4950. CMDsFolder = Instance.new("Folder", game.CoreGui)
  4951.  
  4952. for i,v in pairs(CMDs) do
  4953.     CMDsValue = Instance.new("StringValue", CMDsFolder)
  4954.     CMDsValue.Value = v
  4955.     CMDsValue.RobloxLocked = true
  4956. end
  4957.  
  4958. local function commands()
  4959.     local cmds = DATA.CMDs:Clone()
  4960.     cmds.Parent = Player.PlayerGui
  4961.     local CMDsV = CMDsFolder:GetChildren()
  4962.     for i = 1, #CMDsV do
  4963.         local YSize = 25
  4964.         local Position = ((i * YSize) - YSize)
  4965.         local newcmd = cmds.MAIN.Example:Clone()
  4966.         newcmd.Parent = cmds.MAIN.CMDs
  4967.         newcmd.Visible = true
  4968.         newcmd.Position = UDim2.new(0,5,0, Position + 5)
  4969.         newcmd.Text = "" .. CMDsV[i].Value
  4970.         cmds.MAIN.CMDs.CanvasSize = UDim2.new(0,0,0, Position + 30)
  4971.         game.Players.LocalPlayer.PlayerGui.CMDs.MAIN.Exit.MouseButton1Click:Connect(function()
  4972.         wait()
  4973.         game.Players.LocalPlayer.PlayerGui.CMDs:Destroy()
  4974.         end)
  4975.     end
  4976. end
  4977.  
  4978. addcmd('cmds','prints cmds',{},
  4979. function(args, speaker)
  4980.     commands()
  4981. end)
  4982.  
  4983. -----------------
  4984. ---Command Bar---
  4985. -----------------
  4986.  
  4987. CMDbar.CMDbar.FocusLost:connect(function(enterpressed)
  4988.     if enterpressed and CMDbar.CMDbar.Text ~= "" then
  4989.         spawn(function ()
  4990.             execCmd(CMDbar.CMDbar.Text, Player)
  4991.         end)
  4992.     end
  4993.     CMDbar.CMDbar:TweenPosition(UDim2.new(0, -500, 0.4, 0), "InOut", "Quad", 0.5, true, nil)
  4994. end)
  4995.  
  4996. Mouse.KeyDown:connect(function(Key)
  4997.     if Key:byte() == 59 then
  4998.         CMDbar.CMDbar:TweenPosition(UDim2.new(0, 0, 0.4, 0), "InOut", "Quad", 0.5, true, nil)
  4999.         CMDbar.CMDbar:CaptureFocus()
  5000.     end
  5001. end)
  5002.  
  5003. ----------------
  5004. --ESP function--
  5005. ----------------
  5006.  
  5007. local ESP = false
  5008. local track = false
  5009.  
  5010. function Create(base, team)
  5011.     local MAIN = DATA.MAIN:Clone()
  5012.     local F = MAIN.DOT
  5013.     local ESP = MAIN.NAME
  5014.  
  5015.     MAIN.Parent = Player.PlayerGui
  5016.     MAIN.Adornee = base
  5017.    
  5018.     F.Visible = true
  5019.    
  5020.     ESP.Text = base.Parent.Name:upper()
  5021.     ESP.Visible = true
  5022. end
  5023.  
  5024. function Clear()
  5025.     for _,v in pairs(Player.PlayerGui:children()) do
  5026.         if v.Name == "MAIN" and v:IsA("BillboardGui") then
  5027.             v:Destroy()
  5028.         end
  5029.     end
  5030. end
  5031.  
  5032. function Find()
  5033.     Clear()
  5034.     track = true
  5035.     spawn(function()
  5036.         while wait() do
  5037.             if track then
  5038.                 Clear()
  5039.                 for i,v in pairs(game.Players:players()) do
  5040.                     if v.Character and v.Character.Head then
  5041.                         Create(v.Character.Head, true)
  5042.                     end
  5043.                 end
  5044.             end
  5045.             wait(1)
  5046.         end
  5047.     end)
  5048. end
  5049.  
  5050. -------
  5051. --ESP--
  5052. -------
  5053.  
  5054. Mouse.KeyDown:connect(function(Key)
  5055.     if Key:byte() == 30 then
  5056.         if ESP == false then
  5057.             Find()
  5058.             ESP = true
  5059.         elseif ESP == true then
  5060.             Clear()
  5061.             track = false
  5062.             ESP = false
  5063.         end
  5064.     end
  5065. end)
  5066.  
  5067. ---------------------------------
  5068. ----Notify animation/movement----
  5069. ---------------------------------
  5070.  
  5071. local NOTIFY = DATA.Notification
  5072. NOTIFY.Parent = game.CoreGui
  5073.  
  5074. local usingNOTE = false
  5075.  
  5076. function Notify(msg)
  5077.     if usingNOTE == false then
  5078.         if NOTIFY.NOTIFY and NOTIFY.NOTIFY.NOTE then
  5079.             spawn(function()
  5080.                 NOTIFY.NOTIFY:TweenPosition(UDim2.new(0, 0, 0, 0), "InOut", "Quad", 0.5, true, nil)
  5081.                 NOTIFY.NOTIFY.NOTE.Text = msg
  5082.                 usingNOTE = true
  5083.                 wait(2.5)
  5084.                 NOTIFY.NOTIFY:TweenPosition(UDim2.new(0,0,-0.2,0), "InOut", "Quad", 0.5, true, nil)
  5085.                 usingNOTE = false
  5086.             end)
  5087.         end
  5088.     end
  5089. end
  5090.  
  5091. -------------------------
  5092. --Startup notifications--
  5093. -------------------------
  5094.  
  5095. wait(1)
  5096.  
  5097. if game.Workspace.FilteringEnabled == true then
  5098.     NOTIFY.NOTIFY.BorderColor = BrickColor.new(255,0,0)
  5099.     Notify('Filtering Status: ENABLED!')
  5100. elseif game.Workspace.FilteringEnabled == false then
  5101.     NOTIFY.NOTIFY.BorderColor = BrickColor.new(0,255,0)
  5102.     Notify('Filtering Status: Disabled.')
  5103. end
  5104. wait(2.6)
  5105. NOTIFY.NOTIFY.BorderColor = BrickColor.new(0,0,0)
  5106.  
  5107. local IYM = Instance.new("Frame")
  5108. local TextLabel = Instance.new("TextLabel")
  5109.  
  5110. IYM.Name = "IYM"
  5111. IYM.Parent = game.Players.LocalPlayer.PlayerGui.Chat.Frame.ChatBarParentFrame.Frame.BoxFrame
  5112. IYM.BackgroundTransparency = 1
  5113. IYM.Position = UDim2.new(0, 0, 0, 50)
  5114. IYM.Size = UDim2.new(1, -10, 1, -10)
  5115.  
  5116. TextLabel.Parent = IYM
  5117. TextLabel.BackgroundTransparency = 1
  5118. TextLabel.Size = UDim2.new(1, -14, 1, 0)
  5119. TextLabel.Font = Enum.Font.SourceSansItalic
  5120. TextLabel.FontSize = Enum.FontSize.Size18
  5121. TextLabel.Text = "Thanks for using Infinite Yield v3.0. Say ;cmds for commands.\nSay ;loadm if you want to load global messaging."
  5122. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  5123. TextLabel.TextStrokeTransparency = 0.75
  5124. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  5125. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  5126.  
  5127. wait(2)
  5128.  
  5129. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  5130. wait(0.01)
  5131. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  5132. wait(0.01)
  5133. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  5134. wait(0.01)
  5135. IYM.TextLabel.TextStrokeColor3 = Color3.new(1,1,1)
  5136. wait(0.05)
  5137. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  5138. wait(0.01)
  5139. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  5140. wait(0.01)
  5141. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  5142. wait(0.01)
  5143. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.2,0.2,0.2)
  5144. wait(0.01)
  5145. IYM.TextLabel.TextStrokeColor3 = Color3.new(0,0,0)
  5146. wait(0.01)
  5147. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.2,0.2,0.2)
  5148. wait(0.01)
  5149. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  5150. wait(0.01)
  5151. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  5152. wait(0.01)
  5153. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  5154. wait(0.01)
  5155. IYM.TextLabel.TextStrokeColor3 = Color3.new(1,1,1)
  5156. wait(0.05)
  5157. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.8,0.8,0.8)
  5158. wait(0.01)
  5159. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.6,0.6,0.6)
  5160. wait(0.01)
  5161. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.4,0.4,0.4)
  5162. wait(0.01)
  5163. IYM.TextLabel.TextStrokeColor3 = Color3.new(0.2,0.2,0.2)
  5164. wait(0.01)
  5165. IYM.TextLabel.TextStrokeColor3 = Color3.new(0,0,0)
  5166.  
  5167. local Asset = game:GetService("MarketplaceService"):GetProductInfo(937297244)
  5168. if Asset.Name == "Infinite Yield 3.0" then
  5169. print('Infinite Yield is up to date! (Version ' .. Version .. ')')
  5170. UTD = true
  5171. else
  5172. UTD = false
  5173. -- Objects
  5174.  
  5175. local Update = Instance.new("ScreenGui")
  5176. local Notification = Instance.new("Frame")
  5177. local Help = Instance.new("Frame")
  5178. local helpframe = Instance.new("Frame")
  5179. local Help_2 = Instance.new("Frame")
  5180. local Notice = Instance.new("Frame")
  5181. local TextLabel = Instance.new("TextLabel")
  5182. local OKButton = Instance.new("TextButton")
  5183. local Notice_2 = Instance.new("Frame")
  5184. local TextLabel_2 = Instance.new("TextLabel")
  5185. local ButtonSeparator = Instance.new("Frame")
  5186. local HelpButton = Instance.new("TextButton")
  5187. local OKButton_2 = Instance.new("TextButton")
  5188. local Bar = Instance.new("Frame")
  5189.  
  5190. -- Properties
  5191.  
  5192. Update.Name = "Update"
  5193. Update.Parent = game.Players.LocalPlayer.PlayerGui
  5194.  
  5195. Notification.Name = "Notification"
  5196. Notification.Parent = Update
  5197. Notification.BackgroundColor3 = Color3.new(1, 1, 1)
  5198. Notification.BackgroundTransparency = 0.5
  5199. Notification.BorderSizePixel = 0
  5200. Notification.Size = UDim2.new(1, 0, 0, 65)
  5201.  
  5202. Help.Name = "Help"
  5203. Help.Parent = Notification
  5204. Help.BackgroundColor3 = Color3.new(1, 1, 1)
  5205. Help.BackgroundTransparency = 1
  5206. Help.BorderSizePixel = 0
  5207. Help.Position = UDim2.new(0, 0, 0, 65)
  5208. Help.Size = UDim2.new(1, 0, 1, -22)
  5209. Help.Visible = false
  5210.  
  5211. helpframe.Name = "helpframe"
  5212. helpframe.Parent = Help
  5213. helpframe.BackgroundColor3 = Color3.new(1, 1, 1)
  5214. helpframe.BackgroundTransparency = 0.5
  5215. helpframe.BorderSizePixel = 0
  5216. helpframe.Size = UDim2.new(1, 0, 0, 65)
  5217.  
  5218. Help_2.Name = "Help"
  5219. Help_2.Parent = helpframe
  5220. Help_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5221. Help_2.BackgroundTransparency = 1
  5222. Help_2.BorderSizePixel = 0
  5223. Help_2.Position = UDim2.new(0, 0, 0, 200)
  5224. Help_2.Size = UDim2.new(1, 0, 1, -22)
  5225.  
  5226. Notice.Name = "Notice"
  5227. Notice.Parent = helpframe
  5228. Notice.BackgroundColor3 = Color3.new(1, 1, 1)
  5229. Notice.BackgroundTransparency = 1
  5230. Notice.BorderSizePixel = 0
  5231. Notice.Position = UDim2.new(0, 0, 0, 2)
  5232. Notice.Size = UDim2.new(1, 0, 1, -22)
  5233.  
  5234. TextLabel.Parent = Notice
  5235. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  5236. TextLabel.BackgroundTransparency = 1
  5237. TextLabel.BorderColor3 = Color3.new(0, 0, 0)
  5238. TextLabel.BorderSizePixel = 0
  5239. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  5240. TextLabel.Font = Enum.Font.SourceSansBold
  5241. TextLabel.FontSize = Enum.FontSize.Size14
  5242. TextLabel.Text = "Join the official Discord! Here is the invite: \"https://discord.gg/V3bkAyA\" the latest version is in the Announcments channel. Otherwise you can go to our site at: infiniteyield.x10host.com"
  5243. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  5244. TextLabel.TextStrokeColor3 = Color3.new(1, 1, 1)
  5245. TextLabel.TextStrokeTransparency = 0.80000001192093
  5246. TextLabel.TextWrapped = true
  5247.  
  5248. Notice_2.Name = "Notice"
  5249. Notice_2.Parent = Notification
  5250. Notice_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5251. Notice_2.BackgroundTransparency = 1
  5252. Notice_2.BorderSizePixel = 0
  5253. Notice_2.Position = UDim2.new(0, 0, 0, 2)
  5254. Notice_2.Size = UDim2.new(1, 0, 1, -22)
  5255.  
  5256. TextLabel_2.Parent = Notice_2
  5257. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5258. TextLabel_2.BackgroundTransparency = 1
  5259. TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
  5260. TextLabel_2.BorderSizePixel = 0
  5261. TextLabel_2.Size = UDim2.new(1, 0, 1, 0)
  5262. TextLabel_2.Font = Enum.Font.SourceSansBold
  5263. TextLabel_2.FontSize = Enum.FontSize.Size14
  5264. TextLabel_2.Text = "The version of Infinite Yield you are using is outdated! (Using version " .. Version .. "  when " .. Asset.Name .. " is avalable)"
  5265. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  5266. TextLabel_2.TextStrokeColor3 = Color3.new(1, 1, 1)
  5267. TextLabel_2.TextStrokeTransparency = 0.80000001192093
  5268. TextLabel_2.TextWrapped = true
  5269.  
  5270. ButtonSeparator.Name = "ButtonSeparator"
  5271. ButtonSeparator.Parent = Notification
  5272. ButtonSeparator.BackgroundColor3 = Color3.new(1, 1, 1)
  5273. ButtonSeparator.BackgroundTransparency = 0.5
  5274. ButtonSeparator.BorderColor3 = Color3.new(1, 1, 1)
  5275. ButtonSeparator.BorderSizePixel = 0
  5276. ButtonSeparator.Position = UDim2.new(0.5, 0, 1, -22)
  5277. ButtonSeparator.Size = UDim2.new(0, 2, 0, 22)
  5278.  
  5279. HelpButton.Name = "HelpButton"
  5280. HelpButton.Parent = Notification
  5281. HelpButton.BackgroundColor3 = Color3.new(0, 0, 0)
  5282. HelpButton.BackgroundTransparency = 0.80000001192093
  5283. HelpButton.BorderColor3 = Color3.new(0, 0, 0)
  5284. HelpButton.BorderSizePixel = 0
  5285. HelpButton.Position = UDim2.new(0.5, 0, 1, -22)
  5286. HelpButton.Size = UDim2.new(0.5, 0, 0, 22)
  5287. HelpButton.Font = Enum.Font.Highway
  5288. HelpButton.FontSize = Enum.FontSize.Size18
  5289. HelpButton.Text = "What should I do?"
  5290. HelpButton.TextColor3 = Color3.new(1, 1, 1)
  5291.  
  5292. OKButton_2.Name = "OKButton"
  5293. OKButton_2.Parent = Notification
  5294. OKButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
  5295. OKButton_2.BackgroundTransparency = 0.80000001192093
  5296. OKButton_2.BorderColor3 = Color3.new(0, 0, 0)
  5297. OKButton_2.BorderSizePixel = 0
  5298. OKButton_2.Position = UDim2.new(0, 0, 1, -22)
  5299. OKButton_2.Size = UDim2.new(0.5, 0, 0, 22)
  5300. OKButton_2.Font = Enum.Font.Highway
  5301. OKButton_2.FontSize = Enum.FontSize.Size18
  5302. OKButton_2.Text = "Continue"
  5303. OKButton_2.TextColor3 = Color3.new(1, 1, 1)
  5304.  
  5305. Bar.Name = "Bar"
  5306. Bar.Parent = Notification
  5307. Bar.BackgroundColor3 = Color3.new(1, 0, 0)
  5308. Bar.BorderSizePixel = 0
  5309. Bar.Size = UDim2.new(1, 0, 0, 2)
  5310. end
  5311.  
  5312. if UTD == false then
  5313. game.Players.LocalPlayer.PlayerGui.Update.Notification.HelpButton.MouseButton1Click:Connect(function()
  5314. wait()
  5315.     game.Players.LocalPlayer.PlayerGui.Update.Notification.Help.Visible = true
  5316. end)
  5317. end
  5318.  
  5319. if UTD ==false then
  5320. game.Players.LocalPlayer.PlayerGui.Update.Notification.OKButton.MouseButton1Click:Connect(function()
  5321. wait()
  5322.     game.Players.LocalPlayer.PlayerGui.Update:Destroy()
  5323. end)
  5324. end
  5325.  
  5326. wait(8)
  5327. IYM.TextLabel.TextStrokeTransparency = 0.65
  5328. wait(0.05)
  5329. IYM.TextLabel.TextStrokeTransparency = 0.75
  5330. wait(0.05)
  5331. IYM.TextLabel.TextStrokeTransparency = 0.85
  5332. wait(0.05)
  5333. IYM.TextLabel.TextStrokeTransparency = 0.95
  5334. wait(0.05)
  5335. IYM.TextLabel.TextStrokeTransparency = 1
  5336. wait(0.05)
  5337. IYM.TextLabel.TextTransparency = 0.10
  5338. wait(0.05)
  5339. IYM.TextLabel.TextTransparency = 0.20
  5340. wait(0.05)
  5341. IYM.TextLabel.TextTransparency = 0.30
  5342. wait(0.05)
  5343. IYM.TextLabel.TextTransparency = 0.40
  5344. wait(0.05)
  5345. IYM.TextLabel.TextTransparency = 0.50
  5346. wait(0.05)
  5347. IYM.TextLabel.TextTransparency = 0.60
  5348. wait(0.05)
  5349. IYM.TextLabel.TextTransparency = 0.70
  5350. wait(0.05)
  5351. IYM.TextLabel.TextTransparency = 0.80
  5352. wait(0.05)
  5353. IYM.TextLabel.TextTransparency = 0.90
  5354. wait(0.05)
  5355. IYM.TextLabel.TextTransparency = 1
  5356. wait(0.05)
  5357. IYM:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement