Advertisement
Guest User

h

a guest
Feb 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.23 KB | None | 0 0
  1. Other Note - Might update this soon and add some more commands
  2.  
  3. Yet another note - RelentlessRaptor found a new remote, and this one cannot kick/ban so a lot of commands have been removed, everything else works fine
  4.  
  5. Update - This now doesn't use getobjects, meaning it will work with more exploits now + Made the kill command faster
  6.  
  7. Game - https://www.roblox.com/games/192800/Work-at-a-Pizza-Place
  8. Back again with another FE release, but today it's for a Filtering Enabled game with an average 3k players (cool right). Anyways this has many features and you execute the commands through a hot command bar that I made. Here are the credits
  9.  
  10. =Credits=
  11. Me - Making this
  12.  
  13. RelentlessRaptor - Finding the delete remote + takeover command (I was too lazy to make that command lol)
  14.  
  15. =Commands=
  16. DestroyWorkspace - Deletes everything from the workspace
  17. Cmds - Outputs all commands to the Developer Console (f9)
  18. Cripple [Player] - Removes the selected players HumanoidRootPart
  19. FuckPizza - Destroys all pizza!
  20. Kill [Player] - Deletes the selected players head
  21. Ruin - Destroys all descendants of the game
  22. Btools - Gives you a delete tool (this replicates)
  23. End - Destroys the command bar
  24. =Info=
  25.  
  26. DoEs ThIs ByPaSs FiLtErINg EnAbLed - No it does not, the game has a remote for deleting items (basically you can delete anything and it will replicate)
  27.  
  28. Partial name matching - This has partial name matching, example if you wanted to kill a player called "Steve" you can go "kill st" and it would kill him (poor steve)
  29.  
  30. All + Others + Random - This supports those 3, example you can go "ban all" and it would ban all players (including you ;-;)
  31.  
  32. =Command Bar Image=
  33. [Image: mi9gmEJ.png]
  34.  
  35. =Script=
  36. Code:
  37. -- Objects
  38.  
  39. local ScreenGui = Instance.new("ScreenGui")
  40. local Drag = Instance.new("Frame")
  41. local CommandBar = Instance.new("TextBox")
  42. local Run = Instance.new("TextButton")
  43. local Text = Instance.new("TextLabel")
  44.  
  45. -- Properties
  46.  
  47. ScreenGui.Parent = game.StarterGui
  48.  
  49. Drag.Name = "Drag"
  50. Drag.Parent = ScreenGui
  51. Drag.Active = true
  52. Drag.BackgroundColor3 = Color3.new(1, 1, 1)
  53. Drag.BackgroundTransparency = 0.5
  54. Drag.BorderSizePixel = 0
  55. Drag.Draggable = true
  56. Drag.Position = UDim2.new(0.347222149, 0, 0.881401598, 0)
  57. Drag.Size = UDim2.new(0, 243, 0, 15)
  58.  
  59. CommandBar.Name = "CommandBar"
  60. CommandBar.Parent = Drag
  61. CommandBar.BackgroundColor3 = Color3.new(0, 0, 0)
  62. CommandBar.BackgroundTransparency = 0.5
  63. CommandBar.BorderSizePixel = 0
  64. CommandBar.Position = UDim2.new(0, 0, 1, 0)
  65. CommandBar.Size = UDim2.new(0, 203, 0, 29)
  66. CommandBar.Font = Enum.Font.SourceSans
  67. CommandBar.FontSize = Enum.FontSize.Size14
  68. CommandBar.Text = "Command Here"
  69. CommandBar.TextColor3 = Color3.new(1, 1, 1)
  70. CommandBar.TextSize = 14
  71.  
  72. Run.Name = "Run"
  73. Run.Parent = Drag
  74. Run.BackgroundColor3 = Color3.new(1, 0, 0)
  75. Run.BackgroundTransparency = 0.5
  76. Run.BorderSizePixel = 0
  77. Run.Position = UDim2.new(0.835390925, 0, 1, 0)
  78. Run.Size = UDim2.new(0, 40, 0, 29)
  79. Run.Font = Enum.Font.SourceSans
  80. Run.FontSize = Enum.FontSize.Size14
  81. Run.Text = "Run"
  82. Run.TextColor3 = Color3.new(1, 1, 1)
  83. Run.TextSize = 14
  84.  
  85. Text.Name = "Text"
  86. Text.Parent = Drag
  87. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  88. Text.BackgroundTransparency = 1
  89. Text.Position = UDim2.new(0.485596687, 0, 0, 0)
  90. Text.Size = UDim2.new(0, 7, 0, 15)
  91. Text.Font = Enum.Font.SourceSans
  92. Text.FontSize = Enum.FontSize.Size14
  93. Text.Text = "Drag Here"
  94. Text.TextSize = 14
  95.  
  96. local Gui = ScreenGui
  97. Gui.Parent = game.CoreGui
  98.  
  99. local Banned = {}
  100. local Slock = false
  101. local destroy = workspace.GameService.CloseBox
  102. local Players = game:GetService('Players')
  103. local LPlayer = Players.LocalPlayer
  104.  
  105. local Commands = {
  106. 'destroyworkspace',
  107. 'cmds',
  108. 'cripple Player',
  109. 'fuckpizza',
  110. 'kill Player',
  111. 'ruin',
  112. 'btools',
  113. 'end',
  114. 'More To Be Added Soon!',
  115. }
  116.  
  117. function Get(Arg)
  118. local Found = {}
  119. if Arg:lower() == 'all' then
  120. for i,v in pairs(Players:GetPlayers()) do
  121. table.insert(Found, v.Name)
  122. end
  123. elseif Arg:lower() == 'others' then
  124. for i,v in pairs(Players:GetPlayers()) do
  125. if v.Name ~= LPlayer.Name then
  126. table.insert(Found, v.Name)
  127. end
  128. end
  129. elseif Arg:lower() == 'random' then
  130. table.insert(Found,Players:GetPlayers()[math.random(#Players:GetPlayers())].Name)
  131. else
  132. for i,v in pairs(Players:GetPlayers()) do
  133. if v.Name:lower():sub(1, #Arg) == Arg:lower() then
  134. table.insert(Found, v.Name)
  135. end
  136. end
  137. end
  138. return Found
  139. end
  140.  
  141. local msg = Gui.Drag.CommandBar
  142.  
  143. Gui.Drag.Run.MouseButton1Down:connect(function()
  144. if msg.Text:lower() == 'destroyworkspace' then
  145. for i,v in pairs(workspace:GetDescendants()) do
  146. pcall(function()
  147. if v.Name ~= 'GameService' or v.Parent.Name ~= 'GameService' then
  148. destroy:FireServer(v,"call")
  149. end
  150. end)
  151. end
  152. elseif msg.Text:lower() == 'cmds' then
  153. Gui.Drag.CommandBar.Text = 'Press f9 to view commands'
  154. print(table.concat(Commands, ' | '))
  155. elseif msg.Text:lower():sub(1,8) == 'cripple ' then
  156. for i,v in pairs(Get(msg.Text:lower():sub(9))) do
  157. destroy:FireServer(Players:FindFirstChild(v).Character.HumanoidRootPart,"call")
  158. end
  159. elseif msg.Text:lower():sub(1,8) == 'disable ' then
  160. for i,v in pairs(Get(msg.Text:lower():sub(9))) do
  161. destroy:FireServer(Players:FindFirstChild(v).Character.Humanoid,"call")
  162. end
  163. elseif msg.Text:lower() == 'fuckpizza' then
  164. for i,v in pairs(workspace:GetDescendants()) do
  165. if v.Name == 'Dough' or v.Parent.Name == 'Ingredients' then
  166. destroy:FireServer(v,"call")
  167. end
  168. end
  169. elseif msg.Text:lower():sub(1,5) == 'kill ' then
  170. for i,v in pairs(Get(msg.text:lower():sub(6))) do
  171. destroy:FireServer(Players:FindFirstChild(v).Character.Head,"call")
  172. end
  173. Gui.Drag.CommandBar.Text = 'This can take a while'
  174. elseif msg.Text:lower() == 'ruin' then
  175. for i,v in pairs(game:GetDescendants()) do
  176. if v.Parent.Name ~= 'Players' then
  177. pcall(function()
  178. destroy:FireServer(v,"call")
  179. end)
  180. end
  181. end
  182. elseif msg.Text:lower() == 'btools' then
  183. for i,v in pairs(workspace:GetDescendants()) do
  184. pcall(function()
  185. v.Locked = false
  186. end)
  187. end
  188. local function OnClick()
  189. pcall(function()
  190. local target = LPlayer:GetMouse().Target
  191. destroy:FireServer(target,"call")
  192. print('Destroyed ' .. target.Name)
  193. end)
  194. end
  195. local b = Instance.new('Tool', LPlayer.Backpack)
  196. b.RequiresHandle = false
  197. b.Activated:connect(OnClick)
  198. elseif msg.Text:lower() == 'end' then
  199. Gui:Destroy()
  200. end
  201. end)
  202.  
  203. If you want you can leave a vouch, it means a lot you know :)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement