Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- MadPaintball 2 Bighead GUI Created by SphynxGamer Please Don't Edit Below
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local Test = Instance.new("TextButton")
- -- Frame and Functions
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = ScreenGui
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.Draggable = true
- Frame.Position = UDim2.new(0, 44, 0.529062867, 0)
- Frame.Size = UDim2.new(0, 378, 0.170818508, -28)
- Frame.Style = Enum.FrameStyle.ChatGreen
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.Draggable = true
- TextLabel.Position = UDim2.new(0, 0, -0.0393013097, 0)
- TextLabel.Size = UDim2.new(0, 352, 0.0393013097, 51)
- TextLabel.Font = Enum.Font.Fantasy
- TextLabel.FontSize = Enum.FontSize.Size14
- TextLabel.Text = "MP2 GUI By Sphynx"
- TextLabel.TextScaled = true
- TextLabel.TextSize = 13
- TextLabel.TextWrapped = true
- Test.Name = "Test"
- Test.Parent = Frame
- Test.BackgroundColor3 = Color3.new(1, 1, 1)
- Test.Position = UDim2.new(0, 63, 0, 66)
- Test.Size = UDim2.new(0, 226, 0, 25)
- Test.Font = Enum.Font.SourceSansItalic
- Test.FontSize = Enum.FontSize.Size32
- Test.Text = "Load"
- Test.TextSize = 30
- Test.MouseButton1Click:connect(function()
- _G.HitBoxSize = Vector3.new(300, 300, 300)
- game:service('RunService').RenderStepped:connect(function()
- for i, v in pairs(game.Workspace.Camera.GameElementContainer.HITBOXES:GetDescendants()) do
- if v:IsA('Part') and v.Size ~= _G.HitBoxSize and v.Transparency ~= 0 and v.Name == 'Head' then v.Size = _G.HitBoxSize
- v.Transparency = 0
- end
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement