Upscalefanatic3

Mad Paintball 2 V1.3 Gui

Sep 13th, 2017
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Mp2Gui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local Close = Instance.new("TextButton")
  7. local Fegod = Instance.new("TextButton")
  8. local _4slots = Instance.new("TextButton")
  9. local InRubies = Instance.new("TextButton")
  10. local Open = Instance.new("Frame")
  11. local Open2 = Instance.new("TextButton")
  12. local StarterGui = game:GetService('StarterGui')
  13.  
  14. -- Properties
  15.  
  16. Mp2Gui.Name = "Mp2 Gui"
  17. Mp2Gui.Parent = game.CoreGui
  18.  
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = Mp2Gui
  22. Main.BackgroundColor3 = Color3.new(0.329412, 0.709804, 1)
  23. Main.BackgroundTransparency = 0.34999999403954
  24. Main.Position = UDim2.new(0.0311890841, 0, 0.471786827, 0)
  25. Main.Size = UDim2.new(0, 449, 0, 217)
  26.  
  27.  
  28. TextLabel.Parent = Main
  29. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  30. TextLabel.BackgroundTransparency = 1
  31. TextLabel.Position = UDim2.new(0.301496655, 0, 0.0956898928, 0)
  32. TextLabel.Size = UDim2.new(0, 204, 0, 57)
  33. TextLabel.Font = Enum.Font.Code
  34. TextLabel.FontSize = Enum.FontSize.Size48
  35. TextLabel.Text = "Mad Paintball 2"
  36. TextLabel.TextColor3 = Color3.new(0.109804, 0.941177, 0.0941177)
  37. TextLabel.TextSize = 40
  38.  
  39.  
  40. Close.Name = "Close"
  41. Close.Parent = Main
  42. Close.Active = false
  43. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  44. Close.BackgroundTransparency = 0.75
  45. Close.Position = UDim2.new(0, 0, -8.38190317e-09, 0)
  46. Close.Size = UDim2.new(0, 40, 0, 38)
  47. Close.Font = Enum.Font.SourceSans
  48. Close.FontSize = Enum.FontSize.Size14
  49. Close.Text = "Close"
  50. Close.TextSize = 14
  51.  
  52.  
  53. Fegod.Name = "Fegod"
  54. Fegod.Parent = Main
  55. Fegod.Active = false
  56. Fegod.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Fegod.BackgroundTransparency = 0.75
  58. Fegod.Position = UDim2.new(0.0334075727, 0, 0.49308756, 0)
  59. Fegod.Size = UDim2.new(0, 86, 0, 39)
  60. Fegod.Font = Enum.Font.SourceSans
  61. Fegod.FontSize = Enum.FontSize.Size14
  62. Fegod.Text = "FE GOD"
  63. Fegod.TextSize = 14
  64.  
  65.  
  66. _4slots.Name = "4 slots"
  67. _4slots.Parent = Main
  68. _4slots.Active = false
  69. _4slots.BackgroundColor3 = Color3.new(1, 1, 1)
  70. _4slots.BackgroundTransparency = 0.75
  71. _4slots.Position = UDim2.new(0.404231608, 0, 0.49308756, 0)
  72. _4slots.Size = UDim2.new(0, 86, 0, 39)
  73. _4slots.Font = Enum.Font.SourceSans
  74. _4slots.FontSize = Enum.FontSize.Size14
  75. _4slots.Text = "4 SLOTS"
  76. _4slots.TextSize = 14
  77.  
  78.  
  79. InRubies.Name = "InRubies"
  80. InRubies.Parent = Main
  81. InRubies.Active = false
  82. InRubies.BackgroundColor3 = Color3.new(1, 1, 1)
  83. InRubies.BackgroundTransparency = 0.75
  84. InRubies.Position = UDim2.new(0.775055707, 0, 0.49308756, 0)
  85. InRubies.Size = UDim2.new(0, 86, 0, 39)
  86. InRubies.Font = Enum.Font.SourceSans
  87. InRubies.FontSize = Enum.FontSize.Size14
  88. InRubies.Text = "Infinite Rubies"
  89. InRubies.TextSize = 14
  90.  
  91.  
  92.  
  93.  
  94. InRubies.MouseButton1Down:connect(function()
  95. game.ReplicatedStorage.GameMain.Select:FireServer("BuySlot", {"2Slots1Day", -2e99})
  96. end)
  97.  
  98. _4slots.MouseButton1Down:connect(function()
  99. game.ReplicatedStorage.GameMain.Select:FireServer("BuySlot", {"4Slots1Day", -1000})
  100. end)
  101. Close.MouseButton1Down:connect(function()
  102. Mp2Gui:ClearAllChildren()
  103. Mp2Gui:remove()
  104. print("Goodbye "..game.Players.LocalPlayer.Name)
  105. end)
  106.  
  107.  
  108.  
  109. Fegod.MouseButtone1Down:connect(function()
  110. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  111. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  112. l.Parent = game.Players.LocalPlayer.Character
  113. l.Name = "Humanoid"
  114. wait(0.1)
  115. game.Players.LocalPlayer.Character["1"]:Destroy()
  116. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  117. game.Players.LocalPlayer.Character.Animate.Disabled = true
  118. wait(0.1)
  119. game.Players.LocalPlayer.Character.Animate.Disabled = false
  120. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  121. end)
Add Comment
Please, Sign In to add comment