Advertisement
MindOfPlayer

Modded_Guns Gui

Jun 14th, 2020
7,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.22 KB | None | 0 0
  1.  
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local modmain = Instance.new("Frame")
  4. local number = Instance.new("TextBox")
  5. local close = Instance.new("TextButton")
  6. local title = Instance.new("TextLabel")
  7. local firerate = Instance.new("TextButton")
  8. local bullets = Instance.new("TextButton")
  9. local reloadtime = Instance.new("TextButton")
  10. local ammo = Instance.new("TextButton")
  11. local on = Instance.new("TextButton")
  12. local off = Instance.new("TextButton")
  13. local autofire = Instance.new("TextLabel")
  14.  
  15. --Properties:
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18.  
  19. modmain.Name = "modmain"
  20. modmain.Parent = ScreenGui
  21. modmain.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  22. modmain.BorderColor3 = Color3.fromRGB(20, 20, 20)
  23. modmain.Position = UDim2.new(0.613879085, 0, 0.248611152, 0)
  24. modmain.Size = UDim2.new(0, 300, 0, 294)
  25. modmain.Visible = true
  26. modmain.Active = true
  27. modmain.Draggable = true
  28.  
  29. number.Name = "number"
  30. number.Parent = modmain
  31. number.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  32. number.BorderColor3 = Color3.fromRGB(20, 20, 20)
  33. number.Position = UDim2.new(0.160603434, 0, 0.0976894125, 0)
  34. number.Size = UDim2.new(0, 200, 0, 31)
  35. number.Font = Enum.Font.SourceSans
  36. number.PlaceholderText = ">Number<"
  37. number.Text = ""
  38. number.TextColor3 = Color3.fromRGB(255, 255, 255)
  39. number.TextScaled = true
  40. number.TextSize = 14.000
  41. number.TextWrapped = true
  42.  
  43. close.Name = "close"
  44. close.Parent = modmain
  45. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. close.BackgroundTransparency = 1.000
  47. close.Position = UDim2.new(0.82929337, 0, -0.000999927521, 0)
  48. close.Size = UDim2.new(0, 50, 0, 46)
  49. close.Font = Enum.Font.SourceSans
  50. close.Text = "_"
  51. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  52. close.TextScaled = true
  53. close.TextSize = 14.000
  54. close.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  55. close.TextWrapped = true
  56. close.MouseButton1Down:connect(function()
  57. modmain.Visible = false
  58. end)
  59.  
  60. title.Name = "title"
  61. title.Parent = modmain
  62. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. title.BackgroundTransparency = 1.000
  64. title.Position = UDim2.new(0.1639366, 0, -0.00100000005, 0)
  65. title.Size = UDim2.new(0, 200, 0, 30)
  66. title.Font = Enum.Font.SourceSans
  67. title.Text = "Soul#4086's Modded Guns"
  68. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. title.TextScaled = true
  70. title.TextSize = 14.000
  71. title.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  72. title.TextWrapped = true
  73.  
  74. firerate.Name = "firerate"
  75. firerate.Parent = modmain
  76. firerate.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  77. firerate.BorderColor3 = Color3.fromRGB(255, 255, 255)
  78. firerate.BorderSizePixel = 3
  79. firerate.Position = UDim2.new(0.124497503, 0, 0.227780059, 0)
  80. firerate.Size = UDim2.new(0, 100, 0, 50)
  81. firerate.Font = Enum.Font.SourceSans
  82. firerate.Text = "Fire rate"
  83. firerate.TextColor3 = Color3.fromRGB(255, 255, 255)
  84. firerate.TextScaled = true
  85. firerate.TextSize = 14.000
  86. firerate.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  87. firerate.TextWrapped = true
  88. firerate.MouseButton1Down:connect(function()
  89. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  90. sM["FireRate"] = number.Text
  91. end)
  92.  
  93. bullets.Name = "bullets"
  94. bullets.Parent = modmain
  95. bullets.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  96. bullets.BorderColor3 = Color3.fromRGB(255, 255, 255)
  97. bullets.BorderSizePixel = 3
  98. bullets.Position = UDim2.new(0.523545265, 0, 0.466716856, 0)
  99. bullets.Size = UDim2.new(0, 100, 0, 50)
  100. bullets.Font = Enum.Font.SourceSans
  101. bullets.Text = "Bullets"
  102. bullets.TextColor3 = Color3.fromRGB(255, 255, 255)
  103. bullets.TextScaled = true
  104. bullets.TextSize = 14.000
  105. bullets.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  106. bullets.TextWrapped = true
  107. bullets.MouseButton1Down:connect(function()
  108. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  109. sM["Bullets"] = number.Text
  110. end)
  111.  
  112. reloadtime.Name = "reloadtime"
  113. reloadtime.Parent = modmain
  114. reloadtime.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  115. reloadtime.BorderColor3 = Color3.fromRGB(255, 255, 255)
  116. reloadtime.BorderSizePixel = 3
  117. reloadtime.Position = UDim2.new(0.123544924, 0, 0.466716856, 0)
  118. reloadtime.Size = UDim2.new(0, 100, 0, 50)
  119. reloadtime.Font = Enum.Font.SourceSans
  120. reloadtime.Text = "Reload time"
  121. reloadtime.TextColor3 = Color3.fromRGB(255, 255, 255)
  122. reloadtime.TextScaled = true
  123. reloadtime.TextSize = 14.000
  124. reloadtime.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  125. reloadtime.TextWrapped = true
  126. reloadtime.MouseButton1Down:connect(function()
  127. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  128. sM["ReloadTime"] = number.Text
  129. end)
  130.  
  131. ammo.Name = "ammo"
  132. ammo.Parent = modmain
  133. ammo.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  134. ammo.BorderColor3 = Color3.fromRGB(255, 255, 255)
  135. ammo.BorderSizePixel = 3
  136. ammo.Position = UDim2.new(0.524497509, 0, 0.231181383, 0)
  137. ammo.Size = UDim2.new(0, 100, 0, 50)
  138. ammo.Font = Enum.Font.SourceSans
  139. ammo.Text = "Inf Ammo"
  140. ammo.TextColor3 = Color3.fromRGB(255, 255, 255)
  141. ammo.TextScaled = true
  142. ammo.TextSize = 14.000
  143. ammo.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  144. ammo.TextWrapped = true
  145. ammo.MouseButton1Down:connect(function()
  146. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  147. sM["MaxAmmo"] = math.huge
  148. sM["StoredAmmo"] = math.huge
  149. end)
  150.  
  151. on.Name = "on"
  152. on.Parent = modmain
  153. on.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  154. on.BorderColor3 = Color3.fromRGB(85, 255, 0)
  155. on.Position = UDim2.new(0.353558779, 0, 0.813577175, 0)
  156. on.Size = UDim2.new(0, 30, 0, 30)
  157. on.Font = Enum.Font.SourceSans
  158. on.Text = ""
  159. on.TextColor3 = Color3.fromRGB(0, 0, 0)
  160. on.TextSize = 14.000
  161. on.MouseButton1Down:connect(function()
  162. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  163. sM["AutoFire"] = true
  164. end)
  165.  
  166. off.Name = "off"
  167. off.Parent = modmain
  168. off.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  169. off.BorderColor3 = Color3.fromRGB(255, 0, 0)
  170. off.Position = UDim2.new(0.523558795, 0, 0.814063132, 0)
  171. off.Size = UDim2.new(0, 30, 0, 30)
  172. off.Font = Enum.Font.SourceSans
  173. off.Text = ""
  174. off.TextColor3 = Color3.fromRGB(0, 0, 0)
  175. off.TextSize = 14.000
  176. off.MouseButton1Down:connect(function()
  177. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  178. sM["AutoFire"] = false
  179. end)
  180.  
  181. autofire.Name = "autofire"
  182. autofire.Parent = modmain
  183. autofire.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  184. autofire.BackgroundTransparency = 1.000
  185. autofire.BorderColor3 = Color3.fromRGB(20, 20, 20)
  186. autofire.Position = UDim2.new(0.158422321, 0, 0.671716034, 0)
  187. autofire.Size = UDim2.new(0, 200, 0, 33)
  188. autofire.Font = Enum.Font.SourceSans
  189. autofire.Text = "Auto fire"
  190. autofire.TextColor3 = Color3.fromRGB(255, 255, 255)
  191. autofire.TextScaled = true
  192. autofire.TextSize = 14.000
  193. autofire.TextWrapped = true
  194.  
  195. -- Scripts:
  196.  
  197. local function STFEVAG_fake_script() -- title.LocalScript
  198. local script = Instance.new('LocalScript', title)
  199.  
  200. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  201.  
  202. counter = 0
  203.  
  204. while wait(0.1)do
  205. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  206.  
  207. counter = counter + 0.01
  208. end
  209. end
  210. coroutine.wrap(STFEVAG_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement