Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local a=Instance.new("ScreenGui")
- a.Parent=game.CoreGui
- local b=Instance.new("Frame")
- b.BackgroundTransparency=1
- b.Parent=a
- local c=Instance.new("TextButton")
- c.Active=true
- c.BackgroundColor3=Color3.new(0, 0, 255)
- c.BorderSizePixel=0
- c.Name="topbar"
- c.Position=UDim2.new(4.84556389,0,3.46589231,0)
- c.Selectable=true
- c.Size=UDim2.new(0,297,0,31)
- c.Style=Enum.ButtonStyle.Custom
- c.Font=Enum.Font.Legacy
- c.FontSize=Enum.FontSize.Size14
- c.Text=""
- c.Draggable=true
- c.Parent=b
- local d=Instance.new("Frame")
- d.BackgroundColor3=Color3.new(0, 0, 255)
- d.BackgroundTransparency=0.55000001192093
- d.BorderSizePixel=0
- d.Size=UDim2.new(0,297,0,160)
- d.Draggable=true
- d.Parent=c
- local e=Instance.new("TextButton")
- e.Active=true
- e.BackgroundColor3=Color3.new(0, 0, 255)
- e.Position=UDim2.new(0.0404040404,0,0.268750012,0)
- e.Selectable=true
- e.Size=UDim2.new(0,126,0,73)
- e.Style=Enum.ButtonStyle.Custom
- e.Font=Enum.Font.Highway
- e.FontSize=Enum.FontSize.Size32
- e.Text="DROP"e.TextColor3=Color3.new(1,1,1)
- e.TextStrokeColor3=Color3.new(0, 0, 255)
- e.TextStrokeTransparency=0
- e.Parent=d
- local f=Instance.new("TextButton")
- f.Active=true
- f.BackgroundColor3=Color3.new(0, 0, 255)
- f.Position=UDim2.new(0.537963867,0,0.268750012,0)
- f.Selectable=true
- f.Size=UDim2.new(0,126,0,73)
- f.Style=Enum.ButtonStyle.Custom
- f.Font=Enum.Font.Highway
- f.FontSize=Enum.FontSize.Size24
- f.Text="Hats = Blocks"
- f.TextColor3=Color3.new(1,1,1)
- f.TextStrokeColor3=Color3.new(0, 0, 255)
- f.TextStrokeTransparency=0
- f.TextWrapped=true
- f.Parent=d
- local g=Instance.new("TextLabel")
- g.BackgroundColor3=Color3.new(0, 0, 255)
- g.BorderSizePixel=0
- g.Position=UDim2.new(0,0,0.837499976,0)
- g.Size=UDim2.new(0,297,0,26)
- g.Font=Enum.Font.Highway
- g.FontSize = Enum.FontSize.Size18
- g.Text="This was made by I low/edited by oshawott"
- g.TextColor3=Color3.new(1,1,1)
- g.Parent=d
- local h=Instance.new("TextLabel")
- h.BackgroundColor3=Color3.new(0, 0, 255)
- h.BackgroundTransparency=1
- h.BorderSizePixel=0
- h.Size=UDim2.new(0,297,0,31)
- h.Font=Enum.Font.Highway
- h.FontSize=Enum.FontSize.Size18
- h.Text="FE Drop Hats"
- h.TextColor3=Color3.new(1,1,1)
- h.Parent=d
- local i=Instance.new("TextButton")i.Active=true
- i.BackgroundColor3=Color3.new(0, 0, 255)
- i.Position=UDim2.new(0,0,0.947432756,0)
- i.Selectable=true
- i.Size=UDim2.new(0,98,0,43)
- i.Style=Enum.ButtonStyle.Custom
- i.Font=Enum.Font.Highway
- i.FontSize=Enum.FontSize.Size14
- i.Text="Hide/Show"
- i.TextColor3=Color3.new(1,1,1)
- i.Parent=a
- function dropHats()
- local j=game.Players.LocalPlayer
- for k,l in pairs(j.Character:GetChildren())do
- if l:IsA'Accoutrement'then
- l.Parent=game.Workspace
- end
- end
- end
- function brickHats()
- local j=game.Players.LocalPlayer
- for k,l in pairs(j.Character:GetChildren())do
- if l:IsA'Accoutrement'then
- l.Handle.Mesh:Destroy()end
- end
- end
- e.MouseButton1Click:connect(function()
- dropHats()
- end)
- f.MouseButton1Click:connect(function()
- brickHats()
- end)
- i.MouseButton1Click:connect(function()
- if b.Visible==true then
- b.Visible=false
- elseif b.Visible==false then
- b.Visible=true
- end
- end)
- game:GetService("UserInputService").InputBegan:connect(function(inputObject, gameProcessedEvent)
- if not gameProcessedEvent then
- if inputObject.KeyCode == Enum.KeyCode.Equals then
- dropHats()
- end
- end
- end)
- game:GetService("UserInputService").InputBegan:connect(function(inputObject, gameProcessedEvent)
- if not gameProcessedEvent then
- if inputObject.KeyCode == Enum.KeyCode.Zero then
- brickHats()
- end
- end
- end)
Add Comment
Please, Sign In to add comment