Advertisement
advancedev

tabs

Jan 19th, 2015
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. player = game:GetService('advancedev')
  2.  
  3. Banlist=true
  4. Kicklist=true
  5. Clothes=true
  6.  
  7.  
  8. Part = Instance.new("Part")
  9. Part.CanCollide = false
  10. Part.Anchored = true
  11. Part.Locked = true
  12. Part.BrickColor = BrickColor.new"black"
  13. Part.Size = Vector3.new(0, 0, 0)
  14. Part.Name = "developer tabs"
  15. Part.Parent = game.Workspace;
  16.  
  17.  
  18. local Clothes = {}
  19.  
  20. for _,Item in pairs(game.Players:GetPlayers()) do
  21. if Item:IsA("CharacterMesh") or Item:IsA("Hat") or Item:IsA("Shirt") or Item:IsA("Pants") then
  22. table.insert(Item,Clothes:Clone())
  23. end
  24. end
  25.  
  26. local Banlist = {}
  27. for i,v in pairs(game.Players:GetPlayers()) do
  28. if v.Player:IsA("Character") then
  29. v:remove();
  30. end
  31. end
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38. SB = Instance.new("SelectionBox")
  39. SB.Parent = game.Workspace
  40. SB.Name = "SelectionBox"
  41.  
  42. BBG = Instance.new("BillboardGui")
  43. BBG.Parent = game.Workspace
  44. BBG.Name = "BillboardGui"
  45.  
  46. PL = Instance.new("PointLight")
  47. PL.Shadows = 0
  48. PL.Range = 8
  49. PL.Name = "PointLight"
  50. PL.Parent = game.Workspace
  51.  
  52.  
  53. cd = Instance.new("ClickDetector")
  54. cd.MouseHoverEnter:connect(function(plr)
  55. if plr ~= nil then
  56.  
  57. end
  58. end)
  59.  
  60.  
  61. Bet = ";"
  62.  
  63. Colours={
  64. BrickColor.Red();
  65. BrickColor.Black();
  66.  
  67. };
  68.  
  69.  
  70. tabmodel = Instance.new("Model", workspace)
  71. tabmodel.Name="developer Tabs"
  72.  
  73. function DestroyTabs()
  74.  
  75. tabmodel = {}
  76. tabmodel:Destroy()
  77. tabmodel:ClearAllChildren()
  78. tabmodel:remove()
  79.  
  80. end
  81.  
  82. function createtab(creating,the,tab)
  83. local tab = Instance.new("Part")
  84. tab.FormFactor="Custom"
  85. if player and player.Character and player.Character.Torso then
  86. tab.CFrame = player.Character.Torso
  87. end
  88. end
  89.  
  90. Instance.new("PointLight", tabmodel)
  91.  
  92. box = Instance.new("SelectionBox", tabmodel)
  93. box.Parent=game.Workspace;
  94. box.Name="SelectionBox";
  95.  
  96. bbg = Instance.new("BillboardGui", tabmodel)
  97. bbg.Size=UDim2.new(255, 255, 255)
  98. bbg.Name="BillboardGui"
  99. bbg.Parent=game.Workspace
  100.  
  101. text = Instance.new("TextLabel", tabmodel)
  102. text.BackgroundColor3=Color3.new(255, 255, 255)
  103. text.BackgroundTransparency=1;
  104. text.BorderColor3=Color3.new(255, 255, 255)
  105. text.Parent=game.Workspace
  106. text.Name="TextLabel"
  107.  
  108.  
  109.  
  110. cd = Instance.new("ClickDetector")
  111. cd.MouseHoverEnter:connect(function(plr)
  112. if plr ~= nil then
  113.  
  114. end
  115. end)
  116.  
  117. function ShowCommands()
  118. for i,v in pairs(game.Players:GetPlayer()) do
  119. end
  120. end
  121.  
  122. ShowCommands('This is a test . . .')
  123. ShowCommands('This is a test . .. ')
  124. ShowCommands('This was created by advancedev')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement