Advertisement
CroClex

first gui ever!

Oct 1st, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextLabel_2 = Instance.new("TextLabel")
  8. local btools = Instance.new("TextButton")
  9. local M9 = Instance.new("TextButton")
  10. local Allguns = Instance.new("TextButton")
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Main.Name = "Main"
  15. Main.Parent = ScreenGui
  16. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  17. Main.Position = UDim2.new(-0.00646725949, 0, 0.25418061, 0)
  18. Main.Size = UDim2.new(0, 252, 0, 440)
  19. Main.Draggable = true
  20.  
  21. TextLabel.Parent = Main
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.Size = UDim2.new(0, 252, 0, 50)
  24. TextLabel.Font = Enum.Font.SourceSans
  25. TextLabel.Text = "By TypicalBlox#6122"
  26. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  27. TextLabel.TextSize = 14
  28.  
  29. TextLabel_2.Parent = Main
  30. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  31. TextLabel_2.Position = UDim2.new(-0.0317460336, 0, 0.886363626, 0)
  32. TextLabel_2.Size = UDim2.new(0, 260, 0, 50)
  33. TextLabel_2.Font = Enum.Font.SourceSans
  34. TextLabel_2.Text = "By TypicalBlox#6122"
  35. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  36. TextLabel_2.TextSize = 14
  37.  
  38. btools.Name = "btools"
  39. btools.Parent = Main
  40. btools.BackgroundColor3 = Color3.new(1, 1, 1)
  41. btools.Position = UDim2.new(0.0317460336, 0, 0.172727272, 0)
  42. btools.Size = UDim2.new(0, 244, 0, 50)
  43. btools.Font = Enum.Font.SourceSans
  44. btools.Text = "Btools"
  45. btools.TextColor3 = Color3.new(0, 0, 0)
  46. btools.TextSize = 14
  47. btools.MouseButton1Down:connect(function()
  48. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  49. a.BinType = 2
  50. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  51. b.BinType = 3
  52. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  53. c.BinType = 4
  54. end)
  55.  
  56. M9.Name = "M9"
  57. M9.Parent = Main
  58. M9.BackgroundColor3 = Color3.new(1, 1, 1)
  59. M9.Position = UDim2.new(-0.055555556, 0, 0.411363631, 0)
  60. M9.Size = UDim2.new(0, 266, 0, 50)
  61. M9.Font = Enum.Font.SourceSans
  62. M9.Text = "fast M9 gun"
  63. M9.TextColor3 = Color3.new(0, 0, 0)
  64. M9.TextSize = 14
  65. M9.MouseButton1Down:connect(function()
  66. local player = game:GetService("Players").LocalPlayer
  67. local gun = player.Backpack:FindFirstChild("M9")
  68. local sM = require(gun:FindFirstChild("GunStates"))
  69. sM["Damage"] = 999
  70. sM["MaxAmmo"] = 9999991
  71. sM["StoredAmmo"] = 9999991
  72. sM["FireRate"] = 0.05
  73. sM["AmmoPerClip"] = 9999991
  74. sM["Range"] = 5000
  75. sM["ReloadTime"] = 0.05
  76. sM["Bullets"] = 10
  77. sM["AutoFire"] = true
  78. end)
  79.  
  80. Allguns.Name = "All guns"
  81. Allguns.Parent = Main
  82. Allguns.BackgroundColor3 = Color3.new(1, 1, 1)
  83. Allguns.Position = UDim2.new(-0.055555556, 0, 0.686363637, 0)
  84. Allguns.Size = UDim2.new(0, 266, 0, 50)
  85. Allguns.Font = Enum.Font.SourceSans
  86. Allguns.Text = "All guns"
  87. Allguns.TextColor3 = Color3.new(0, 0, 0)
  88. Allguns.TextSize = 14
  89. Allguns.MouseButton1Down:connect(function()
  90.  
  91. end)
  92. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement