Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local FEBtoolsGUI = Instance.new("ScreenGui")
- local Opener = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- local BtoolsGUI = Instance.new("Frame")
- local TopThing = Instance.new("Frame")
- local Azureez = Instance.new("TextLabel")
- local Btool = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- -- Properties
- FEBtoolsGUI.Name = "FEBtoolsGUI"
- FEBtoolsGUI.Parent = game.CoreGui
- Opener.Name = "Opener"
- Opener.Parent = FEBtoolsGUI
- Opener.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Opener.Position = UDim2.new(0, 0, 0.762913883, 0)
- Opener.Size = UDim2.new(0, 260, 0, 86)
- Open.Name = "Open"
- Open.Parent = Opener
- Open.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- Open.BorderSizePixel = 3
- Open.Size = UDim2.new(0, 260, 0, 86)
- Open.Font = Enum.Font.SciFi
- Open.Text = "Open"
- Open.TextColor3 = Color3.new(1, 1, 1)
- Open.TextSize = 21
- BtoolsGUI.Name = "BtoolsGUI"
- BtoolsGUI.Parent = FEBtoolsGUI
- BtoolsGUI.Active = true
- BtoolsGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- BtoolsGUI.Draggable = true
- BtoolsGUI.Position = UDim2.new(0.765919268, 0, 0, 0)
- BtoolsGUI.Size = UDim2.new(0, 261, 0, 444)
- BtoolsGUI.Visible = false
- TopThing.Name = "TopThing"
- TopThing.Parent = BtoolsGUI
- TopThing.BackgroundColor3 = Color3.new(0, 0, 0)
- TopThing.Size = UDim2.new(0, 261, 0, 82)
- Azureez.Name = "ackaaaaa"
- Azureez.Parent = BtoolsGUI
- Azureez.BackgroundColor3 = Color3.new(1, 1, 1)
- Azureez.BackgroundTransparency = 999999995904
- Azureez.Size = UDim2.new(0, 200, 0, 82)
- Azureez.Font = Enum.Font.SciFi
- Azureez.Text = "Made by Azurez"
- Azureez.TextColor3 = Color3.new(1, 1, 1)
- Azureez.TextSize = 14
- Btool.Name = "Btool"
- Btool.Parent = BtoolsGUI
- Btool.BackgroundColor3 = Color3.new(0, 0, 0)
- Btool.Position = UDim2.new(0.116858236, 0, 0.369098693, 0)
- Btool.Size = UDim2.new(0, 200, 0, 50)
- Btool.Font = Enum.Font.SciFi
- Btool.Text = "FE Btools *Some Games!*"
- Btool.TextColor3 = Color3.new(1, 1, 1)
- Btool.TextSize = 14
- TextLabel.Parent = BtoolsGUI
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 9999999827968
- TextLabel.Position = UDim2.new(0.118773945, 0, 0.5, 0)
- TextLabel.Size = UDim2.new(0, 200, 0, 130)
- TextLabel.Font = Enum.Font.SciFi
- TextLabel.Text = "More Soon!"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 27
- Close.Name = "Close"
- Close.Parent = BtoolsGUI
- Close.BackgroundColor3 = Color3.new(1, 1, 1)
- Close.BackgroundTransparency = 999999995904
- Close.Position = UDim2.new(0.743295014, 0, -0.0171673764, 0)
- Close.Size = UDim2.new(0, 94, 0, 50)
- Close.Font = Enum.Font.SciFi
- Close.Text = "X"
- Close.TextColor3 = Color3.new(1, 1, 1)
- Close.TextSize = 25
- Open.MouseButton1Down:connect(function()
- game.CoreGui.FEBtoolsGUI.Opener.Visible = false
- game.CoreGui.FEBtoolsGUI.BtoolsGUI.Visible = true
- end)
- Close.MouseButton1Down:connect(function()
- game.CoreGui.FEBtoolsGUI.Opener.Visible = true
- game.CoreGui.FEBtoolsGUI.BtoolsGUI.Visible = false
- end)
- Btool.MouseButton1Down:connect(function()
- if workspace:FindFirstChild'GiveSystem' then
- if workspace.GiveSystem:FindFirstChild'GiveItem' then
- maind = workspace.GiveSystem.GiveItem
- end
- end
- tool = Instance.new'Tool'
- me = game:GetService'Players'.LocalPlayer
- tool.RequiresHandle = false
- tool.TextureId = 'http://www.roblox.com/asset/?id=12223874'
- tool.Name = 'Delete'
- tool.Parent = me.Backpack
- buttonf = nil
- tool.Equipped:connect(function()
- local m = game:GetService'Players'.LocalPlayer:GetMouse()
- m.Icon = 'rbxasset://textures/HammerCursor.png'
- buttonf = m.Button1Down:connect(function()
- if m.Target == nil then return end
- local ob = m.Target
- if ob:IsA'BasePart' or ob:IsA'WedgePart' then
- if ob:IsDescendantOf(me.Character) then return end
- m.Icon = 'rbxasset://textures/HammerOverCursor.png'
- local ex = Instance.new'Explosion'
- ex.BlastRadius = 0
- ex.Position = ob.Position
- ex.Parent = workspace
- maind:FireServer(workspace, ob)
- wait(0.3)
- m.Icon = 'rbxasset://textures/HammerCursor.png'
- end
- end)
- end)
- tool.Unequipped:connect(function()
- if buttonf ~= nil then
- buttonf:Disconnect()
- buttonf = nil
- end
- local m = game:GetService'Players'.LocalPlayer:GetMouse()
- m.Icon = ''
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement