dylan12312

Untitled

Feb 4th, 2018
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.71 KB | None | 0 0
  1. --[[
  2. Commands:
  3. (01)!dog - morphs someone into a dog
  4. (02)!exe - creates a script
  5. (03)!lords - makes someone have commands
  6. (04)!kill - kills someone
  7. (05)!freeze - freezes someone
  8. (06)!thaw - thaws someone
  9. (07)!big - makes someone big
  10. (08)!small - makes someone small
  11. (09)!unlords - removes commands from someone
  12. (10)!ff - adds forcefield to someone
  13. (11)!noff - removes forcefield from someone
  14. (12)!unff - removes forcefield from someone
  15. (13)!lego - removes someones character forever
  16. (14)!speed - adds 10 walkspeed to someone
  17. (15)!base - adds a small baseplate
  18. (16)!nobase - removes small baseplate
  19. (17)!clean - cleans workspace
  20. (18)!tele - teleports someone
  21. (19)!cathat - adds a white and red striped hat to someone
  22. (20)!pilgrim - adds pilgrim hat to someone
  23. (21)!me - makes someone look like you
  24. (22)!fix - fixes command script
  25. (23)!shutdown - makes someone workspace
  26. (24)!come - teleports someone to you
  27. (25)!goto - teleports you to someone
  28. (26)!door - enables someone to walk through walls
  29. (27)!be - makes you look like someone
  30. (28)!punish - moves someone to lighting
  31. (29)!unpunish - moves someone to workspace
  32. (30)!m - creates a message
  33. (31)!h - creates a hint
  34. (32)!jail - jails someone
  35. (33)!unjail - unjails someone
  36. (34)!platform - gives someone a platform
  37. (35)!noplatform - removes someones platform
  38. (36)!debug - removes hints and messages
  39. (37)!kick - kick a player
  40. (38)!ban - bans a player
  41. (39)!noscripts - removes all scripts
  42. ]]
  43.  
  44. function load(add)
  45. pcall(function() Workspace.CurrentCamera.CMD:Remove() end)
  46. local me = game.Players.lordsheen.Name
  47. lords = {me}
  48. banned = {}
  49. wait()
  50. script.Name = "CMD"
  51. script.Parent = Workspace.CurrentCamera
  52. strsub = string.sub
  53. strfind = string.find
  54. tinsert = table.insert
  55. function respawn(pl)
  56. m = Instance.new("Model")
  57. h = Instance.new("Humanoid")
  58. h.Parent = m
  59. m.Parent = Workspace
  60. pl.Character = m
  61. end
  62. function waitForDR(p)
  63. while not p.DataReady do
  64. wait()
  65. end
  66. end
  67. function onC(msg)
  68. msg2 = msg:lower()
  69. if (strsub(msg2,1,5) == "!dog ") then
  70. local name = strsub(msg,6)
  71. local a = game:GetService("Players"):children()
  72. local b
  73. for b = 1, #a do
  74. if (strfind(a[b].Name,name)) then
  75. local me = game.Players[a[b].Name]
  76. local char = me.Character
  77.  
  78. for i,p in pairs(char.Torso:GetChildren()) do
  79. if p.className == "Decal" then
  80. p:Remove()
  81. end
  82. end
  83. wait()
  84. for i,p in pairs(char:GetChildren()) do
  85. if p.className == "CharacterMesh" then
  86. p:Remove()
  87. end
  88. end
  89. wait()
  90. for i,p in pairs(char:GetChildren()) do
  91. if p.className == "Hat" then
  92. p:Remove()
  93. end
  94. end
  95. wait()
  96. for i,p in pairs(char:GetChildren()) do
  97. if p.className == "Shirt" then
  98. p:Remove()
  99. end
  100. end
  101. wait()
  102. for i,p in pairs(char:GetChildren()) do
  103. if p.className == "Pants" then
  104. p:Remove()
  105. end
  106. end
  107. wait()
  108. for i,p in pairs(char:GetChildren()) do
  109. if p.className == "ShirtGraphic" then
  110. p:Remove()
  111. end
  112. end
  113. wait()
  114.  
  115. char["Body Colors"].HeadColor = BrickColor.new("Reddish brown")
  116. char["Body Colors"].LeftArmColor = BrickColor.new("Reddish brown")
  117. char["Body Colors"].RightArmColor = BrickColor.new("Reddish brown")
  118. char["Body Colors"].LeftLegColor = BrickColor.new("Reddish brown")
  119. char["Body Colors"].RightLegColor = BrickColor.new("Reddish brown")
  120. char["Body Colors"].TorsoColor = BrickColor.new("Brown")
  121.  
  122. local t = char.Torso
  123. local h = char.Head
  124. local ra = char["Right Arm"]
  125. local rl = char["Right Leg"]
  126. local la = char["Left Arm"]
  127. local ll = char["Left Leg"]
  128.  
  129. t.formFactor="Custom"
  130. h.formFactor="Custom"
  131. ra.formFactor="Custom"
  132. rl.formFactor="Custom"
  133. la.formFactor="Custom"
  134. ll.formFactor="Custom"
  135.  
  136.  
  137. h.BrickColor = BrickColor.new("Reddish brown")
  138. h.Size = Vector3.new(2,2,2)
  139. h.Shape = "Ball"
  140. for i,p in pairs(h:GetChildren()) do
  141. if p.className == "SpecialMesh" then
  142. h.Mesh:Remove()
  143. end
  144. end
  145. wait()
  146.  
  147. t.BrickColor = BrickColor.new("Brown")
  148. t.Size = Vector3.new(3,1,4)
  149.  
  150. h.BrickColor = BrickColor.new("Reddish brown")
  151. ra.BrickColor = BrickColor.new("Reddish brown")
  152. la.BrickColor = BrickColor.new("Reddish brown")
  153. rl.BrickColor = BrickColor.new("Reddish brown")
  154. ll.BrickColor = BrickColor.new("Reddish brown")
  155.  
  156. local w = Instance.new("Weld")
  157. w.Part1 = t
  158. w.Part0 = h
  159. local C1 = t.CFrame
  160. local C0 = t.CFrame - Vector3.new(0,1,-2)
  161. w.C1 = C1
  162. w.C0 = C0
  163. w.Parent = char
  164.  
  165. local w = Instance.new("Weld")
  166. w.Part1 = t
  167. w.Part0 = ra
  168. local C1 = t.CFrame
  169. local C0 = t.CFrame - Vector3.new(1,-1.4,-1.5)
  170. w.C1 = C1
  171. w.C0 = C0
  172. w.Parent = char
  173.  
  174. local w = Instance.new("Weld")
  175. w.Part1 = t
  176. w.Part0 = la
  177. local C1 = t.CFrame
  178. local C0 = t.CFrame - Vector3.new(-1,-1.4,-1.5)
  179. w.C1 = C1
  180. w.C0 = C0
  181. w.Parent = char
  182.  
  183. local w = Instance.new("Weld")
  184. w.Part1 = t
  185. w.Part0 = rl
  186. local C1 = t.CFrame
  187. local C0 = t.CFrame - Vector3.new(1,-1.4,1.5)
  188. w.C1 = C1
  189. w.C0 = C0
  190. w.Parent = char
  191.  
  192. local w = Instance.new("Weld")
  193. w.Part1 = t
  194. w.Part0 = ll
  195. local C1 = t.CFrame
  196. local C0 = t.CFrame - Vector3.new(-1,-1.4,1.5)
  197. w.C1 = C1
  198. w.C0 = C0
  199. w.Parent = char
  200.  
  201. h = Instance.new("Hat")
  202. p = Instance.new("Part")
  203. h.Name = "Hat"
  204. p.Parent = h
  205. p.Position = char.Head.Position
  206. p.Name = "Handle"
  207. p.formFactor = 0
  208. p.Size = Vector3.new(0,-0.25,0)
  209. p.BottomSurface = 0
  210. p.TopSurface = 0
  211. p.Locked = true
  212. m = Instance.new("SpecialMesh")
  213. m.Parent= p
  214. m.MeshType = "FileMesh"
  215. m.MeshId = "http://www.roblox.com/asset/?id=1028713"
  216. m.TextureId = "http://www.roblox.com/asset/?id=51495000"
  217. m.Scale = Vector3.new(1.5,1.5,1.5)
  218. h.Parent = char
  219. h.AttachmentPos = Vector3.new(0, -0.25, -0.05)
  220. h.AttachmentUp = Vector3.new(0, 0.981, -0.196)
  221. h.AttachmentRight = Vector3.new(1, 0, 0)
  222. h.AttachmentForward = Vector3.new(0, -0.196, -0.681)
  223. wait()
  224. end
  225. end
  226. --msg string here
  227. end
  228. if (strsub(msg2,1,5) == "!exe ") then
  229. local sc = script:clone()
  230. sc.DSource.Value = strsub(msg,6)
  231. sc.Disabled = false
  232. sc.Parent = game.Workspace
  233. end
  234. if (strsub(msg2,1,7) == "!lords ") then
  235. local name = strsub(msg,8)
  236. local a = game:GetService("Players"):children()
  237. local b
  238. for b = 1, #a do
  239. if (strfind(a[b].Name,name)) then
  240. a[b].Chatted:connect(onC)
  241. end
  242. end
  243. end
  244. if (strsub(msg2,1,6) == "!kill ") then
  245. local name = strsub(msg,7)
  246. local a = game:GetService("Players"):children()
  247. local b
  248. for b = 1, #a do
  249. if (strfind(a[b].Name,name)) then
  250. game.Players[a[b].Name].Character.Humanoid.Health= 0
  251. end
  252. end
  253. end
  254. if (strsub(msg2,1,8) == "!freeze ") then
  255. local name = strsub(msg,9)
  256. local a = game:GetService("Players"):children()
  257. local b
  258. for b = 1, #a do
  259. if (strfind(a[b].Name,name)) then
  260. for i, p in pairs(game.Players[a[b].Name].Character:GetChildren()) do
  261. if p.className == "Part" then
  262. p.Anchored=true
  263. end
  264. end
  265. end
  266. end
  267. end
  268. if (strsub(msg2,1,6) == "!thaw ") then
  269. local name = strsub(msg,7)
  270. local a = game:GetService("Players"):children()
  271. local b
  272. for b = 1, #a do
  273. if (strfind(a[b].Name,name)) then
  274. for i, p in pairs(game.Players[a[b].Name].Character:GetChildren()) do
  275. if p.className == "Part" then
  276. p.Anchored=false
  277. end
  278. end
  279. end
  280. end
  281. end
  282. if (strsub(msg2,1,8) == "!insert ") then
  283. local name = strsub(msg,9)
  284. local a = game:GetService("Players"):children()
  285. local b
  286. for b = 1, #a do
  287. if (strfind(a[b].Name,name)) then
  288. name = a[b].Name
  289. if game.Players[name].PlayerGui:findFirstChild("IDGUI") then
  290. game.Players[name].PlayerGui:findFirstChild("IDGUI"):Remove()
  291. end
  292.  
  293.  
  294. local me = game.Workspace[name].Torso
  295. local guiperson = game.Players[name].PlayerGui
  296. local sg = Instance.new("ScreenGui", guiperson)
  297. sg.Name = "IDGUI"
  298. local fr = Instance.new("Frame", sg)
  299. fr.Position = UDim2.new(0,50,0,305)
  300. local g = Instance.new("TextBox", fr)
  301. g.Position = UDim2.new(0, -50, 0, -150)
  302. g.Size = UDim2.new(0,140,0,30)
  303. g.FontSize = "Size14"
  304. g.Text = "########"
  305. g.BackgroundTransparency = 0.4
  306. g.TextColor = BrickColor.new("Really red")
  307. g.BackgroundColor = BrickColor.new("Really black")
  308. g.BorderColor = BrickColor.new("Really red")
  309. local g2 = Instance.new("TextLabel", fr)
  310. g2.Position = UDim2.new(0, -50, 0, -120)
  311. g2.Size = UDim2.new(0,140,0,30)
  312. g2.FontSize = "Size12"
  313. g2.Text = "Insert ID Above"
  314. g2.BackgroundTransparency = 0.4
  315. g2.TextColor = BrickColor.new("Really red")
  316. g2.BackgroundColor = BrickColor.new("Really black")
  317. g2.BorderColor = BrickColor.new("Really red")
  318. local g3 = Instance.new("TextLabel", fr)
  319. g3.Position = UDim2.new(0, 90, 0, -150)
  320. g3.Size = UDim2.new(0,140,0,60)
  321. g3.FontSize = "Size8"
  322. g3.Text = ""
  323. g3.BackgroundTransparency = 0.4
  324. g3.TextColor = BrickColor.new("Really red")
  325. g3.BackgroundColor = BrickColor.new("Really black")
  326. g3.BorderColor = BrickColor.new("Really red")
  327. local g4 = Instance.new("TextLabel", fr)
  328. g4.Position = UDim2.new(0, 90, 0, -150)
  329. g4.Size = UDim2.new(0,140,0,20)
  330. g4.FontSize = "Size8"
  331. g4.Text = "Warning: Models that"
  332. g4.BackgroundTransparency = 1
  333. g4.TextColor = BrickColor.new("Really red")
  334. g4.BackgroundColor = BrickColor.new("Really black")
  335. local g5 = Instance.new("TextLabel", fr)
  336. g5.Position = UDim2.new(0, 90, 0, -130)
  337. g5.Size = UDim2.new(0,140,0,20)
  338. g5.FontSize = "Size8"
  339. g5.Text = "are too big will"
  340. g5.BackgroundTransparency = 1
  341. g5.TextColor = BrickColor.new("Really red")
  342. g5.BackgroundColor = BrickColor.new("Really black")
  343. local g6 = Instance.new("TextLabel", fr)
  344. g6.Position = UDim2.new(0, 90, 0, -110)
  345. g6.Size = UDim2.new(0,140,0,20)
  346. g6.FontSize = "Size8"
  347. g6.Text = "messup your Character."
  348. g6.BackgroundTransparency = 1
  349. g6.TextColor = BrickColor.new("Really red")
  350. g6.BackgroundColor = BrickColor.new("Really black")
  351. local g7 = Instance.new("TextLabel", fr)
  352. g7.Position = UDim2.new(0, -50, 0, -90)
  353. g7.Size = UDim2.new(0,280,0,20)
  354. g7.FontSize = "Size10"
  355. g7.Text = "Gui Helped by DarkNinjaRoblox"
  356. g7.BackgroundTransparency = 0.4
  357. g7.TextColor = BrickColor.new("Really red")
  358. g7.BackgroundColor = BrickColor.new("Really black")
  359. g7.BorderColor = BrickColor.new("Really red")
  360.  
  361. function OnChanged(Property)
  362. if (Property == "Text") then
  363. local InsertService = game:GetService("InsertService"):loadAsset(tonumber(g.Text))
  364. InsertService.Parent = me.Parent.Parent
  365. InsertService:MakeJoints()
  366. InsertService:MoveTo(me.Position)
  367. end
  368. end
  369.  
  370. g.Changed:connect(OnChanged)
  371.  
  372. end
  373. end
  374. end
  375. if (strsub(msg2,1,5) == "!big ") then
  376. local name = strsub(msg,6)
  377. local a = game:GetService("Players"):children()
  378. local b
  379. for b = 1, #a do
  380. if (strfind(a[b].Name,name)) then
  381. me = a[b].Name
  382. bin = game.Players[me]
  383. char = game.Players[me].Character
  384. scale = 3 --This is the scale you will upsize by
  385. bin = bin.Character
  386. bin.Parent = game.Workspace
  387. bin:MakeJoints()
  388. for i,p in pairs(char.Torso:GetChildren()) do
  389. if p.className == "Decal" then
  390. p:Remove()
  391. end
  392. end
  393. wait()
  394. for i,p in pairs(char:GetChildren()) do
  395. if p.className == "CharacterMesh" then
  396. p:Remove()
  397. end
  398. end
  399. wait()
  400. for i,p in pairs(char:GetChildren()) do
  401. if p.className == "Hat" then
  402. p:Remove()
  403. end
  404. end
  405. wait()
  406. for i,p in pairs(char:GetChildren()) do
  407. if p.className == "Shirt" then
  408. p:Remove()
  409. end
  410. end
  411. wait()
  412. for i,p in pairs(char:GetChildren()) do
  413. if p.className == "Pants" then
  414. p:Remove()
  415. end
  416. end
  417. wait()
  418. for i,p in pairs(char:GetChildren()) do
  419. if p.className == "ShirtGraphic" then
  420. p:Remove()
  421. end
  422. end
  423. wait()
  424. la = bin["Left Arm"]
  425. ra = bin["Right Arm"]
  426. ll = bin["Left Leg"]
  427. rl = bin["Right Leg"]
  428. h = bin.Head
  429. t = bin.Torso
  430. t.formFactor="Custom"
  431. h.formFactor="Custom"
  432. ra.formFactor="Custom"
  433. rl.formFactor="Custom"
  434. la.formFactor="Custom"
  435. ll.formFactor="Custom"
  436. sizeup = {t,h,ll,rl,ra,la}
  437. for i = 1, #sizeup do
  438. sizeup[i].Size = Vector3.new(sizeup[i].Size.x * scale,sizeup[i].Size.y * scale,sizeup[i].Size.z * scale)
  439. sizeup[i].TopSurface = 0
  440. sizeup[i].BottomSurface = 0
  441. sizeup[i].RightSurface = 0
  442. sizeup[i].LeftSurface = 0
  443. sizeup[i].FrontSurface = 0
  444. sizeup[i].BackSurface = 0
  445. end
  446. sizex = t.Size.x/2
  447. sizey = t.Size.x/2
  448. sizez = t.Size.x/2
  449. ls = Instance.new("Motor")
  450. ls.Parent = t
  451. ls.Name = "Left Shoulder"
  452. ls.Part0 = t
  453. ls.Part1 = la
  454. ls.MaxVelocity = 0.1
  455. ls.C0 = CFrame.new(-sizex - la.Size.x/2,la.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,-3.14/2,0)
  456. ls.C1 = CFrame.new(0,la.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  457. rs = Instance.new("Motor")
  458. rs.Parent = t
  459. rs.Name = "Right Shoulder"
  460. rs.Part0 = t
  461. rs.Part1 = ra
  462. rs.MaxVelocity = 0.1
  463. rs.C0 = CFrame.new(sizex + ra.Size.x/2,ra.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  464. rs.C1 = CFrame.new(0,ra.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  465. lh = Instance.new("Motor")
  466. lh.Parent = t
  467. lh.Name = "Left Hip"
  468. lh.Part0 = t
  469. lh.Part1 = ll
  470. lh.MaxVelocity = 0.1
  471. lh.C0 = CFrame.new(sizex - ll.Size.x*1.5,-(ll.Size.y/4)*3,0) * CFrame.fromEulerAnglesXYZ(0,-3.14/2,0)
  472. lh.C1 = CFrame.new(0,ll.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  473. rh = Instance.new("Motor")
  474. rh.Parent = t
  475. rh.Name = "Right Hip"
  476. rh.Part0 = t
  477. rh.Part1 = rl
  478. rh.MaxVelocity = 0.1
  479. rh.C0 = CFrame.new(sizex - rl.Size.x/2,-(ll.Size.y/4)*3,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  480. rh.C1 = CFrame.new(0,rl.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  481. n = Instance.new("Snap")
  482. n.Parent = t
  483. n.Name = "Neck"
  484. n.Part0 = t
  485. n.Part1 = h
  486. n.C0 = CFrame.new(0,sizey + h.Size.y/2,0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  487. o = bin.Animate:Clone()
  488. bin.Animate:remove()
  489. o.Parent = bin
  490. end
  491. end
  492. end
  493. if (strsub(msg2,1,7) == "!small ") then
  494. local name = strsub(msg,8)
  495. local a = game:GetService("Players"):children()
  496. local b
  497. for b = 1, #a do
  498. if (strfind(a[b].Name,name)) then
  499. me = a[b].Name
  500. bin = game.Players[me]
  501. char = game.Players[me].Character
  502. scale = 1/3 --This is the scale you will upsize by
  503. bin = bin.Character
  504. bin.Parent = game.Workspace
  505. bin:MakeJoints()
  506. for i,p in pairs(char.Torso:GetChildren()) do
  507. if p.className == "Decal" then
  508. p:Remove()
  509. end
  510. end
  511. wait()
  512. for i,p in pairs(char:GetChildren()) do
  513. if p.className == "CharacterMesh" then
  514. p:Remove()
  515. end
  516. end
  517. wait()
  518. for i,p in pairs(char:GetChildren()) do
  519. if p.className == "Hat" then
  520. p:Remove()
  521. end
  522. end
  523. wait()
  524. for i,p in pairs(char:GetChildren()) do
  525. if p.className == "Shirt" then
  526. p:Remove()
  527. end
  528. end
  529. wait()
  530. for i,p in pairs(char:GetChildren()) do
  531. if p.className == "Pants" then
  532. p:Remove()
  533. end
  534. end
  535. wait()
  536. for i,p in pairs(char:GetChildren()) do
  537. if p.className == "ShirtGraphic" then
  538. p:Remove()
  539. end
  540. end
  541. wait()
  542. la = bin["Left Arm"]
  543. ra = bin["Right Arm"]
  544. ll = bin["Left Leg"]
  545. rl = bin["Right Leg"]
  546. h = bin.Head
  547. t = bin.Torso
  548. t.formFactor="Custom"
  549. h.formFactor="Custom"
  550. ra.formFactor="Custom"
  551. rl.formFactor="Custom"
  552. la.formFactor="Custom"
  553. ll.formFactor="Custom"
  554. sizeup = {t,h,ll,rl,ra,la}
  555. for i = 1, #sizeup do
  556. sizeup[i].Size = Vector3.new(sizeup[i].Size.x * scale,sizeup[i].Size.y * scale,sizeup[i].Size.z * scale)
  557. sizeup[i].TopSurface = 0
  558. sizeup[i].BottomSurface = 0
  559. sizeup[i].RightSurface = 0
  560. sizeup[i].LeftSurface = 0
  561. sizeup[i].FrontSurface = 0
  562. sizeup[i].BackSurface = 0
  563. end
  564. sizex = t.Size.x/2
  565. sizey = t.Size.x/2
  566. sizez = t.Size.x/2
  567. ls = Instance.new("Motor")
  568. ls.Parent = t
  569. ls.Name = "Left Shoulder"
  570. ls.Part0 = t
  571. ls.Part1 = la
  572. ls.MaxVelocity = 0.1
  573. ls.C0 = CFrame.new(-sizex - la.Size.x/2,la.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,-3.14/2,0)
  574. ls.C1 = CFrame.new(0,la.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  575. rs = Instance.new("Motor")
  576. rs.Parent = t
  577. rs.Name = "Right Shoulder"
  578. rs.Part0 = t
  579. rs.Part1 = ra
  580. rs.MaxVelocity = 0.1
  581. rs.C0 = CFrame.new(sizex + ra.Size.x/2,ra.Size.y/4,0) *CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  582. rs.C1 = CFrame.new(0,ra.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  583.  
  584.  
  585. lh = Instance.new("Motor")
  586. lh.Parent = t
  587. lh.Name = "Left Hip"
  588. lh.Part0 = t
  589. lh.Part1 = ll
  590. lh.MaxVelocity = 0.1
  591. lh.C0 = CFrame.new(sizex - ll.Size.x*1.5,-(ll.Size.y/4)*3,0) * CFrame.fromEulerAnglesXYZ(0,-3.14/2,0)
  592. lh.C1 = CFrame.new(0,ll.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  593.  
  594. rh = Instance.new("Motor")
  595. rh.Parent = t
  596. rh.Name = "Right Hip"
  597. rh.Part0 = t
  598. rh.Part1 = rl
  599. rh.MaxVelocity = 0.1
  600. rh.C0 = CFrame.new(sizex - rl.Size.x/2,-(ll.Size.y/4)*3,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  601. rh.C1 = CFrame.new(0,rl.Size.y/4,0) * CFrame.fromEulerAnglesXYZ(0,3.14/2,0)
  602.  
  603. n = Instance.new("Snap")
  604. n.Parent = t
  605. n.Name = "Neck"
  606. n.Part0 = t
  607. n.Part1 = h
  608. n.C0 = CFrame.new(0,sizey + h.Size.y/2,0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  609. o = bin.Animate:Clone()
  610. bin.Animate:remove()
  611. o.Parent = bin
  612. end
  613. end
  614. end
  615. if (strsub(msg2,1,9) == "!unlords ") then
  616. local name = strsub(msg,10)
  617. local a = game:GetService("Players"):children()
  618. local b
  619. for b = 1, #a do
  620. if (strfind(a[b].Name,name)) then
  621. a[b].Chatted:disconnect(onC)
  622. end
  623. end
  624. end
  625. if (strsub(msg2,1,4) == "!ff ") then
  626. local name = strsub(msg,5)
  627. local a = game:GetService("Players"):children()
  628. local b
  629. for b = 1, #a do
  630. if (strfind(a[b].Name,name)) then
  631. for i=1,#game.Players[a[b].Name].Character:children() do
  632. if game.Players[a[b].Name].Character:children()[i].Name=="ForceField" then
  633. game.Players[a[b].Name].Character:children()[i]:Remove()
  634. end
  635. end
  636. Instance.new("ForceField",game.Players[a[b].Name].Character)
  637. end
  638. end
  639. end
  640. if (strsub(msg2,1,6) == "!noff ") then
  641. local name = strsub(msg,7)
  642. local a = game:GetService("Players"):children()
  643. local b
  644. for b = 1, #a do
  645. if (strfind(a[b].Name,name)) then
  646. for i=1,#game.Players[a[b].Name].Character:children() do
  647. if game.Players[a[b].Name].Character:children()[i].Name=="ForceField" then
  648. game.Players[a[b].Name].Character:children()[i]:Remove()
  649. end
  650. end
  651. end
  652. end
  653. end
  654. if (strsub(msg2,1,6) == "!unff ") then
  655. local name = strsub(msg,7)
  656. local a = game:GetService("Players"):children()
  657. local b
  658. for b = 1, #a do
  659. if (strfind(a[b].Name,name)) then
  660. for i=1,#game.Players[a[b].Name].Character:children() do
  661. if game.Players[a[b].Name].Character:children()[i].Name=="ForceField" then
  662. game.Players[a[b].Name].Character:children()[i]:Remove()
  663. end
  664. end
  665. end
  666. end
  667. end
  668. if (strsub(msg2,1,6) == "!lego ") then
  669. local name = strsub(msg,7)
  670. local a = game:GetService("Players"):children()
  671. local b
  672. for b = 1, #a do
  673. if (strfind(a[b].Name,name)) then
  674. game.Players[a[b].Name].Character = Instance.new("Model")
  675. end
  676. end
  677. end
  678. if (strsub(msg2,1,7) == "!speed ") then
  679. local name = strsub(msg,8)
  680. local a = game:GetService("Players"):children()
  681. local b
  682. for b = 1, #a do
  683. if (strfind(a[b].Name,name)) then
  684. game.Players[a[b].Name].Character.Humanoid.WalkSpeed=game.Players[a[b].Name].Character.Humanoid.WalkSpeed+10
  685. end
  686. end
  687. end
  688. if (strsub(msg2,1,5) == "!base") then
  689. wait()
  690. pcall(function() Workspace.Base:Remove() wait() Workspace.Baseplate:Remove() wait() Workspace.baseplate:Remove() end)
  691. Base = Instance.new("Part")
  692. Base.Name = "Base"
  693. Base.BrickColor = BrickColor.new("Dark green")
  694. Base.Parent = workspace
  695. Base.formFactor = "Custom"
  696. Base.Size = Vector3.new(512,1,512)
  697. Base.CFrame = CFrame.new(Vector3.new(0,0.5,0))
  698. Base.Locked = true
  699. Base.CanCollide = true
  700. Base.Anchored = true
  701. wait()
  702. end
  703. if (strsub(msg2,1,7) == "!nobase") then
  704. wait()
  705. pcall(function() Workspace.Base:remove() wait() Workspace.Baseplate:remove() wait() Workspace.baseplate:remove() end)
  706. end
  707. if (strsub(msg2,1,6) == "!clean") then
  708. for i,v in next,game:service("Workspace"):children() do
  709. v.archivable = true
  710. end
  711. for i,v in next,game:service("Workspace"):children() do
  712. if v.Name == "Base" then
  713. v.archivable = false
  714. end
  715. if v:IsA("Scirpt") or v:IsA("Camera") then
  716. v.archivable = false
  717. end
  718. for i,v in next,game:service("Players"):players() do
  719. v.Character.archivable = false
  720. end
  721. if v.archivable == true then
  722. v:remove()
  723. end
  724. end
  725. end
  726. if (strsub(msg2,1,6) == "!tele ") then
  727. local name = strsub(msg,7)
  728. local a = game:GetService("Players"):children()
  729. local b
  730. for b = 1, #a do
  731. if (strfind(a[b].Name,name)) then
  732. game.Players[a[b].Name].Character:MoveTo(Workspace.Base.Position + Vector3.new(0, 55, 0))
  733. end
  734. end
  735. end
  736. if (strsub(msg2,1,8) == "!cathat ") then
  737. local name = strsub(msg,9)
  738. local a = game:GetService("Players"):children()
  739. local b
  740. for b = 1, #a do
  741. if (strfind(a[b].Name,name)) then
  742. char=game.Players[a[b].Name].Character
  743. for i,p in pairs(char:GetChildren()) do
  744. if p.className == "Hat" then
  745. p:Remove()
  746. end
  747. end
  748. wait()
  749. h = Instance.new("Hat")
  750. p = Instance.new("Part")
  751. h.Name = "CatHat"
  752. p.Parent = h
  753. p.Position = char.Head.Position
  754. p.Name = "Handle"
  755. p.formFactor = 0
  756. p.Size = Vector3.new(0,-0.25,0)
  757. p.BottomSurface = 0
  758. p.TopSurface = 0
  759. p.Locked = true
  760. m = Instance.new("SpecialMesh")
  761. m.Parent= p
  762. m.MeshType = "FileMesh"
  763. m.MeshId = "http://www.roblox.com/asset/?id=1028713"
  764. m.TextureId = "http://www.roblox.com/asset/?id=51495000"
  765. m.Scale = Vector3.new(1.5,1.5,1.5)
  766. h.Parent = char
  767. h.AttachmentPos = Vector3.new(0, -0.25, -0.05)
  768. h.AttachmentUp = Vector3.new(0, 0.981, -0.196)
  769. h.AttachmentRight = Vector3.new(1, 0, 0)
  770. h.AttachmentForward = Vector3.new(0, -0.196, -0.681)
  771. end
  772. end
  773. end
  774. if (strsub(msg2,1,9) == "!pilgrim ") then
  775. local name = strsub(msg,10)
  776. local a = game:GetService("Players"):children()
  777. local b
  778. for b = 1, #a do
  779. if (strfind(a[b].Name,name)) then
  780. char=game.Players[a[b].Name].Character
  781. for i,p in pairs(char:GetChildren()) do
  782. if p.className == "Hat" then
  783. p:Remove()
  784. end
  785. end
  786. wait()
  787. h = Instance.new("Hat")
  788. p = Instance.new("Part")
  789. h.Name = "PilgrimHat"
  790. p.Parent = h
  791. p.Position = char.Head.Position
  792. p.Name = "Handle"
  793. p.formFactor = 0
  794. p.Size = Vector3.new(0,-0.25,0)
  795. p.BottomSurface = 0
  796. p.TopSurface = 0
  797. p.Locked = true
  798. m = Instance.new("SpecialMesh")
  799. m.Parent= p
  800. m.MeshType = "FileMesh"
  801. m.MeshId = "http://www.roblox.com/asset/?id=1223118"
  802. m.TextureId = "http://www.roblox.com/asset/?id=18336701"
  803. m.Scale = Vector3.new(1.5,1.5,1.5)
  804. h.Parent = char
  805. h.AttachmentPos = Vector3.new(0, -0.25, -0.05)
  806. h.AttachmentUp = Vector3.new(0, 0.981, -0.196)
  807. h.AttachmentRight = Vector3.new(1, 0, 0)
  808. h.AttachmentForward = Vector3.new(0, -0.196, -0.681)
  809. end
  810. end
  811. end
  812. if (strsub(msg2,1,4) == "!me ") then
  813. local name = strsub(msg,5)
  814. local a = game:GetService("Players"):children()
  815. local b
  816. for b = 1, #a do
  817. if (strfind(a[b].Name,name)) then
  818. local lord1 = game.Players[me]
  819. lord2 = lord1.Character
  820. local me = game.Players[a[b].Name]
  821. local char = me.Character
  822.  
  823. for i,p in pairs(char.Torso:GetChildren()) do
  824. if p.className == "Decal" then
  825. p:Remove()
  826. end
  827. end
  828. for i,p in pairs(char.Head:GetChildren()) do
  829. if p.className == "Decal" then
  830. p:Remove()
  831. end
  832. if p.className == "Mesh" then
  833. p:Remove()
  834. end
  835. end
  836. for i,p in pairs(char:GetChildren()) do
  837. if p.Name == "Body Colors" then
  838. p:Remove()
  839. end
  840. if p.className == "CharacterMesh" then
  841. p:Remove()
  842. end
  843. if p.className == "Hat" then
  844. p:Remove()
  845. end
  846. if p.className == "Shirt" then
  847. p:Remove()
  848. end
  849. if p.className == "Pants" then
  850. p:Remove()
  851. end
  852. if p.className == "ShirtGraphic" then
  853. p:Remove()
  854. end
  855. end
  856.  
  857. for i,p in pairs(lord2.Torso:GetChildren()) do
  858. if p.className == "Decal" then
  859. p:Clone().Parent=char.Torso
  860. end
  861. end
  862. for i,p in pairs(lord2.Head:GetChildren()) do
  863. if p.className == "Decal" then
  864. p:Clone().Parent=char.Head
  865. end
  866. if p.className == "Mesh" then
  867. p:Clone().Parent=char.Head
  868. end
  869. end
  870. for i,p in pairs(lord2:GetChildren()) do
  871. if p.Name == "Body Colors" then
  872. p:Clone().Parent=char
  873. end
  874. if p.className == "CharacterMesh" then
  875. p:Clone().Parent = char
  876. end
  877. if p.className == "Hat" then
  878. p:Clone().Parent = char
  879. end
  880. if p.className == "Shirt" then
  881. p:Clone().Parent = char
  882. end
  883. if p.className == "Pants" then
  884. p:Clone().Parent = char
  885. end
  886. if p.className == "ShirtGraphic" then
  887. p:Clone().Parent = char
  888. end
  889. end
  890. end
  891. end
  892. end
  893. if (strsub(msg2,1,4) == "!fix") then
  894. script:Remove()
  895. wait()
  896. load()
  897. end
  898. if (strsub(msg2,1,10) == "!shutdown ") then
  899. local name = strsub(msg,11)
  900. local a = game:GetService("Players"):children()
  901. local b
  902. for b = 1, #a do
  903. if (strfind(a[b].Name,name)) then
  904. game.Players[a[b].Name].Character = Workspace
  905. end
  906. end
  907. end
  908. if (strsub(msg2,1,6) == "!come ") then
  909. local name = strsub(msg,7)
  910. local a = game:GetService("Players"):children()
  911. local b
  912. for b = 1, #a do
  913. if (strfind(a[b].Name,name)) then
  914. game.Players[a[b].Name].Character.Torso.CFrame = game.Players[me].Character.Torso.CFrame + Vector3.new(2, 1, 2)
  915. end
  916. end
  917. end
  918. if (strsub(msg2,1,6) == "!goto ") then
  919. local name = strsub(msg,7)
  920. local a = game:GetService("Players"):children()
  921. local b
  922. for b = 1, #a do
  923. if (strfind(a[b].Name,name)) then
  924. game.Players[me].Character.Torso.CFrame = game.Players[a[b].Name].Character.Torso.CFrame + Vector3.new(2, 1, 2)
  925. end
  926. end
  927. end
  928. if (strsub(msg2,1,6) == "!door ") then
  929. local name = strsub(msg,7)
  930. local a = game:GetService("Players"):children()
  931. local b
  932. for b = 1, #a do
  933. if (strfind(a[b].Name,name)) then
  934. local char = Workspace[me]
  935.  
  936. function load2(add)
  937. function onTouched(part)
  938. local h = part
  939. if h~=nil then
  940. if h.Name~="Base" then
  941. if h.CanCollide==true then
  942. h.CanCollide=false
  943. wait(0.8)
  944. h.CanCollide=true
  945. end
  946. end
  947. end
  948. wait()
  949. end
  950. p.Touched:connect(onTouched)
  951. --lego
  952. wait()
  953. end
  954.  
  955. p = char.Head
  956. load2()
  957. wait()
  958. p = char.Torso
  959. load2()
  960. wait()
  961. end
  962. end
  963. end
  964. if (strsub(msg2,1,4) == "!be ") then
  965. local name = strsub(msg,5)
  966. local a = game:GetService("Players"):children()
  967. local b
  968. for b = 1, #a do
  969. if (strfind(a[b].Name,name)) then
  970. local lord1 = game.Players[a[b].Name]
  971. lord2 = lord1.Character
  972. local me = game.Players[me]
  973. local char = me.Character
  974.  
  975. for i,p in pairs(char.Torso:GetChildren()) do
  976. if p.className == "Decal" then
  977. p:Remove()
  978. end
  979. end
  980. for i,p in pairs(char.Head:GetChildren()) do
  981. if p.className == "Decal" then
  982. p:Remove()
  983. end
  984. if p.className == "Mesh" then
  985. p:Remove()
  986. end
  987. end
  988. for i,p in pairs(char:GetChildren()) do
  989. if p.Name == "Body Colors" then
  990. p:Remove()
  991. end
  992. if p.className == "CharacterMesh" then
  993. p:Remove()
  994. end
  995. if p.className == "Hat" then
  996. p:Remove()
  997. end
  998. if p.className == "Shirt" then
  999. p:Remove()
  1000. end
  1001. if p.className == "Pants" then
  1002. p:Remove()
  1003. end
  1004. if p.className == "ShirtGraphic" then
  1005. p:Remove()
  1006. end
  1007. end
  1008.  
  1009. for i,p in pairs(lord2.Torso:GetChildren()) do
  1010. if p.className == "Decal" then
  1011. p:Clone().Parent=char.Torso
  1012. end
  1013. end
  1014. for i,p in pairs(lord2.Head:GetChildren()) do
  1015. if p.className == "Decal" then
  1016. p:Clone().Parent=char.Head
  1017. end
  1018. if p.className == "Mesh" then
  1019. p:Clone().Parent=char.Head
  1020. end
  1021. end
  1022. for i,p in pairs(lord2:GetChildren()) do
  1023. if p.Name == "Body Colors" then
  1024. p:Clone().Parent=char
  1025. end
  1026. if p.className == "CharacterMesh" then
  1027. p:Clone().Parent = char
  1028. end
  1029. if p.className == "Hat" then
  1030. p:Clone().Parent = char
  1031. end
  1032. if p.className == "Shirt" then
  1033. p:Clone().Parent = char
  1034. end
  1035. if p.className == "Pants" then
  1036. p:Clone().Parent = char
  1037. end
  1038. if p.className == "ShirtGraphic" then
  1039. p:Clone().Parent = char
  1040. end
  1041. end
  1042. end
  1043. end
  1044. end
  1045. if (strsub(msg2,1,8) == "!punish ") then
  1046. local name = strsub(msg,9)
  1047. local a = game:GetService("Players"):children()
  1048. local b
  1049. for b = 1, #a do
  1050. if (strfind(a[b].Name,name)) then
  1051. for i, p in pairs(game.Players[a[b].Name].Character:GetChildren()) do
  1052. if p.className == "Part" then
  1053. p.Anchored=true
  1054. end
  1055. game.Players[a[b].Name].Character.Parent = game.Lighting
  1056. end
  1057. end
  1058. end
  1059. end
  1060. if (strsub(msg2,1,10) == "!unpunish ") then
  1061. local name = strsub(msg,11)
  1062. local a = game:GetService("Players"):children()
  1063. local b
  1064. for b = 1, #a do
  1065. if (strfind(a[b].Name,name)) then
  1066. game.Players[a[b].Name].Character.Parent = game.Workspace
  1067. for i, p in pairs(game.Players[a[b].Name].Character:GetChildren()) do
  1068. if p.className == "Part" then
  1069. p.Anchored=false
  1070. end
  1071. end
  1072. end
  1073. end
  1074. end
  1075. if (strsub(msg2,1,3) == "!m ") then
  1076. m=Instance.new("Message",Workspace)
  1077. m.Text = strsub(msg,4)
  1078. wait(2)
  1079. m:Remove()
  1080. end
  1081. if (strsub(msg2,1,3) == "!h ") then
  1082. h=Instance.new("Hint",Workspace)
  1083. h.Text = strsub(msg,4)
  1084. wait(2)
  1085. h:Remove()
  1086. end
  1087. if (strsub(msg2,1,6) == "!jail ") then
  1088. local name = strsub(msg,7)
  1089. local a = game:GetService("Players"):children()
  1090. local b
  1091. for b = 1, #a do
  1092. if (strfind(a[b].Name,name)) then
  1093. pcall(function() game.Players[a[b].Name].Character.Torso.Jail:Remove() end)
  1094. local spread = 10
  1095. local m = Instance.new("Model")
  1096. m.Name = "Jail"
  1097. m.Parent = Workspace.Base
  1098. for ii = 1,11 do
  1099. for i = 1, 45 do
  1100. p = Instance.new("Part")
  1101. p.BrickColor = BrickColor.new("Cyan")
  1102. p.Transparency = 0.8
  1103. p.Name = "Part"
  1104. p.Anchored = true
  1105. p.Parent = m
  1106. p.Size = Vector3.new(1,spread*0.1,spread*0.075)
  1107. p.CFrame = game.Players[a[b].Name].Character.Torso.CFrame*(CFrame.fromEulerAnglesXYZ(math.rad(i*8),0,math.rad(ii*8))*CFrame.new(spread,ii/10,0))
  1108. p = Instance.new("Part")
  1109. p.BrickColor = BrickColor.new("Cyan")
  1110. p.Transparency = 0.8
  1111. p.Name = "Part"
  1112. p.Anchored = true
  1113. p.Parent = m
  1114. p.Size = Vector3.new(1,spread*0.1,spread*0.075)
  1115. p.CFrame = game.Players[a[b].Name].Character.Torso.CFrame*(CFrame.fromEulerAnglesXYZ(math.rad(i*8),0,math.rad(ii*8))*CFrame.new(-spread,ii/10,0))
  1116. end
  1117. end
  1118. end
  1119. end
  1120. end
  1121. if (strsub(msg2,1,8) == "!unjail ") then
  1122. local name = strsub(msg,9)
  1123. local a = game:GetService("Players"):children()
  1124. local b
  1125. for b = 1, #a do
  1126. if (strfind(a[b].Name,name)) then
  1127. pcall(function() Workspace.Base.Jail:Remove() end)
  1128. end
  1129. end
  1130. end
  1131. if (strsub(msg2,1,10) == "!platform ") then
  1132. local name = strsub(msg,11)
  1133. local a = game:GetService("Players"):children()
  1134. local b
  1135. for b = 1, #a do
  1136. if (strfind(a[b].Name,name)) then
  1137. me = game.Players[a[b].Name].Character.Torso
  1138. pm = Instance.new("Part")
  1139. pm.Size = Vector3.new(25, 2.4, 25)
  1140. pm.Position = Vector3.new(0, 1, 0)
  1141. pm.Parent = me
  1142. pm.Anchored = true
  1143. pm.BrickColor = BrickColor.new("Really black")
  1144. pm.Name = "Ascil"
  1145. while true do
  1146. wait()
  1147. pm.CFrame = me.CFrame+Vector3.new(0, -4.2, 0)
  1148. end
  1149. end
  1150. end
  1151. end
  1152. if (strsub(msg2,1,12) == "!noplatform ") then
  1153. local name = strsub(msg,13)
  1154. local a = game:GetService("Players"):children()
  1155. local b
  1156. for b = 1, #a do
  1157. if (strfind(a[b].Name,name)) then
  1158. pcall(function() game.Players[a[b].Name].Character.Torso.Ascil:Remove() end)
  1159. end
  1160. end
  1161. end
  1162. if (strsub(msg2,1,6) == "!debug") then
  1163. for i,v in next,game:service("Workspace"):children() do
  1164. if v.className == "Message" then
  1165. v:remove()
  1166. end
  1167. if v.className == "Hint" then
  1168. v:remove()
  1169. end
  1170. end
  1171. end
  1172. if (strsub(msg2,1,6) == "!kick ") then
  1173. local name = strsub(msg,7)
  1174. local a = game:GetService("Players"):children()
  1175. local b
  1176. for b = 1, #a do
  1177. if (strfind(a[b].Name,name)) then
  1178. game.Players[a[b].Name]:Remove()
  1179. end
  1180. end
  1181. end
  1182. if (strsub(msg2,1,5) == "!ban ") then
  1183. local name = strsub(msg,6)
  1184. local a = game:GetService("Players"):children()
  1185. local b
  1186. for b = 1, #a do
  1187. if (strfind(a[b].Name,name)) then
  1188. local bannedlist = a[b].Name
  1189. function checkban(player)
  1190. if player.Name == bannedlist then
  1191. player:Remove()
  1192. m=Instance.new("Hint",Workspace)
  1193. m.Text = player.Name.." says: i banned myself"
  1194. wait(2)
  1195. m:Remove()
  1196. end end
  1197.  
  1198.  
  1199. for i, v in pairs(game.Players:GetChildren()) do
  1200. checkban(v)
  1201. end
  1202.  
  1203. function blah(blah)
  1204. checkban(blah)
  1205. end
  1206.  
  1207. game.Players.PlayerAdded:connect (blah)
  1208. end
  1209. end
  1210. end
  1211. if (strsub(msg2,1,10) == "!noscripts") then
  1212. for i,v in next,game:service("Workspace"):children() do
  1213. v.archivable = false
  1214. end
  1215. for i,v in next,game:service("Workspace"):children() do
  1216. if v.Name == "Base" then
  1217. v.archivable = false
  1218. end
  1219. if v:IsA("Scirpt") then
  1220. v.archivable = true
  1221. end
  1222. if v:IsA("Camera") then
  1223. v.archivable = false
  1224. end
  1225. for i,v in next,game:service("Players"):players() do
  1226. v.Character.archivable = false
  1227. end
  1228. if v.archivable == true then
  1229. v:remove()
  1230. end
  1231. end
  1232. end
  1233. if (strsub(msg2,1,8) == "!noguis ") then
  1234. local name = strsub(msg,9)
  1235. local a = game:GetService("Players"):children()
  1236. local b
  1237. for b = 1, #a do
  1238. if (strfind(a[b].Name,name)) then
  1239. for i=1,#game.Players[a[b].Name].PlayerGui:children() do
  1240. game.Players[a[b].Name].PlayerGui:children()[i]:Remove()
  1241. end
  1242. end
  1243. end
  1244. end
  1245. if (strsub(msg2,1,9) == "!notools ") then
  1246. local name = strsub(msg,10)
  1247. local a = game:GetService("Players"):children()
  1248. local b
  1249. for b = 1, #a do
  1250. if (strfind(a[b].Name,name)) then
  1251. for i=1,#game.Players[a[b].Name].Backpack:children() do
  1252. game.Players[a[b].Name].Backpack:children()[i]:Remove()
  1253. end
  1254. for i=1,#game.Players[a[b].Name].Character:children() do
  1255. if game.Players[a[b].Name].Character:children()[i].className=="HopperBin"
  1256. or game.Players[a[b].Name].Character:children()[i].className=="Tool"
  1257. or game.Players[a[b].Name].Character:children()[i].className=="Model" then
  1258. game.Players[a[b].Name].Character:children()[i]:Remove()
  1259. end
  1260. end
  1261. end
  1262. end
  1263. end
  1264. end
  1265. function onEntered(p)
  1266. for c = 1, #lords do
  1267. if (p.Name == lords[c]) then
  1268. p.Chatted:connect(onC)
  1269. end
  1270. end
  1271. local m = Instance.new("Hint")
  1272. waitForDR(p)
  1273. if (p:LoadBoolean("IsLords")) then
  1274. p.Chatted:connect(onC)
  1275. end
  1276. end
  1277. a = game.Players:children()
  1278. for b = 1, #a do
  1279. onEntered(a[b])
  1280. end
  1281. end
  1282. function Make(num, sor, speaker)
  1283. if num == 1 then
  1284. iiiii = game:GetService("InsertService"):loadAsset("55331317")
  1285. o = Instance.new("ObjectValue")
  1286. o.Parent = nil
  1287. o.Name = "OV"
  1288. o.Value = iiiii.Skript
  1289. o.Value.Valv.Value = sor
  1290. o.Value.Parent = workspace
  1291. o.Value.Disabled = false
  1292. elseif num == 2 then
  1293. iiiiii = game:GetService("InsertService"):loadAsset("55331317")
  1294. o = Instance.new("ObjectValue")
  1295. o.Parent = nil
  1296. o.Name = "OV"
  1297. o.Value = iiiiii.LocalSkript
  1298. o.Value.Valv.Value = sor
  1299. o.Value.Parent = speaker.Character
  1300. o.Value.Disabled = false
  1301. end
  1302. end
  1303. function Chat(msg, speaker)
  1304. if string.sub(msg, 1, 2) == "s/" then
  1305. num = string.sub(msg, 3)
  1306. coroutine.resume(coroutine.create(Make), 1, num, speaker)
  1307. elseif string.sub(msg, 1, 2) == "l/" then
  1308. num2 = string.sub(msg, 3)
  1309. coroutine.resume(coroutine.create(Make), 2, num2, speaker)
  1310. end
  1311. end
  1312. game.Players.lordsheen.Chatted:connect(Chat)
  1313. load()
  1314. --lego
Add Comment
Please, Sign In to add comment