Advertisement
ScriptsX

Roblox Mad Paintball 2 Bighead Script

Jan 14th, 2019
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. -- MadPaintball 2 Bighead GUI Created by SphynxGamer Please Don't Edit Below
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local Test = Instance.new("TextButton")
  7.  
  8. -- Frame and Functions
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.Active = true
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.Draggable = true
  16. Frame.Position = UDim2.new(0, 44, 0.529062867, 0)
  17. Frame.Size = UDim2.new(0, 378, 0.170818508, -28)
  18. Frame.Style = Enum.FrameStyle.ChatGreen
  19.  
  20. TextLabel.Parent = Frame
  21. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextLabel.Draggable = true
  23. TextLabel.Position = UDim2.new(0, 0, -0.0393013097, 0)
  24. TextLabel.Size = UDim2.new(0, 352, 0.0393013097, 51)
  25. TextLabel.Font = Enum.Font.Fantasy
  26. TextLabel.FontSize = Enum.FontSize.Size14
  27. TextLabel.Text = "MP2 GUI By Sphynx"
  28. TextLabel.TextScaled = true
  29. TextLabel.TextSize = 13
  30. TextLabel.TextWrapped = true
  31.  
  32. Test.Name = "Test"
  33. Test.Parent = Frame
  34. Test.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Test.Position = UDim2.new(0, 63, 0, 66)
  36. Test.Size = UDim2.new(0, 226, 0, 25)
  37. Test.Font = Enum.Font.SourceSansItalic
  38. Test.FontSize = Enum.FontSize.Size32
  39. Test.Text = "Load"
  40. Test.TextSize = 30
  41. Test.MouseButton1Click:connect(function()
  42. _G.HitBoxSize = Vector3.new(300, 300, 300)
  43.  
  44. game:service('RunService').RenderStepped:connect(function()
  45. for i, v in pairs(game.Workspace.Camera.GameElementContainer.HITBOXES:GetDescendants()) do
  46. if v:IsA('Part') and v.Size ~= _G.HitBoxSize and v.Transparency ~= 0 and v.Name == 'Head' then v.Size = _G.HitBoxSize
  47. v.Transparency = 0
  48. end
  49. end
  50. end)
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement