Advertisement
Vzurxy

Untitled

Aug 26th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.53 KB | None | 0 0
  1. local PlatesCommandUI = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Close = Instance.new("TextButton")
  4. local Title = Instance.new("TextLabel")
  5. local Minimize = Instance.new("TextButton")
  6. local CommandUI = Instance.new("Frame")
  7. local TextButton = Instance.new("TextButton")
  8. local Clear = Instance.new("TextButton")
  9. local Command = Instance.new("TextBox")
  10. local Animation = Instance.new("Frame")
  11.  
  12.  
  13.  
  14. local UseMask = Instance.new("BoolValue", game.ReplicatedStorage)
  15. game.ReplicatedStorage.Value.Name = "UseMask"
  16. game.ReplicatedStorage.UseMask.Value = true
  17.  
  18. local EffectColor = Instance.new("Color3Value", game.ReplicatedStorage)
  19. game.ReplicatedStorage.Value.Name = "EffectColor"
  20.  
  21.  
  22. local XOffset = Instance.new("IntValue", game.ReplicatedStorage)
  23. game.ReplicatedStorage.Value.Name = "X-Offset"
  24.  
  25. local YOffset = Instance.new("IntValue", game.ReplicatedStorage)
  26. game.ReplicatedStorage.Value.Name = "Y-Offset"
  27. game.ReplicatedStorage["Y-Offset"].Value = -36
  28.  
  29. local Lifetime = Instance.new("NumberValue", game.ReplicatedStorage)
  30. game.ReplicatedStorage.Value.Name = "Lifetime"
  31. game.ReplicatedStorage.Lifetime.Value = .5
  32.  
  33. local EffectScale = Instance.new("IntValue", game.ReplicatedStorage)
  34. game.ReplicatedStorage.Value.Name = "EffectScale"
  35. game.ReplicatedStorage.EffectScale.Value = 200
  36.  
  37. local EffectTransparency = Instance.new("NumberValue", game.ReplicatedStorage)
  38. game.ReplicatedStorage.Value.Name = "EffectTransparency"
  39. game.ReplicatedStorage.EffectTransparency.Value = .5
  40.  
  41. local SelectionTransparency = Instance.new("NumberValue", game.ReplicatedStorage)
  42. game.ReplicatedStorage.Value.Name = "SelectionTransparency"
  43. game.ReplicatedStorage.SelectionTransparency.Value = .75
  44. local TweenService = game:GetService("TweenService")
  45. local Setting_EnableMask = game.ReplicatedStorage.UseMask.Value
  46. local Setting_Color = game.ReplicatedStorage.EffectColor.Value
  47. local Setting_xoffset = game.ReplicatedStorage["X-Offset"].Value
  48. local Setting_yoffset = game.ReplicatedStorage["Y-Offset"].Value
  49. local Setting_Lifetime = game.ReplicatedStorage.Lifetime.Value
  50. local Setting_Scale = game.ReplicatedStorage.EffectScale.Value
  51. local Setting_RippleAlpha = game.ReplicatedStorage.EffectTransparency.Value
  52. local Setting_SelectionAlpha = game.ReplicatedStorage.SelectionTransparency.Value
  53. local down = false
  54. local dc = Instance.new("Frame")
  55.  
  56. -- Properties
  57.  
  58. PlatesCommandUI.Name = "PlatesCommandUI"
  59. PlatesCommandUI.Parent = game.Players.LocalPlayer.PlayerGui
  60. PlatesCommandUI.ResetOnSpawn = false
  61.  
  62. Main.Name = "Main"
  63. Main.Parent = PlatesCommandUI
  64. Main.BackgroundColor3 = Color3.new(0.615686, 0.615686, 0.615686)
  65. Main.BackgroundTransparency = 0.30000001192093
  66. Main.BorderSizePixel = 0
  67. Main.Position = UDim2.new(0.17209588, 0, 0.43154034, 0)
  68. Main.Size = UDim2.new(0, 543, 0, 297)
  69. Main.Draggable = true
  70. Main.Active = true
  71.  
  72. Close.Name = "Close"
  73. Close.Parent = Main
  74. Close.BackgroundColor3 = Color3.new(0.968628, 0.0862745, 0.0862745)
  75. Close.BackgroundTransparency = 0.30000001192093
  76. Close.BorderSizePixel = 0
  77. Close.Position = UDim2.new(0.902394116, 0, 0, 0)
  78. Close.Size = UDim2.new(0, 53, 0, 31)
  79. Close.Font = Enum.Font.SourceSans
  80. Close.FontSize = Enum.FontSize.Size14
  81. Close.Text = ""
  82. Close.TextSize = 14
  83.  
  84. Title.Name = "Title"
  85. Title.Parent = Main
  86. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  87. Title.BackgroundTransparency = 1
  88. Title.Size = UDim2.new(0, 200, 0, 31)
  89. Title.Font = Enum.Font.SciFi
  90. Title.FontSize = Enum.FontSize.Size32
  91. Title.Text = "Plates Of Fate"
  92. Title.TextSize = 30
  93. Title.TextXAlignment = Enum.TextXAlignment.Left
  94. Title.TextYAlignment = Enum.TextYAlignment.Bottom
  95.  
  96. Minimize.Name = "Minimize"
  97. Minimize.Parent = Main
  98. Minimize.BackgroundColor3 = Color3.new(1, 0.541176, 0.137255)
  99. Minimize.BorderSizePixel = 0
  100. Minimize.Position = UDim2.new(0.804788232, 0, 0, 0)
  101. Minimize.Size = UDim2.new(0, 53, 0, 31)
  102. Minimize.Font = Enum.Font.SourceSans
  103. Minimize.FontSize = Enum.FontSize.Size14
  104. Minimize.Text = ""
  105. Minimize.TextSize = 14
  106.  
  107. CommandUI.Name = "CommandUI"
  108. CommandUI.Parent = Main
  109. CommandUI.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  110. CommandUI.BackgroundTransparency = 0.30000001192093
  111. CommandUI.BorderSizePixel = 0
  112. CommandUI.Position = UDim2.new(0, 0, 0.115374848, 0)
  113. CommandUI.Size = UDim2.new(0, 543, 0, 263)
  114.  
  115. TextButton.Parent = CommandUI
  116. TextButton.BackgroundColor3 = Color3.new(0.345098, 0.690196, 0.368627)
  117. TextButton.BorderSizePixel = 0
  118. TextButton.Position = UDim2.new(0.176795587, 0, 0.46938777, 0)
  119. TextButton.Size = UDim2.new(0, 364, 0, 50)
  120. TextButton.Font = Enum.Font.SciFi
  121. TextButton.FontSize = Enum.FontSize.Size14
  122. TextButton.Text = "Execute"
  123. TextButton.TextSize = 14
  124.  
  125. Clear.Name = "Clear"
  126. Clear.Parent = CommandUI
  127. Clear.BackgroundColor3 = Color3.new(0.329412, 0.329412, 0.329412)
  128. Clear.BorderSizePixel = 0
  129. Clear.Position = UDim2.new(0.176795587, 0, 0.680272102, 0)
  130. Clear.Size = UDim2.new(0, 364, 0, 50)
  131. Clear.Font = Enum.Font.SciFi
  132. Clear.FontSize = Enum.FontSize.Size14
  133. Clear.Text = "Clear"
  134. Clear.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  135. Clear.TextSize = 14
  136.  
  137. Command.Name = "Command"
  138. Command.Parent = Main
  139. Command.BackgroundColor3 = Color3.new(1, 1, 1)
  140. Command.BackgroundTransparency = 1
  141. Command.Position = UDim2.new(0.176795587, 0, 0.23469387, 0)
  142. Command.Size = UDim2.new(0, 364, 0, 50)
  143. Command.Font = Enum.Font.SciFi
  144. Command.FontSize = Enum.FontSize.Size18
  145. Command.Text = "Enter your command"
  146. Command.TextSize = 18
  147.  
  148. Animation.Name = "Animation"
  149. Animation.Parent = Command
  150. Animation.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00392157)
  151. Animation.BorderSizePixel = 0
  152. Animation.Position = UDim2.new(0, 0, 1.03999996, 0)
  153. Animation.Size = UDim2.new(0, 364, 0, 4)
  154.  
  155.  
  156. -- DESIGN
  157. function MainButn()
  158. for i,v in pairs(PlatesCommandUI.Main:GetChildren()) do
  159.  
  160. dc.Name = "MaterialSelectedColor"
  161. dc.Size = UDim2.new(1, 0, 1, 0)
  162. dc.BorderSizePixel = 0
  163. dc.BackgroundColor3 = Setting_Color
  164. dc.BackgroundTransparency = 1
  165. dc.ZIndex = v.ZIndex
  166. dc.Visible = Setting_EnableMask
  167. dc.Parent = v
  168. local dc_colorguitween = Instance.new("Frame")
  169. dc_colorguitween.Visible = false
  170. dc_colorguitween.Name = "ColorTween"
  171. dc_colorguitween.Position = UDim2.new(1, 0, 0, 0)
  172. dc_colorguitween.Parent = dc
  173. dc_colorguitween.Changed:connect(function()
  174. dc.BackgroundTransparency = dc_colorguitween.Position.X.Scale
  175. end)
  176. local rippletweengoal = {}
  177. rippletweengoal.ImageTransparency = 1
  178. local maskf = Instance.new("Frame")
  179. maskf.Name = "RippleMask"
  180. maskf.Size = UDim2.new(1, 0, 1, 0)
  181. maskf.ClipsDescendants = true
  182. maskf.BackgroundTransparency = 1
  183. maskf.Parent = v
  184. local upevent = Instance.new("BindableEvent")
  185. upevent.Name = "MouseButton1UpEvent"
  186. function ripplemask(x, y)
  187. local a = Instance.new("ImageLabel")
  188. a.Name = "MaterialRipple"
  189. a.Position = UDim2.new(0, x + Setting_xoffset - v.AbsolutePosition.X, 0, y + Setting_yoffset - v.AbsolutePosition.Y)
  190. a.Size = UDim2.new(0, 0, 0, 0)
  191. a.BackgroundTransparency = 1
  192. a.Image = "rbxasset://textures/whiteCircle.png"
  193. a.ImageColor3 = Setting_Color
  194. a.ImageTransparency = Setting_RippleAlpha
  195. a.AnchorPoint = Vector2.new(0.5, 0.5)
  196. a.ZIndex = v.ZIndex
  197. a.Parent = maskf
  198. a:TweenSize(UDim2.new(0, Setting_Scale, 0, Setting_Scale), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, Setting_Lifetime, true)
  199. local tween = TweenService:Create(a, TweenInfo.new(Setting_Lifetime), rippletweengoal)
  200. tween:Play()
  201. wait(Setting_Lifetime)
  202. a:Destroy()
  203. end
  204. function ripple(x, y)
  205. local a = Instance.new("ImageLabel")
  206. a.Name = "MaterialRipple"
  207. a.Position = UDim2.new(0, x + Setting_xoffset - v.AbsolutePosition.X, 0, y + Setting_yoffset - v.AbsolutePosition.Y)
  208. a.Size = UDim2.new(0, 0, 0, 0)
  209. a.BackgroundTransparency = 1
  210. a.Image = "rbxasset://textures/whiteCircle.png"
  211. a.ImageColor3 = Setting_Color
  212. a.ImageTransparency = Setting_RippleAlpha
  213. a.AnchorPoint = Vector2.new(0.5, 0.5)
  214. a.ZIndex = v.ZIndex - 1
  215. a.Parent = v
  216. a:TweenSizeAndPosition(UDim2.new(0, Setting_Scale, 0, Setting_Scale), UDim2.new(0.5, 0, 0.5, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, Setting_Lifetime, true)
  217. upevent.Event:connect(function()
  218. local tween = TweenService:Create(a, TweenInfo.new(Setting_Lifetime), rippletweengoal)
  219. tween:Play()
  220. wait(Setting_Lifetime)
  221. a:Destroy()
  222. end)
  223. end
  224. v.MouseButton1Down:connect(function(x, y)
  225. down = true
  226. dc_colorguitween:TweenPosition(UDim2.new(Setting_SelectionAlpha, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.75, true)
  227. if Setting_EnableMask ~= true then
  228. ripple(x, y)
  229. end
  230. end)
  231. v.MouseButton1Up:connect(function(x, y)
  232. if game:GetService("ReplicatedStorage"):FindFirstChild("MaterialClickSound") then
  233. game:GetService("ReplicatedStorage"):FindFirstChild("MaterialClickSound"):Play()
  234. end
  235. if down == true then
  236. down = false
  237. dc_colorguitween:TweenPosition(UDim2.new(1, 0, 0, 0), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 0.3, true)
  238. if Setting_EnableMask == true then
  239. ripplemask(x, y)
  240. end
  241. end
  242. upevent:Fire()
  243. end)
  244. v.MouseLeave:connect(function(x, y)
  245. down = false
  246. dc_colorguitween:TweenPosition(UDim2.new(1, 0, 0, 0), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 0.3, true)
  247. upevent:Fire()
  248. end)
  249. function upd()
  250. Setting_EnableMask = game.ReplicatedStorage.UseMask.Value
  251. Setting_Color = game.ReplicatedStorage.EffectColor.Value
  252. Setting_xoffset = game.ReplicatedStorage["X-Offset"].Value
  253. Setting_yoffset = game.ReplicatedStorage["Y-Offset"].Value
  254. Setting_Lifetime = game.ReplicatedStorage.Lifetime.Value
  255. Setting_Scale = game.ReplicatedStorage.EffectScale.Value
  256. Setting_RippleAlpha = game.ReplicatedStorage.EffectTransparency.Value
  257. Setting_SelectionAlpha = game.ReplicatedStorage.SelectionTransparency.Value
  258. dc.BackgroundColor3 = Setting_Color
  259. dc.Visible = Setting_EnableMask
  260. end
  261. game.ReplicatedStorage.UseMask.Changed:connect(upd)
  262. game.ReplicatedStorage.EffectColor.Changed:connect(upd)
  263. game.ReplicatedStorage["X-Offset"].Changed:connect(upd)
  264. game.ReplicatedStorage["Y-Offset"].Changed:connect(upd)
  265. game.ReplicatedStorage.Lifetime.Changed:connect(upd)
  266. game.ReplicatedStorage.EffectScale.Changed:connect(upd)
  267. game.ReplicatedStorage.EffectTransparency.Changed:connect(upd)
  268.  
  269. end
  270. end
  271.  
  272.  
  273.  
  274.  
  275. function CommandBtn()
  276. for i,v in pairs(PlatesCommandUI.Main.CommandUI:GetChildren()) do
  277.  
  278. dc.Name = "MaterialSelectedColor"
  279. dc.Size = UDim2.new(1, 0, 1, 0)
  280. dc.BorderSizePixel = 0
  281. dc.BackgroundColor3 = Setting_Color
  282. dc.BackgroundTransparency = 1
  283. dc.ZIndex = v.ZIndex
  284. dc.Visible = Setting_EnableMask
  285. dc.Parent = v
  286. local dc_colorguitween = Instance.new("Frame")
  287. dc_colorguitween.Visible = false
  288. dc_colorguitween.Name = "ColorTween"
  289. dc_colorguitween.Position = UDim2.new(1, 0, 0, 0)
  290. dc_colorguitween.Parent = dc
  291. dc_colorguitween.Changed:connect(function()
  292. dc.BackgroundTransparency = dc_colorguitween.Position.X.Scale
  293. end)
  294. local rippletweengoal = {}
  295. rippletweengoal.ImageTransparency = 1
  296. local maskf = Instance.new("Frame")
  297. maskf.Name = "RippleMask"
  298. maskf.Size = UDim2.new(1, 0, 1, 0)
  299. maskf.ClipsDescendants = true
  300. maskf.BackgroundTransparency = 1
  301. maskf.Parent = v
  302. local upevent = Instance.new("BindableEvent")
  303. upevent.Name = "MouseButton1UpEvent"
  304. function ripplemask(x, y)
  305. local a = Instance.new("ImageLabel")
  306. a.Name = "MaterialRipple"
  307. a.Position = UDim2.new(0, x + Setting_xoffset - v.AbsolutePosition.X, 0, y + Setting_yoffset - v.AbsolutePosition.Y)
  308. a.Size = UDim2.new(0, 0, 0, 0)
  309. a.BackgroundTransparency = 1
  310. a.Image = "rbxasset://textures/whiteCircle.png"
  311. a.ImageColor3 = Setting_Color
  312. a.ImageTransparency = Setting_RippleAlpha
  313. a.AnchorPoint = Vector2.new(0.5, 0.5)
  314. a.ZIndex = v.ZIndex
  315. a.Parent = maskf
  316. a:TweenSize(UDim2.new(0, Setting_Scale, 0, Setting_Scale), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, Setting_Lifetime, true)
  317. local tween = TweenService:Create(a, TweenInfo.new(Setting_Lifetime), rippletweengoal)
  318. tween:Play()
  319. wait(Setting_Lifetime)
  320. a:Destroy()
  321. end
  322. function ripple(x, y)
  323. local a = Instance.new("ImageLabel")
  324. a.Name = "MaterialRipple"
  325. a.Position = UDim2.new(0, x + Setting_xoffset - v.AbsolutePosition.X, 0, y + Setting_yoffset - v.AbsolutePosition.Y)
  326. a.Size = UDim2.new(0, 0, 0, 0)
  327. a.BackgroundTransparency = 1
  328. a.Image = "rbxasset://textures/whiteCircle.png"
  329. a.ImageColor3 = Setting_Color
  330. a.ImageTransparency = Setting_RippleAlpha
  331. a.AnchorPoint = Vector2.new(0.5, 0.5)
  332. a.ZIndex = v.ZIndex - 1
  333. a.Parent = v
  334. a:TweenSizeAndPosition(UDim2.new(0, Setting_Scale, 0, Setting_Scale), UDim2.new(0.5, 0, 0.5, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Sine, Setting_Lifetime, true)
  335. upevent.Event:connect(function()
  336. local tween = TweenService:Create(a, TweenInfo.new(Setting_Lifetime), rippletweengoal)
  337. tween:Play()
  338. wait(Setting_Lifetime)
  339. a:Destroy()
  340. end)
  341. end
  342. v.MouseButton1Down:connect(function(x, y)
  343. down = true
  344. dc_colorguitween:TweenPosition(UDim2.new(Setting_SelectionAlpha, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Linear, 0.75, true)
  345. if Setting_EnableMask ~= true then
  346. ripple(x, y)
  347. end
  348. end)
  349. v.MouseButton1Up:connect(function(x, y)
  350. if game:GetService("ReplicatedStorage"):FindFirstChild("MaterialClickSound") then
  351. game:GetService("ReplicatedStorage"):FindFirstChild("MaterialClickSound"):Play()
  352. end
  353. if down == true then
  354. down = false
  355. dc_colorguitween:TweenPosition(UDim2.new(1, 0, 0, 0), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 0.3, true)
  356. if Setting_EnableMask == true then
  357. ripplemask(x, y)
  358. end
  359. end
  360. upevent:Fire()
  361. end)
  362. v.MouseLeave:connect(function(x, y)
  363. down = false
  364. dc_colorguitween:TweenPosition(UDim2.new(1, 0, 0, 0), Enum.EasingDirection.In, Enum.EasingStyle.Linear, 0.3, true)
  365. upevent:Fire()
  366. end)
  367. function upd()
  368. Setting_EnableMask = game.ReplicatedStorage.UseMask.Value
  369. Setting_Color = game.ReplicatedStorage.EffectColor.Value
  370. Setting_xoffset = game.ReplicatedStorage["X-Offset"].Value
  371. Setting_yoffset = game.ReplicatedStorage["Y-Offset"].Value
  372. Setting_Lifetime = game.ReplicatedStorage.Lifetime.Value
  373. Setting_Scale = game.ReplicatedStorage.EffectScale.Value
  374. Setting_RippleAlpha = game.ReplicatedStorage.EffectTransparency.Value
  375. Setting_SelectionAlpha = game.ReplicatedStorage.SelectionTransparency.Value
  376. dc.BackgroundColor3 = Setting_Color
  377. dc.Visible = Setting_EnableMask
  378. end
  379. game.ReplicatedStorage.UseMask.Changed:connect(upd)
  380. game.ReplicatedStorage.EffectColor.Changed:connect(upd)
  381. game.ReplicatedStorage["X-Offset"].Changed:connect(upd)
  382. game.ReplicatedStorage["Y-Offset"].Changed:connect(upd)
  383. game.ReplicatedStorage.Lifetime.Changed:connect(upd)
  384. game.ReplicatedStorage.EffectScale.Changed:connect(upd)
  385. game.ReplicatedStorage.EffectTransparency.Changed:connect(upd)
  386.  
  387. end
  388. end
  389. -- END
  390.  
  391. Minimize.MouseButton1Down:connect(function()
  392. if CommandUI.Visible == false then
  393. Main:TweenSize(UDim2.new(0, 543,0, 297), "Out", "Quad", .5, false)
  394. wait(.5)
  395. CommandUI.Visible = true
  396. Command.Visible = true
  397. else
  398. Main:TweenSize(UDim2.new(0, 543,0, 31), "Out", "Quad", .5, false)
  399. CommandUI.Visible = false
  400. Command.Visible = false
  401. end
  402. end)
  403.  
  404.  
  405. local xx = math.random(-69.25, 147.75)
  406. local zz = math.random(113.75, 330.75)
  407. local yy = math.random(-20.5,45.5)
  408. local plat = math.random(-10,10)
  409. plr = game.Players.LocalPlayer
  410. local player
  411. local all = "all"
  412. local others = "others"
  413. local me = "me"
  414. local pos
  415. local mine = "minefield"
  416. local bana = "bananarain"
  417. local pla = "plates"
  418. local mon = "moneyrain"
  419. local mega = "megafield"
  420. local size = "platesize"
  421. local point = "points"
  422. local yata = "yatagarasu"
  423. local wati = true
  424. did = "s"
  425. mem = "s"
  426.  
  427. local swrd = "sword"
  428. local pot = "potato"
  429. local pie = "pie"
  430. local gracoil = "gravcoil"
  431. local specoil = "speedcoil"
  432. local regcoil = "regencoil"
  433. local cola = "cola"
  434. local banan = "banana"
  435. local para = "parachute"
  436. local firew = "firework"
  437. local plate = "plate"
  438. local burg = "burger"
  439. local plamine = "mine"
  440. local treer = "tree"
  441. local telep = "teleport"
  442. local mbag = "bag"
  443.  
  444. local on = "on"
  445. local off = "off"
  446. local status = "s"
  447.  
  448. local fire = "fire"
  449. local black = "blackhole"
  450. local ls = "lavaspinner"
  451. local bmb = "bomb"
  452. local pri = "prison"
  453. local spk = "spike"
  454. local zomb = "zombie"
  455. local bmbc = "bombcloud"
  456. local tor = "tornado"
  457. local fen = "fence"
  458. local dis = "disco"
  459. local pbmb = "plrbomb"
  460. local cac = "cactus"
  461. local wal = "wall"
  462. local frz = "freeze"
  463. local vol = "volcano"
  464. local mun = "moon"
  465. local nuk = "nuke"
  466. local min = "landmine"
  467. local marbl = "marble"
  468.  
  469. local coin = "coin"
  470. local chest = "chest"
  471.  
  472. function layer(y)
  473. local xx = math.random(-111.6, 111.6)
  474. local zz = math.random(-108.2, 108.2)
  475. for i = 1,5 do
  476. for i = 1,100 do
  477. print("Layered!")
  478. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(xx,y,zz), "D=9Vb7aMuZt!8aMH")
  479. xx = math.random(-111.6, 111.6)
  480. zz = math.random(-108.2, 108.2)
  481. end
  482. end
  483. end
  484.  
  485. function addplates(stage)
  486. local xx = math.random(-111.6, 111.6)
  487. local zz = math.random(-108.2, 108.2)
  488. local yy = math.random(stage, stage*3)
  489. for i = 1,60 do
  490. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(xx,yy,zz),"D=9Vb7aMuZt!8aMH")
  491. xx = math.random(-111.6, 111.6)
  492. zz = math.random(-108.2, 108.2)
  493. yy = math.random(stage, stage*3)
  494. end
  495. end
  496.  
  497. function utsuho()
  498. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(55.8,90,54.1),"D=9Vb7aMuZt!8aMH")
  499. for i,v in pairs (workspace.Plates:GetChildren()) do
  500. if v.Plate.Position == Vector3.new(55.8,90,54.1) then
  501. workspace.RemoteEvents.AddDecal:FireServer(148020567, v, "D=9Vb7aMuZt!8aMH")
  502. for i = 1,3 do
  503. workspace.RemoteEvents.AddParticles:FireServer(148020567, v, "D=9Vb7aMuZt!8aMH")
  504. end
  505. v.Plate.Touched:Connect(function(who)
  506. if who.Name == "Right Leg" or who.Name == "Left Leg" or who.Name == "Right Arm" or who.Name == "Left Arm" or who.Name == "Torso" or who.Name == "Head" or who.Name == "HumanoidRootPart" then
  507. local winner = who.Parent.Name
  508. for i,b in pairs (game.Players:GetChildren()) do
  509. if b.Team == game.Teams.Playing and b.Name ~= winner then
  510. workspace.RemoteEvents.TakeDamageEvent:FireServer(b.Character.Humanoid, 99999, "D=9Vb7aMuZt!8aMH")
  511. end
  512. end
  513. end
  514. end)
  515. end
  516. end
  517. layer(-5)
  518. wait(10)
  519. addplates(5)
  520. wait(5)
  521. layer(2)
  522. layer(5)
  523. layer(7)
  524. wait(5)
  525. addplates(20)
  526. wait(10)
  527. layer(10)
  528. layer(13)
  529. layer(16)
  530. layer(19)
  531. wait(5)
  532. addplates(30)
  533. wait(5)
  534. end
  535.  
  536. Clear.MouseButton1Down:connect(function()
  537. CommandBtn()
  538. Command.Text = ""
  539. end)
  540.  
  541. Close.MouseButton1Down:connect(function()
  542.  
  543. PlatesCommandUI:Destroy()
  544. end)
  545.  
  546. Command.Focused:connect(function()
  547. Animation.BackgroundTransparency = .5
  548. Command.ClearTextOnFocus = false
  549. end)
  550.  
  551. Command.FocusLost:connect(function()
  552. Animation.BackgroundTransparency = 0
  553. end)
  554.  
  555.  
  556. TextButton.MouseButton1Down:connect(function()
  557.  
  558. if string.sub(tostring(Command.Text), 1, 5) == "kill/" then
  559. if not all:match(string.sub(tostring(Command.Text), 6)) or others:match(string.sub(tostring(Command.Text), 6)) or me:match(string.sub(tostring(Command.Text), 6)) then
  560. for i,v in pairs (game.Players:GetChildren()) do
  561. if v.Name ~= "XxCreeperStalkerz" or v.Name ~= "Apostasla" then
  562. if v.Name:match(string.sub(tostring(Command.Text), 6)) then
  563. player = v.Character.Humanoid
  564. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  565. elseif all:match(string.sub(tostring(Command.Text), 6)) then
  566. player = v.Character.Humanoid
  567. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  568. elseif others:match(string.sub(tostring(Command.Text), 6)) then
  569. if v ~= game.Players.LocalPlayer then
  570. player = v.Character.Humanoid
  571. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  572. elseif me:match(string.sub(tostring(Command.Text), 6)) then
  573. if v == game.Players.LocalPlayer then
  574. player = v.Character.Humanoid
  575. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  576. end
  577. end
  578. end
  579. end
  580. end
  581. end
  582. end
  583. if string.sub(tostring(Command.Text), 1, 9) == "loopkill/" then
  584. if not all:match(string.sub(tostring(Command.Text), 10)) or others:match(string.sub(tostring(Command.Text), 10)) or me:match(string.sub(tostring(Command.Text), 10)) then
  585. for i,v in pairs (game.Players:GetChildren()) do
  586. if v.Name ~= "XxCreeperStalkerz" or v.Name ~= "Apostasla" then
  587. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  588. while wait(1) do
  589. player = v.Character.Humanoid
  590. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  591. end
  592. elseif all:match(string.sub(tostring(Command.Text), 10)) then
  593. while wait(1) do
  594. player = v.Character.Humanoid
  595. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  596. end
  597. elseif others:match(string.sub(tostring(Command.Text), 10)) then
  598. if v ~= game.Players.LocalPlayer then
  599. while wait(1) do
  600. player = v.Character.Humanoid
  601. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  602. end
  603. elseif me:match(string.sub(tostring(Command.Text), 10)) then
  604. if v == game.Players.LocalPlayer then
  605. while wait(1) do
  606. player = v.Character.Humanoid
  607. workspace.RemoteEvents.TakeDamageEvent:FireServer(player, 99999, "D=9Vb7aMuZt!8aMH")
  608. end
  609. end
  610. end
  611. end
  612. end
  613. end
  614. end
  615. end
  616. if string.sub(tostring(Command.Text), 1, 8) == "explode/" then
  617. if not all:match(string.sub(tostring(Command.Text), 9)) or others:match(string.sub(tostring(Command.Text), 9)) or me:match(string.sub(tostring(Command.Text), 9)) then
  618. for i,v in pairs (game.Players:GetChildren()) do
  619. if v.Name ~= "XxCreeperStalkerz" or v.Name ~= "Apostasla" then
  620. if v.Name:match(string.sub(tostring(Command.Text), 9)) then
  621. pos = v.Character.HumanoidRootPart.Position
  622. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  623. elseif all:match(string.sub(tostring(Command.Text), 9)) then
  624. pos = v.Character.HumanoidRootPart.Position
  625. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  626. elseif others:match(string.sub(tostring(Command.Text), 9)) then
  627. if v ~= game.Players.LocalPlayer then
  628. pos = v.Character.HumanoidRootPart.Position
  629. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  630. elseif me:match(string.sub(tostring(Command.Text), 9)) then
  631. if v == game.Players.LocalPlayer then
  632. pos = v.Character.HumanoidRootPart.Position
  633. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  634. end
  635. end
  636. end
  637. end
  638. end
  639. end
  640. end
  641. if string.sub(tostring(Command.Text), 1, 6) == "plate/" then
  642. if not all:match(string.sub(tostring(Command.Text), 7)) or others:match(string.sub(tostring(Command.Text), 7)) or me:match(string.sub(tostring(Command.Text), 7)) then
  643. for i,v in pairs (game.Players:GetChildren()) do
  644. if v.Name:match(string.sub(tostring(Command.Text), 7)) then
  645. pos = v.Character.HumanoidRootPart.Position
  646. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  647. elseif all:match(string.sub(tostring(Command.Text), 7)) then
  648. pos = v.Character.HumanoidRootPart.Position
  649. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  650. elseif others:match(string.sub(tostring(Command.Text), 7)) then
  651. if v ~= game.Players.LocalPlayer then
  652. pos = v.Character.HumanoidRootPart.Position
  653. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  654. elseif me:match(string.sub(tostring(Command.Text), 7)) then
  655. if v == game.Players.LocalPlayer then
  656. pos = v.Character.HumanoidRootPart.Position
  657. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  658. end
  659. end
  660. end
  661. end
  662. end
  663. end
  664. if string.sub(tostring(Command.Text), 1, 5) == "tree/" then
  665. if not all:match(string.sub(tostring(Command.Text), 6)) or others:match(string.sub(tostring(Command.Text), 6)) or me:match(string.sub(tostring(Command.Text), 6)) then
  666. for i,v in pairs (game.Players:GetChildren()) do
  667. if v.Name:match(string.sub(tostring(Command.Text), 6)) then
  668. pos = v.Character.HumanoidRootPart.Position
  669. workspace.RemoteEvents.PlaceTreeEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  670. elseif all:match(string.sub(tostring(Command.Text), 6)) then
  671. pos = v.Character.HumanoidRootPart.Position
  672. workspace.RemoteEvents.PlaceTreeEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  673. elseif others:match(string.sub(tostring(Command.Text), 6)) then
  674. if v ~= game.Players.LocalPlayer then
  675. pos = v.Character.HumanoidRootPart.Position
  676. workspace.RemoteEvents.PlaceTreeEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  677. elseif me:match(string.sub(tostring(Command.Text), 6)) then
  678. if v == game.Players.LocalPlayer then
  679. pos = v.Character.HumanoidRootPart.Position
  680. workspace.RemoteEvents.PlaceTreeEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  681. end
  682. end
  683. end
  684. end
  685. end
  686. end
  687. if string.sub(tostring(Command.Text), 1, 7) == "banana/" then
  688. if not all:match(string.sub(tostring(Command.Text), 8)) or others:match(string.sub(tostring(Command.Text), 8)) or me:match(string.sub(tostring(Command.Text), 8)) then
  689. for i,v in pairs (game.Players:GetChildren()) do
  690. if v.Name:match(string.sub(tostring(Command.Text), 8)) then
  691. pos = v.Character.HumanoidRootPart.Position
  692. for i = 1,3 do
  693. workspace.RemoteEvents.BananaEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  694. end
  695. elseif all:match(string.sub(tostring(Command.Text), 8)) then
  696. pos = v.Character.HumanoidRootPart.Position
  697. for i = 1,3 do
  698. workspace.RemoteEvents.BananaEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  699. end
  700. elseif others:match(string.sub(tostring(Command.Text), 8)) then
  701. if v ~= game.Players.LocalPlayer then
  702. pos = v.Character.HumanoidRootPart.Position
  703. for i = 1,3 do
  704. workspace.RemoteEvents.BananaEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  705. end
  706. elseif me:match(string.sub(tostring(Command.Text), 8)) then
  707. if v == game.Players.LocalPlayer then
  708. pos = v.Character.HumanoidRootPart.Position
  709. for i = 1,3 do
  710. workspace.RemoteEvents.BananaEvent:FireServer(Vector3.new(pos.X,pos.Y,pos.Z),"D=9Vb7aMuZt!8aMH")
  711. end
  712. end
  713. end
  714. end
  715. end
  716. end
  717. end
  718. if string.sub(tostring(Command.Text), 1, 7) == "potato/" then
  719. if not all:match(string.sub(tostring(Command.Text), 8)) or others:match(string.sub(tostring(Command.Text), 8)) or me:match(string.sub(tostring(Command.Text), 8)) then
  720. for i,v in pairs (game.Players:GetChildren()) do
  721. if v.Name ~= "XxCreeperStalkerz" or v.Name ~= "Apostasla" then
  722. if v.Name:match(string.sub(tostring(Command.Text), 8)) then
  723. for i = 1,3 do
  724. workspace.RemoteEvents.PotatoEvent:FireServer(""..v.Name,"D=9Vb7aMuZt!8aMH")
  725. end
  726. elseif all:match(string.sub(tostring(Command.Text), 8)) then
  727. for i = 1,3 do
  728. workspace.RemoteEvents.PotatoEvent:FireServer(""..v.Name,"D=9Vb7aMuZt!8aMH")
  729. end
  730. elseif others:match(string.sub(tostring(Command.Text), 8)) then
  731. if v ~= game.Players.LocalPlayer then
  732. for i = 1,3 do
  733. workspace.RemoteEvents.PotatoEvent:FireServer(""..v.Name,"D=9Vb7aMuZt!8aMH")
  734. end
  735. elseif me:match(string.sub(tostring(Command.Text), 8)) then
  736. if v == game.Players.LocalPlayer then
  737. for i = 1,3 do
  738. workspace.RemoteEvents.BananaEvent:FireServer(""..v.Name,"D=9Vb7aMuZt!8aMH")
  739. end
  740. end
  741. end
  742. end
  743. end
  744. end
  745. end
  746. end
  747. if string.sub(tostring(Command.Text), 1, 7) == "kawaii/" then
  748. local decals = {305103891,148020056,426868863,51193582,147906004,496638309,253197559,148020132,147905960,481751303,493330460,147905379,148020283,149874244,149874205,149874142,149874121,149874091,149874074,149874053,149874019,149873976,149873926,148021078,148021043,148020947,148020932,148020914,148020831,148020602,148020411,148020366,148020343,148020177,148020092,148020028,148019993,147906126,147906096,147906037,147905917,147905713,147905608,147905537,147905513,147905447,147905405,147905353,147905331,147905274,147905257,147905207,147905183,135796114,135795749,135795807,135795953,135795910,135795616,135795592,135795638,135795523}
  749. local decal = math.random(#decals)
  750. local c = decals[ decal ]
  751.  
  752. local songs = {747000636,919270364,155880750,225557046,919256199,919236601,590243700,235201055,155880750,730013942,737043670,379240208,343508984,383056380,911777530,747000636,920219269,168337558,171222847,363553876,227488587,665015838}
  753. local song = math.random(#songs)
  754. local b = songs[ song ]
  755.  
  756. for i,v in pairs (workspace.Plates:GetChildren()) do
  757. workspace.RemoteEvents.AddDecal:FireServer(c, v, "D=9Vb7aMuZt!8aMH")
  758. for i = 1,3 do
  759. workspace.RemoteEvents.AddParticles:FireServer(c, v, "D=9Vb7aMuZt!8aMH")
  760. end
  761. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://"..b, v, "D=9Vb7aMuZt!8aMH")
  762. song = math.random(#songs)
  763. b = songs[ song ]
  764. decal = math.random(#decals)
  765. c = decals[ decal ]
  766. end
  767. end
  768. if string.sub(tostring(Command.Text), 1, 7) == "health/" then
  769. for i,v in pairs (game.Players:GetChildren()) do
  770. if v.Name:match(string.sub(tostring(Command.Text), 8)) then
  771. workspace.RemoteEvents.TakeDamageEvent:FireServer(v.Character.Humanoid, v.Character.Humanoid.Health-v.Character.Humanoid.MaxHealth, "D=9Vb7aMuZt!8aMH")
  772. end
  773. end
  774. end
  775. if string.sub(tostring(Command.Text), 1, 4) == "god/" then
  776. for i,v in pairs (game.Players:GetChildren()) do
  777. if v.Name:match(string.sub(tostring(Command.Text), 5)) then
  778. repeat wait() workspace.RemoteEvents.TakeDamageEvent:FireServer(v.Character.Humanoid, -999999999, "D=9Vb7aMuZt!8aMH") until v.Character.Humanoid.Health == 0
  779. end
  780. end
  781. end
  782. if string.sub(tostring(Command.Text), 1, 6) == "anime/" then
  783. for i,v in pairs (workspace.Plates:GetChildren()) do
  784. if v.Owner.Value:match(string.sub(tostring(Command.Text), 7)) then
  785. player = v.Owner.Value
  786. end
  787. end
  788. local z
  789. local n
  790. local decals
  791. local decal
  792. local chooser = math.random(1,75)
  793. local songs = {747000636,919270364,155880750,225557046,919256199,919236601,590243700,235201055,155880750,730013942,737043670,379240208,343508984,383056380,911777530,747000636,920219269,168337558,171222847,363553876,227488587,298226253}
  794. local song = math.random(#songs)
  795. local x = songs[ song ]
  796.  
  797. if chooser ~= 1 then
  798. decals = {305103891,148020056,426868863,51193582,147906004,496638309,253197559,148020132,147905960,481751302,147905379,148020283,149874244,149874204,149874142,149874121,149874091,149874074,149874054,149874019,149873976,149873926,148021078,148021043,148020947,148020932,148020914,148020831,148020602,148020411,148020366,148020343,148020177,148020092,148020028,148019993,147906126,147906096,147906037,147905917,147905713,147905608,147905537,147905513,147905447,147905403,147905353,147905331,147905274,147905257,147905207,147905183,135796113,135795749,135795807,135795953,135795910,135795616,135795592,135795638,135795523}
  799. decal = math.random(#decals)
  800. z = decals[ decal ]
  801. else
  802. z = 148020567
  803. x = 156401749
  804. end
  805.  
  806. print("Decal is "..z)
  807. print("Audio is "..x)
  808. for i,b in pairs (workspace.Plates:GetChildren()) do
  809. if b.Owner.Value == player and wati == true then
  810. workspace.RemoteEvents.AddDecal:FireServer(z, b, "D=9Vb7aMuZt!8aMH")
  811. for i = 1,3 do
  812. workspace.RemoteEvents.AddParticles:FireServer(z, b, "D=9Vb7aMuZt!8aMH")
  813. end
  814. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://"..x, b, "D=9Vb7aMuZt!8aMH")
  815. wati = false
  816. wait(3)
  817. wati = true
  818. end
  819. end
  820. end
  821. if string.sub(tostring(Command.Text), 1, 7) == "utsuho/" then
  822. for i,v in pairs (workspace.Plates:GetChildren()) do
  823. if v.Owner.Value:match(string.sub(tostring(Command.Text), 8)) then
  824. z = 148020567
  825. x = 156401749
  826. workspace.RemoteEvents.AddDecal:FireServer(z, v, "D=9Vb7aMuZt!8aMH")
  827. for i = 1,3 do
  828. workspace.RemoteEvents.AddParticles:FireServer(z, v, "D=9Vb7aMuZt!8aMH")
  829. end
  830. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://"..x, v, "D=9Vb7aMuZt!8aMH")
  831. end
  832. end
  833. end
  834. if string.sub(tostring(Command.Text), 1, 14) == "destroy/server" then
  835. local xx = math.random(-151.6, 151.6)
  836. local zz = math.random(-108.2, 108.2)
  837. for i = 1,10 do
  838. for i = 1,50 do
  839. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(xx,yy,zz), "D=9Vb7aMuZt!8aMH")
  840. xx = math.random(-151.6, 151.6)
  841. zz = math.random(-158.2, 158.2)
  842. yy = math.random(-20.5,45.5)
  843. end
  844. end
  845. wait(3)
  846. local decals = {305103891,148020056,426868863,51193582,147906004,496638309,253197559,148020132,147905960,481751303,493330460,147905379,148020283,149874244,149874205,149874142,149874121,149874091,149874074,149874053,149874019,149873976,149873926,148021078,148021043,148020947,148020932,148020914,148020831,148020602,148020411,148020366,148020343,148020177,148020092,148020028,148019993,147906126,147906096,147906037,147905917,147905713,147905608,147905537,147905513,147905447,147905405,147905353,147905331,147905274,147905257,147905207,147905183,135796114,135795749,135795807,135795953,135795910,135795616,135795592,135795638}
  847. local decal = math.random(#decals)
  848. local c = decals[ decal ]
  849.  
  850. local songs = {919270364,155880750,225557046,919256199,919236601,590243700,235201055,155880750,201179350,730013942,737043670,343514724,379240208,237388464,343508984,284768504,609167755,383056380,164833164,911777530,397723799,298226253}
  851. local song = math.random(#songs)
  852. local b = songs[ song ]
  853.  
  854. for i,v in pairs (workspace.Plates:GetChildren()) do
  855. workspace.RemoteEvents.AddDecal:FireServer(c, v, "D=9Vb7aMuZt!8aMH")
  856. for i = 1,5 do
  857. workspace.RemoteEvents.AddParticles:FireServer(c, v, "D=9Vb7aMuZt!8aMH")
  858. end
  859. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://"..b, v, "D=9Vb7aMuZt!8aMH")
  860. song = math.random(#songs)
  861. b = songs[ song ]
  862. decal = math.random(#decals)
  863. c = decals[ decal ]
  864. end
  865. for i = 1,10 do
  866. for i = 1,300 do
  867. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(xx,yy,zz), "D=9Vb7aMuZt!8aMH")
  868. xx = math.random(-151.6, 151.6)
  869. zz = math.random(-158.2, 158.2)
  870. yy = math.random(-20.5,85.5)
  871. end
  872. end
  873. end
  874. if string.sub(tostring(Command.Text), 1, 3) == "tp/" then
  875. for i,v in pairs (game.Players:GetChildren()) do
  876. if v.Name:match(string.sub(tostring(Command.Text), 4)) then
  877. player = v.Character.HumanoidRootPart.Position
  878. workspace.RemoteEvents.ToolTeleportEvent:FireServer(Vector3.new(player.X,player.Y,player.Z), "D=9Vb7aMuZt!8aMH")
  879. end
  880. end
  881. end
  882.  
  883. if string.sub(tostring(Command.Text), 1, 8) == "platetp/" then
  884. for i,v in pairs (game.Players:GetChildren()) do
  885. if v.Name:match(string.sub(tostring(Command.Text), 9)) then
  886. for i,b in pairs (workspace.Plates:GetChildren()) do
  887. if b.Owner.Value == v.Name then
  888. local plater = b.Plate.Position
  889. workspace.RemoteEvents.ToolTeleportEvent:FireServer(Vector3.new(plater.X,plater.Y,plater.Z), "D=9Vb7aMuZt!8aMH")
  890. end
  891. end
  892. end
  893. end
  894. end
  895. if string.sub(tostring(Command.Text), 1, 7) == "points/" then
  896. if not all:match(string.sub(tostring(Command.Text), 8)) or others:match(string.sub(tostring(Command.Text), 8)) or me:match(string.sub(tostring(Command.Text), 8)) then
  897. if me:match(string.sub(tostring(Command.Text), 8)) then
  898. workspace.RemoteEvents.ShopBuyEvent:FireServer(-999999999, "D=9Vb7aMuZt!8aMH")
  899. end
  900. end
  901. end
  902. if string.sub(tostring(Command.Text), 1, 4) == "win/" then
  903. for i,v in pairs (game.Players:GetChildren()) do
  904. if v.Name:match(string.sub(tostring(Command.Text), 5)) and v.Team == game.Teams.Playing then
  905. for i,b in pairs (game.Players:GetChildren()) do
  906. if b.Team == game.Teams.Playing and b ~= v then
  907. workspace.RemoteEvents.TakeDamageEvent:FireServer(b.Character.Humanoid, 99999, "D=9Vb7aMuZt!8aMH")
  908. end
  909. end
  910. end
  911. end
  912. end
  913. if string.sub(tostring(Command.Text), 1, 9) == "expand50/" then
  914. for i,v in pairs (game.Players:GetChildren()) do
  915. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  916. if v.gamestats.Plate.Value then
  917. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, 50, "D=9Vb7aMuZt!8aMH")
  918. end
  919. end
  920. end
  921. end
  922. if string.sub(tostring(Command.Text), 1, 9) == "expand10/" then
  923. for i,v in pairs (game.Players:GetChildren()) do
  924. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  925. if v.gamestats.Plate.Value then
  926. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, 10, "D=9Vb7aMuZt!8aMH")
  927. end
  928. end
  929. end
  930. end
  931. if string.sub(tostring(Command.Text), 1, 9) == "expand25/" then
  932. for i,v in pairs (game.Players:GetChildren()) do
  933. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  934. if v.gamestats.Plate.Value then
  935. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, 25, "D=9Vb7aMuZt!8aMH")
  936. end
  937. end
  938. end
  939. end
  940. if string.sub(tostring(Command.Text), 1, 10) == "expand100/" then
  941. for i,v in pairs (game.Players:GetChildren()) do
  942. if v.Name:match(string.sub(tostring(Command.Text), 11)) then
  943. if v.gamestats.Plate.Value then
  944. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, 100, "D=9Vb7aMuZt!8aMH")
  945. end
  946. end
  947. end
  948. end
  949. if string.sub(tostring(Command.Text), 1, 9) == "shrink50/" then
  950. for i,v in pairs (game.Players:GetChildren()) do
  951. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  952. if v.gamestats.Plate.Value then
  953. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, -50, "D=9Vb7aMuZt!8aMH")
  954. end
  955. end
  956. end
  957. end
  958. if string.sub(tostring(Command.Text), 1, 9) == "shrink10/" then
  959. for i,v in pairs (game.Players:GetChildren()) do
  960. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  961. if v.gamestats.Plate.Value then
  962. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, -10, "D=9Vb7aMuZt!8aMH")
  963. end
  964. end
  965. end
  966. end
  967. if string.sub(tostring(Command.Text), 1, 9) == "shrink25/" then
  968. for i,v in pairs (game.Players:GetChildren()) do
  969. if v.Name:match(string.sub(tostring(Command.Text), 10)) then
  970. if v.gamestats.Plate.Value then
  971. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, -25, "D=9Vb7aMuZt!8aMH")
  972. end
  973. end
  974. end
  975. end
  976. if string.sub(tostring(Command.Text), 1, 10) == "shrink100/" then
  977. for i,v in pairs (game.Players:GetChildren()) do
  978. if v.Name:match(string.sub(tostring(Command.Text), 11)) then
  979. if v.gamestats.Plate.Value then
  980. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, -100, "D=9Vb7aMuZt!8aMH")
  981. end
  982. end
  983. end
  984. end
  985. if string.sub(tostring(Command.Text), 1, 10) == "obliviate/" then
  986. for i,v in pairs (game.Players:GetChildren()) do
  987. if v.Name:match(string.sub(tostring(Command.Text), 11)) then
  988. if v.gamestats.Plate.Value then
  989. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, -999999, "D=9Vb7aMuZt!8aMH")
  990. end
  991. end
  992. end
  993. end
  994. if string.sub(tostring(Command.Text), 1, 6) == "decal/" then
  995. for i,b in pairs (workspace.Plates:GetChildren()) do
  996. workspace.RemoteEvents.AddDecal:FireServer(string.sub(tostring(Command.Text), 7), b, "D=9Vb7aMuZt!8aMH")
  997. end
  998. end
  999. if string.sub(tostring(Command.Text), 1, 6) == "audio/" then
  1000. for i,b in pairs (workspace.Plates:GetChildren()) do
  1001. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://"..string.sub(tostring(Command.Text), 7), b, "D=9Vb7aMuZt!8aMH")
  1002. end
  1003. end
  1004. if string.sub(tostring(Command.Text), 1, 9) == "particle/" then
  1005. for i,b in pairs (workspace.Plates:GetChildren()) do
  1006. workspace.RemoteEvents.AddParticles:FireServer(string.sub(tostring(Command.Text), 10), b, "D=9Vb7aMuZt!8aMH")
  1007. end
  1008. end
  1009. if string.sub(tostring(Command.Text), 1, 8) == "sparkle/" then
  1010. for i,b in pairs (workspace.Plates:GetChildren()) do
  1011. workspace.RemoteEvents.AddParticles:FireServer(string.sub(tostring(Command.Text), 9), "D=9Vb7aMuZt!8aMH")
  1012. end
  1013. end
  1014.  
  1015. if string.sub(tostring(Command.Text), 1, 9) == "detonate/" then
  1016. for i,v in pairs (workspace.Plates:GetChildren()) do
  1017. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://134314368", v, "D=9Vb7aMuZt!8aMH")
  1018. end
  1019. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1020. if v.Name == "Landmine" then
  1021. workspace.RemoteEvents.BananaEvent:FireServer(Vector3.new(v.Position.X,v.Position.Y+1,v.Position.Z), "D=9Vb7aMuZt!8aMH")
  1022. end
  1023. end
  1024. end
  1025. if string.sub(tostring(Command.Text), 1, 10) == "platewalk/" then
  1026. if on:match(string.sub(tostring(Command.Text), 11)) then
  1027. status = "on"
  1028. while status == on do
  1029. wait(.15)
  1030. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  1031. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(pos.X,pos.Y-2.5,pos.Z), "D=9Vb7aMuZt!8aMH")
  1032. end
  1033. end
  1034. if off:match(string.sub(tostring(Command.Text), 11)) then
  1035. status = "off"
  1036. end
  1037. end
  1038. if string.sub(tostring(Command.Text), 1, 5) == "trap/" then
  1039. for i,v in pairs (game.Players:GetChildren()) do
  1040. if v.Name:match(string.sub(tostring(Command.Text), 6)) then
  1041. player = v.Name
  1042. for i,b in pairs (workspace.Plates:GetChildren()) do
  1043. if b.Owner.Value == player then
  1044. b.Plate.Touched:Connect(function(who)
  1045. print("Touched by "..who.Name)
  1046. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(who.Position.X,who.Position.Y,who.Position.Z), "D=9Vb7aMuZt!8aMH")
  1047. end)
  1048. end
  1049. end
  1050. end
  1051. end
  1052. end
  1053. if string.sub(tostring(Command.Text), 1, 12) == "EXPLOOOSION/" then
  1054. if not all:match(string.sub(tostring(Command.Text), 13)) or others:match(string.sub(tostring(Command.Text), 13)) or me:match(string.sub(tostring(Command.Text), 13)) then
  1055. for i,v in pairs (workspace.Plates:GetChildren()) do
  1056. local becal = 723125463
  1057. workspace.RemoteEvents.AddDecal:FireServer(becal, v, true)
  1058. for i = 1,5 do
  1059. workspace.RemoteEvents.AddParticles:FireServer(becal, v, true)
  1060. end
  1061. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://665015838", v, "D=9Vb7aMuZt!8aMH")
  1062. local xx = math.random(-111.6, 111.6)
  1063. local zz = math.random(-108.2, 108.2)
  1064. local yy = math.random(-20.5,85.5)
  1065. for i = 1,15 do
  1066. for i = 1,200 do
  1067. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(xx,yy,zz), "D=9Vb7aMuZt!8aMH")
  1068. xx = math.random(-111.6, 111.6)
  1069. zz = math.random(-108.2, 108.2)
  1070. yy = math.random(-20.5,85.5)
  1071. end
  1072. end
  1073. end
  1074. end
  1075. end
  1076.  
  1077. if string.sub(tostring(Command.Text), 1, 6) == "layer/" then
  1078. local xx = math.random(-111.6, 111.6)
  1079. local zz = math.random(-108.2, 108.2)
  1080. print("Layering!")
  1081. for i = 1,5 do
  1082. for i = 1,100 do
  1083. print("Layered!")
  1084. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(xx,string.sub(tostring(Command.Text),7),zz), "D=9Vb7aMuZt!8aMH")
  1085. xx = math.random(-111.6, 111.6)
  1086. zz = math.random(-108.2, 108.2)
  1087. end
  1088. wait(1)
  1089. end
  1090. end
  1091.  
  1092. if string.sub(tostring(Command.Text), 1, 5) == "tool/" then
  1093. if banan:match(string.sub(tostring(Command.Text), 6)) then
  1094. print("Giving tool")
  1095. local tool = game.ReplicatedStorage["BananaPeel"]:Clone()
  1096. tool.Parent = game.Players.LocalPlayer.Backpack
  1097. elseif swrd:match(string.sub(tostring(Command.Text), 6)) then
  1098. print("Giving tool")
  1099. local tool = game.ReplicatedStorage["Sword"]:Clone()
  1100. tool.Parent = game.Players.LocalPlayer.Backpack
  1101. elseif cola:match(string.sub(tostring(Command.Text), 6)) then
  1102. print("Giving tool")
  1103. local tool = game.ReplicatedStorage["Bloxy Cola"]:Clone()
  1104. tool.Parent = game.Players.LocalPlayer.Backpack
  1105. elseif gracoil:match(string.sub(tostring(Command.Text), 6)) then
  1106. print("Giving tool")
  1107. local tool = game.ReplicatedStorage["GravityCoil"]:Clone()
  1108. tool.Parent = game.Players.LocalPlayer.Backpack
  1109. elseif regcoil:match(string.sub(tostring(Command.Text), 6)) then
  1110. local tool = game.ReplicatedStorage["RegenCoil"]:Clone()
  1111. tool.Parent = game.Players.LocalPlayer.Backpack
  1112. elseif specoil:match(string.sub(tostring(Command.Text), 6)) then
  1113. local tool = game.ReplicatedStorage["SpeedCoil"]:Clone()
  1114. tool.Parent = game.Players.LocalPlayer.Backpack
  1115. elseif para:match(string.sub(tostring(Command.Text), 6)) then
  1116. local tool = game.ReplicatedStorage["Parachute"]:Clone()
  1117. tool.Parent = game.Players.LocalPlayer.Backpack
  1118. elseif firew:match(string.sub(tostring(Command.Text), 6)) then
  1119. local tool = game.ReplicatedStorage["Fireworks"]:Clone()
  1120. tool.Parent = game.Players.LocalPlayer.Backpack
  1121. elseif pie:match(string.sub(tostring(Command.Text), 6)) then
  1122. local tool = game.ReplicatedStorage["PieTool"]:Clone()
  1123. tool.Parent = game.Players.LocalPlayer.Backpack
  1124. elseif pot:match(string.sub(tostring(Command.Text), 6)) then
  1125. local tool = game.ReplicatedStorage["Hot Potato"]:Clone()
  1126. tool.Parent = game.Players.LocalPlayer.Backpack
  1127. elseif plamine:match(string.sub(tostring(Command.Text), 6)) then
  1128. local tool = game.ReplicatedStorage["Place Mine"]:Clone()
  1129. tool.Parent = game.Players.LocalPlayer.Backpack
  1130. elseif burg:match(string.sub(tostring(Command.Text), 6)) then
  1131. local tool = game.ReplicatedStorage["Burger"]:Clone()
  1132. tool.Parent = game.Players.LocalPlayer.Backpack
  1133. elseif mbag:match(string.sub(tostring(Command.Text), 6)) then
  1134. local tool = game.ReplicatedStorage["Moneybag"]:Clone()
  1135. tool.Parent = game.Players.LocalPlayer.Backpack
  1136. elseif treer:match(string.sub(tostring(Command.Text), 6)) then
  1137. local tool = game.ReplicatedStorage["Place Tree"]:Clone()
  1138. tool.Parent = game.Players.LocalPlayer.Backpack
  1139. elseif telep:match(string.sub(tostring(Command.Text), 6)) then
  1140. local tool = game.ReplicatedStorage["Teleport to Plate"]:Clone()
  1141. tool.Parent = game.Players.LocalPlayer.Backpack
  1142. elseif plate:match(string.sub(tostring(Command.Text), 6)) then
  1143. local tool = game.ReplicatedStorage["Place Plate"]:Clone()
  1144. tool.Parent = game.Players.LocalPlayer.Backpack
  1145. end
  1146. end
  1147. if string.sub(tostring(Command.Text), 1, 6) == "round/" then
  1148. if mine:match(string.sub(tostring(Command.Text), 7)) then
  1149. local xx = math.random(-111.6, 111.6)
  1150. local zz = math.random(-108.2, 108.2)
  1151. local yy = math.random(-20.5,85.5)
  1152. for i = 1,50 do
  1153. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(xx,yy,zz), "D=9Vb7aMuZt!8aMH")
  1154. xx = math.random(-111.6, 111.6)
  1155. zz = math.random(-108.2, 108.2)
  1156. yy = math.random(-20.5,85.5)
  1157. end
  1158. elseif mega:match(string.sub(tostring(Command.Text), 7)) then
  1159. local xx = math.random(-111.6, 111.6)
  1160. local zz = math.random(-108.2, 108.2)
  1161. local yy = math.random(-20.5,85.5)
  1162. for i = 1,10 do
  1163. for i = 1,100 do
  1164. workspace.RemoteEvents.PlaceMineEvent:FireServer(Vector3.new(xx,yy,zz), "D=9Vb7aMuZt!8aMH")
  1165. xx = math.random(-111.6, 111.6)
  1166. zz = math.random(-108.2, 108.2)
  1167. yy = math.random(-20.5,85.5)
  1168. end
  1169. end
  1170. elseif bana:match(string.sub(tostring(Command.Text), 7)) then
  1171. local xx = math.random(-111.6, 111.6)
  1172. local zz = math.random(-108.2, 108.2)
  1173. for i = 1,25 do
  1174. for i = 1,100 do
  1175. workspace.RemoteEvents.BananaEvent:FireServer(Vector3.new(xx,103.5,zz), "D=9Vb7aMuZt!8aMH")
  1176. xx = math.random(-111.6, 111.6)
  1177. zz = math.random(-108.2, 108.2)
  1178. wait()
  1179. end
  1180. wait(2)
  1181. end
  1182. elseif pla:match(string.sub(tostring(Command.Text), 7)) then
  1183. local xx = math.random(-111.6, 111.6)
  1184. local zz = math.random(-108.2, 108.2)
  1185. for i = 1,10 do
  1186. for i = 1,5 do
  1187. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(xx,yy,zz), "D=9Vb7aMuZt!8aMH")
  1188. xx = math.random(-111.6, 111.6)
  1189. zz = math.random(-108.2, 108.2)
  1190. yy = math.random(-20.5,45.5)
  1191. wait()
  1192. end
  1193. wait(3.5)
  1194. end
  1195. elseif mon:match(string.sub(tostring(Command.Text), 7)) then
  1196. local xx = math.random(-111.6, 111.6)
  1197. local zz = math.random(-108.2, 108.2)
  1198. for i = 1,25 do
  1199. for i = 1,75 do
  1200. workspace.RemoteEvents.MoneybagEvent:FireServer(CFrame.new(Vector3.new(xx,103.5,zz)), "D=9Vb7aMuZt!8aMH")
  1201. xx = math.random(-111.6, 111.6)
  1202. zz = math.random(-108.2, 108.2)
  1203. wait(.1)
  1204. end
  1205. wait(2)
  1206. end
  1207. elseif size:match(string.sub(tostring(Command.Text), 7)) then
  1208. for i,v in pairs(game.Players:GetChildren()) do
  1209. plat = math.random(-10,15)
  1210. if v.gamestats.Plate then
  1211. game.Workspace.RemoteEvents.ChangePlateSize:FireServer(v.gamestats.Plate.Value, plat, "D=9Vb7aMuZt!8aMH")
  1212. end
  1213. end
  1214. elseif yata:match(string.sub(tostring(Command.Text),7)) then
  1215. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(111.6,10,-108.2), "D=9Vb7aMuZt!8aMH")
  1216. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(111.6,10,108.2), "D=9Vb7aMuZt!8aMH")
  1217. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(-111.6,10,108.2), "D=9Vb7aMuZt!8aMH")
  1218. workspace.RemoteEvents.PlacePlateEvent:FireServer(Vector3.new(-111.6,10,-108.2), "D=9Vb7aMuZt!8aMH")
  1219. for i,v in pairs (workspace.Plates:GetChildren()) do
  1220. if v.Plate.Position.Y == 10 then
  1221. workspace.RemoteEvents.AddSound:FireServer("rbxassetid://919270364", v, "D=9Vb7aMuZt!8aMH")
  1222. end
  1223. end
  1224. utsuho()
  1225. end
  1226. end
  1227. if string.sub(tostring(Command.Text), 1, 7) == "delete/" then
  1228. if fire:match(string.sub(tostring(Command.Text), 8)) then
  1229. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1230. if v.Name == "FirePart" then
  1231. v:Destroy()
  1232. end
  1233. end
  1234. elseif black:match(string.sub(tostring(Command.Text), 8)) then
  1235. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1236. if v.Name == "Blackhole" then
  1237. v:Destroy()
  1238. end
  1239. end
  1240. elseif tor:match(string.sub(tostring(Command.Text), 8)) then
  1241. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1242. if v.Name == "Tornado" then
  1243. v:Destroy()
  1244. end
  1245. end
  1246. elseif min:match(string.sub(tostring(Command.Text), 8)) then
  1247. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1248. if v.Name == "Landmine" then
  1249. v:Destroy()
  1250. end
  1251. end
  1252. elseif vol:match(string.sub(tostring(Command.Text), 8)) then
  1253. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1254. if v.Name == "Part" and v.BrickColor == BrickColor.new("Crimson") then
  1255. v:Destroy()
  1256. end
  1257. end
  1258. elseif dis:match(string.sub(tostring(Command.Text), 8)) then
  1259. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1260. if v.Name == "DiscoBallOfDoom" then
  1261. v:Destroy()
  1262. end
  1263. end
  1264. elseif nuk:match(string.sub(tostring(Command.Text), 8)) then
  1265. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1266. if v.Name == "Nuke" or v.Name == "NukeExplosion" then
  1267. v:Destroy()
  1268. end
  1269. end
  1270. elseif mun:match(string.sub(tostring(Command.Text), 8)) then
  1271. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1272. if v.Name == "Moon" then
  1273. v:Destroy()
  1274. end
  1275. end
  1276. elseif ls:match(string.sub(tostring(Command.Text), 8)) then
  1277. for i,v in pairs (workspace.Plates:GetChildren()) do
  1278. for i,b in pairs (v:GetChildren()) do
  1279. if b.Name == "LavaSpinner" then
  1280. b:Destroy()
  1281. end
  1282. end
  1283. end
  1284. for i,v in pairs (workspace.ArenaEvents:GetChildren()) do
  1285. if v.Name == "GiantLavaSpinner" then
  1286. v:Destroy()
  1287. end
  1288. end
  1289. elseif bmb:match(string.sub(tostring(Command.Text), 8)) then
  1290. for i,v in pairs (workspace.Plates:GetChildren()) do
  1291. for i,b in pairs (v:GetChildren()) do
  1292. if b.Name == "TimeBomb" then
  1293. b:Destroy()
  1294. end
  1295. end
  1296. end
  1297. elseif pri:match(string.sub(tostring(Command.Text), 8)) then
  1298. for i,v in pairs (workspace.Plates:GetChildren()) do
  1299. for i,b in pairs (v:GetChildren()) do
  1300. if b.Name == "Cage" then
  1301. b:Destroy()
  1302. end
  1303. end
  1304. end
  1305. elseif spk:match(string.sub(tostring(Command.Text), 8)) then
  1306. for i,v in pairs (workspace.Plates:GetChildren()) do
  1307. for i,b in pairs (v:GetChildren()) do
  1308. if b.Name == "Spike" then
  1309. b:Destroy()
  1310. end
  1311. end
  1312. end
  1313. elseif zomb:match(string.sub(tostring(Command.Text), 8)) then
  1314. for i,v in pairs (workspace.Plates:GetChildren()) do
  1315. for i,b in pairs (v:GetChildren()) do
  1316. if b.Name == "Zombie" then
  1317. b:Destroy()
  1318. end
  1319. end
  1320. end
  1321. elseif bmbc:match(string.sub(tostring(Command.Text), 8)) then
  1322. for i,v in pairs (workspace.Plates:GetChildren()) do
  1323. for i,b in pairs (v:GetChildren()) do
  1324. if b.Name == "BombCloud" then
  1325. b:Destroy()
  1326. end
  1327. end
  1328. end
  1329. elseif fen:match(string.sub(tostring(Command.Text), 8)) then
  1330. for i,v in pairs (workspace.Plates:GetChildren()) do
  1331. for i,b in pairs (v:GetChildren()) do
  1332. if b.Name == "ElectricFence" then
  1333. b:Destroy()
  1334. end
  1335. end
  1336. end
  1337. elseif cac:match(string.sub(tostring(Command.Text), 8)) then
  1338. for i,v in pairs (workspace.Plates:GetChildren()) do
  1339. for i,b in pairs (v:GetChildren()) do
  1340. if b.Name == "Cactus" then
  1341. b:Destroy()
  1342. end
  1343. end
  1344. end
  1345. elseif wal:match(string.sub(tostring(Command.Text), 8)) then
  1346. for i,v in pairs (workspace.Plates:GetChildren()) do
  1347. for i,b in pairs (v:GetChildren()) do
  1348. if b.Name == "Wall" then
  1349. b:Destroy()
  1350. end
  1351. end
  1352. end
  1353. elseif pbmb:match(string.sub(tostring(Command.Text), 8)) then
  1354. game.Players.LocalPlayer.Character.PlayerTimeBomb:Destroy()
  1355. end
  1356. elseif frz:match(string.sub(tostring(Command.Text), 8)) then
  1357. for i,v in pairs (game.Players.LocalPlayer.Character:GetChildren()) do
  1358. if v.Name == "Part" then
  1359. v:Destroy()
  1360. end
  1361. end
  1362. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  1363. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  1364. elseif marbl:match(string.sub(tostring(Command.Text), 8)) then
  1365. for i,v in pairs (game.Players.LocalPlayer.Character:GetChildren()) do
  1366. if v.Name == "Marble" then
  1367. v:Destroy()
  1368. end
  1369. end
  1370. end
  1371.  
  1372. CommandBtn()
  1373. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement