Advertisement
Xfer1111

Vietnam War Simulator Script

Dec 3rd, 2020
5,439
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 17.36 KB | None | 1 0
  1. -- Script is not owned by me, credits to the original owner.
  2. -- Xfer was here (t.V.K)
  3. -- Game: https://www.roblox.com/games/3607821695/Vietnam-War-Simulator
  4.  
  5. local VietnamWarSimulator = Instance.new("ScreenGui")
  6. local MainFrame = Instance.new("Frame")
  7. local FlameThrower = Instance.new("TextButton")
  8. local M1Garand = Instance.new("TextButton")
  9. local M1Scoped = Instance.new("TextButton")
  10. local StevensShotgun = Instance.new("TextButton")
  11. local SawedOffShotgun = Instance.new("TextButton")
  12. local BurstAK47 = Instance.new("TextButton")
  13. local BurstM1918Browning = Instance.new("TextButton")
  14. local TommyGun = Instance.new("TextButton")
  15. local M16A1 = Instance.new("TextButton")
  16. local M2Browning = Instance.new("TextButton")
  17. local Grenade = Instance.new("TextButton")
  18. local BowieKnife = Instance.new("TextButton")
  19. local Katana = Instance.new("TextButton")
  20. local AirStrike = Instance.new("TextButton")
  21. local Bazooka = Instance.new("TextButton")
  22. local TextLabel = Instance.new("TextLabel")
  23. local TextLabel_2 = Instance.new("TextLabel")
  24. local AddRebirth = Instance.new("TextButton")
  25. local UnlimitedMoney = Instance.new("TextButton")
  26. local TextLabel_3 = Instance.new("TextLabel")
  27.  
  28. --Properties:
  29.  
  30. VietnamWarSimulator.Name = "Vietnam War Simulator"
  31. VietnamWarSimulator.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  32. VietnamWarSimulator.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  33.  
  34. MainFrame.Name = "MainFrame"
  35. MainFrame.Parent = VietnamWarSimulator
  36. MainFrame.BackgroundColor3 = Color3.fromRGB(47, 45, 46)
  37. MainFrame.BorderColor3 = Color3.fromRGB(20, 31, 40)
  38. MainFrame.BorderSizePixel = 6
  39. MainFrame.Position = UDim2.new(0.166535124, 0, 0.364864856, 0)
  40. MainFrame.Size = UDim2.new(0, 486, 0, 274)
  41. MainFrame.Active = true
  42. MainFrame.Draggable = true
  43. function onKeyPress(inputObject, gameProcessedEvent)
  44. if inputObject.KeyCode == Enum.KeyCode.RightControl then
  45. if MainFrame.Visible == false then
  46. MainFrame.Visible = true
  47. else
  48. MainFrame.Visible = false
  49. end
  50. end
  51. end
  52.  
  53. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  54.  
  55. FlameThrower.Name = "FlameThrower"
  56. FlameThrower.Parent = MainFrame
  57. FlameThrower.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  58. FlameThrower.BorderColor3 = Color3.fromRGB(0, 0, 0)
  59. FlameThrower.BorderSizePixel = 2
  60. FlameThrower.Position = UDim2.new(0, 0, 0.16803278, 0)
  61. FlameThrower.Size = UDim2.new(0, 108, 0, 34)
  62. FlameThrower.Font = Enum.Font.Arcade
  63. FlameThrower.Text = "Flame thrower"
  64. FlameThrower.TextColor3 = Color3.fromRGB(255, 242, 245)
  65. FlameThrower.TextScaled = true
  66. FlameThrower.TextSize = 14.000
  67. FlameThrower.TextWrapped = true
  68. FlameThrower.MouseButton1Click:Connect(function()
  69.     local args = {
  70.     [1] = "Flame thrower",
  71.     [2] = {
  72.         ["Price"] = 0,
  73.         ["Image"] = "rbxgameasset://Images/heliG",
  74.         ["GP"] = false,
  75.     },
  76.     [3] = false,
  77. }
  78.  
  79. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  80. end)
  81.  
  82. M1Garand.Name = "M1 Garand"
  83. M1Garand.Parent = MainFrame
  84. M1Garand.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  85. M1Garand.BorderColor3 = Color3.fromRGB(0, 0, 0)
  86. M1Garand.BorderSizePixel = 2
  87. M1Garand.Position = UDim2.new(0, 0, 0.340163946, 0)
  88. M1Garand.Size = UDim2.new(0, 108, 0, 34)
  89. M1Garand.Font = Enum.Font.Arcade
  90. M1Garand.Text = "M1 Garand"
  91. M1Garand.TextColor3 = Color3.fromRGB(255, 242, 245)
  92. M1Garand.TextScaled = true
  93. M1Garand.TextSize = 14.000
  94. M1Garand.TextWrapped = true
  95. M1Garand.MouseButton1Click:Connect(function()
  96.     local args = {
  97.     [1] = "M1 Garand",
  98.     [2] = {
  99.         ["Price"] = 0,
  100.         ["Image"] = "rbxgameasset://Images/heliG",
  101.         ["GP"] = false,
  102.     },
  103.     [3] = false,
  104. }
  105.  
  106. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  107. end)
  108.  
  109. M1Scoped.Name = "M1 Scoped"
  110. M1Scoped.Parent = MainFrame
  111. M1Scoped.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  112. M1Scoped.BorderColor3 = Color3.fromRGB(0, 0, 0)
  113. M1Scoped.BorderSizePixel = 2
  114. M1Scoped.Position = UDim2.new(0, 0, 0.516393423, 0)
  115. M1Scoped.Size = UDim2.new(0, 108, 0, 34)
  116. M1Scoped.Font = Enum.Font.Arcade
  117. M1Scoped.Text = "M1 Scoped"
  118. M1Scoped.TextColor3 = Color3.fromRGB(255, 242, 245)
  119. M1Scoped.TextScaled = true
  120. M1Scoped.TextSize = 14.000
  121. M1Scoped.TextWrapped = true
  122. M1Scoped.MouseButton1Click:Connect(function()
  123.     local args = {
  124.     [1] = "M1 Scoped",
  125.     [2] = {
  126.         ["Price"] = 0,
  127.         ["Image"] = "rbxgameasset://Images/heliG",
  128.         ["GP"] = false,
  129.     },
  130.     [3] = false,
  131. }
  132.  
  133. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  134. end)
  135.  
  136. StevensShotgun.Name = "Stevens Shotgun"
  137. StevensShotgun.Parent = MainFrame
  138. StevensShotgun.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  139. StevensShotgun.BorderColor3 = Color3.fromRGB(0, 0, 0)
  140. StevensShotgun.BorderSizePixel = 2
  141. StevensShotgun.Position = UDim2.new(0, 0, 0.688524604, 0)
  142. StevensShotgun.Size = UDim2.new(0, 108, 0, 34)
  143. StevensShotgun.Font = Enum.Font.Arcade
  144. StevensShotgun.Text = "Stevens Shotgun"
  145. StevensShotgun.TextColor3 = Color3.fromRGB(255, 242, 245)
  146. StevensShotgun.TextScaled = true
  147. StevensShotgun.TextSize = 14.000
  148. StevensShotgun.TextWrapped = true
  149. StevensShotgun.MouseButton1Click:Connect(function()
  150.     local args = {
  151.     [1] = "Stevens Shotgun",
  152.     [2] = {
  153.         ["Price"] = 0,
  154.         ["Image"] = "rbxgameasset://Images/heliG",
  155.         ["GP"] = false,
  156.     },
  157.     [3] = false,
  158. }
  159.  
  160. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  161. end)
  162.  
  163. SawedOffShotgun.Name = "Sawed Off Shotgun"
  164. SawedOffShotgun.Parent = MainFrame
  165. SawedOffShotgun.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  166. SawedOffShotgun.BorderColor3 = Color3.fromRGB(0, 0, 0)
  167. SawedOffShotgun.BorderSizePixel = 2
  168. SawedOffShotgun.Position = UDim2.new(0, 0, 0.860655785, 0)
  169. SawedOffShotgun.Size = UDim2.new(0, 108, 0, 34)
  170. SawedOffShotgun.Font = Enum.Font.Arcade
  171. SawedOffShotgun.Text = "Sawed Off Shotgun"
  172. SawedOffShotgun.TextColor3 = Color3.fromRGB(255, 242, 245)
  173. SawedOffShotgun.TextScaled = true
  174. SawedOffShotgun.TextSize = 14.000
  175. SawedOffShotgun.TextWrapped = true
  176. SawedOffShotgun.MouseButton1Click:Connect(function()
  177.     local args = {
  178.     [1] = "Sawed Off Shotgun",
  179.     [2] = {
  180.         ["Price"] = 0,
  181.         ["Image"] = "rbxgameasset://Images/heliG",
  182.         ["GP"] = false,
  183.     },
  184.     [3] = false,
  185. }
  186.  
  187. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  188. end)
  189.  
  190. BurstAK47.Name = "Burst AK-47"
  191. BurstAK47.Parent = MainFrame
  192. BurstAK47.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  193. BurstAK47.BorderColor3 = Color3.fromRGB(0, 0, 0)
  194. BurstAK47.BorderSizePixel = 2
  195. BurstAK47.Position = UDim2.new(0.236470416, 0, 0.860655725, 0)
  196. BurstAK47.Size = UDim2.new(0, 108, 0, 34)
  197. BurstAK47.Font = Enum.Font.Arcade
  198. BurstAK47.Text = "Burst AK-47"
  199. BurstAK47.TextColor3 = Color3.fromRGB(255, 242, 245)
  200. BurstAK47.TextScaled = true
  201. BurstAK47.TextSize = 14.000
  202. BurstAK47.TextWrapped = true
  203. BurstAK47.MouseButton1Click:Connect(function()
  204.     local args = {
  205.     [1] = "Burst AK-47",
  206.     [2] = {
  207.         ["Price"] = 0,
  208.         ["Image"] = "rbxgameasset://Images/heliG",
  209.         ["GP"] = false,
  210.     },
  211.     [3] = false,
  212. }
  213.  
  214. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  215. end)
  216.  
  217. BurstM1918Browning.Name = "Burst M1918 Browning"
  218. BurstM1918Browning.Parent = MainFrame
  219. BurstM1918Browning.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  220. BurstM1918Browning.BorderColor3 = Color3.fromRGB(0, 0, 0)
  221. BurstM1918Browning.BorderSizePixel = 2
  222. BurstM1918Browning.Position = UDim2.new(0.238527998, 0, 0.688524604, 0)
  223. BurstM1918Browning.Size = UDim2.new(0, 108, 0, 34)
  224. BurstM1918Browning.Font = Enum.Font.Arcade
  225. BurstM1918Browning.Text = "Burst M1918 Browning"
  226. BurstM1918Browning.TextColor3 = Color3.fromRGB(255, 242, 245)
  227. BurstM1918Browning.TextScaled = true
  228. BurstM1918Browning.TextSize = 14.000
  229. BurstM1918Browning.TextWrapped = true
  230. BurstM1918Browning.MouseButton1Click:Connect(function()
  231.     local args = {
  232.     [1] = "Burst M1918 Browning",
  233.     [2] = {
  234.         ["Price"] = 0,
  235.         ["Image"] = "rbxgameasset://Images/heliG",
  236.         ["GP"] = false,
  237.     },
  238.     [3] = false,
  239. }
  240.  
  241. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  242. end)
  243.  
  244. TommyGun.Name = "Tommy Gun"
  245. TommyGun.Parent = MainFrame
  246. TommyGun.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  247. TommyGun.BorderColor3 = Color3.fromRGB(0, 0, 0)
  248. TommyGun.BorderSizePixel = 2
  249. TommyGun.Position = UDim2.new(0.238527998, 0, 0.516393423, 0)
  250. TommyGun.Size = UDim2.new(0, 108, 0, 34)
  251. TommyGun.Font = Enum.Font.Arcade
  252. TommyGun.Text = "Tommy Gun"
  253. TommyGun.TextColor3 = Color3.fromRGB(255, 242, 245)
  254. TommyGun.TextScaled = true
  255. TommyGun.TextSize = 14.000
  256. TommyGun.TextWrapped = true
  257. TommyGun.MouseButton1Click:Connect(function()
  258.     local args = {
  259.     [1] = "Tommy Gun",
  260.     [2] = {
  261.         ["Price"] = 0,
  262.         ["Image"] = "rbxgameasset://Images/heliG",
  263.         ["GP"] = false,
  264.     },
  265.     [3] = false,
  266. }
  267.  
  268. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  269. end)
  270.  
  271. M16A1.Name = "M16A1"
  272. M16A1.Parent = MainFrame
  273. M16A1.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  274. M16A1.BorderColor3 = Color3.fromRGB(0, 0, 0)
  275. M16A1.BorderSizePixel = 2
  276. M16A1.Position = UDim2.new(0.238527998, 0, 0.340163946, 0)
  277. M16A1.Size = UDim2.new(0, 108, 0, 34)
  278. M16A1.Font = Enum.Font.Arcade
  279. M16A1.Text = "M16A1"
  280. M16A1.TextColor3 = Color3.fromRGB(255, 242, 245)
  281. M16A1.TextScaled = true
  282. M16A1.TextSize = 14.000
  283. M16A1.TextWrapped = true
  284. M16A1.MouseButton1Click:Connect(function()
  285.     local args = {
  286.     [1] = "M16A1",
  287.     [2] = {
  288.         ["Price"] = 0,
  289.         ["Image"] = "rbxgameasset://Images/heliG",
  290.         ["GP"] = false,
  291.     },
  292.     [3] = false,
  293. }
  294.  
  295. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  296. end)
  297.  
  298. M2Browning.Name = "M2 Browning"
  299. M2Browning.Parent = MainFrame
  300. M2Browning.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  301. M2Browning.BorderColor3 = Color3.fromRGB(0, 0, 0)
  302. M2Browning.BorderSizePixel = 2
  303. M2Browning.Position = UDim2.new(0.238527998, 0, 0.16803278, 0)
  304. M2Browning.Size = UDim2.new(0, 108, 0, 34)
  305. M2Browning.Font = Enum.Font.Arcade
  306. M2Browning.Text = "M2 Browning"
  307. M2Browning.TextColor3 = Color3.fromRGB(255, 242, 245)
  308. M2Browning.TextScaled = true
  309. M2Browning.TextSize = 14.000
  310. M2Browning.TextWrapped = true
  311. M2Browning.MouseButton1Click:Connect(function()
  312.     local args = {
  313.     [1] = "M2 Browning",
  314.     [2] = {
  315.         ["Price"] = 0,
  316.         ["Image"] = "rbxgameasset://Images/heliG",
  317.         ["GP"] = false,
  318.     },
  319.     [3] = false,
  320. }
  321.  
  322. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  323. end)
  324.  
  325. Grenade.Name = "Grenade"
  326. Grenade.Parent = MainFrame
  327. Grenade.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  328. Grenade.BorderColor3 = Color3.fromRGB(0, 0, 0)
  329. Grenade.BorderSizePixel = 2
  330. Grenade.Position = UDim2.new(0.474838734, 0, 0.860655725, 0)
  331. Grenade.Size = UDim2.new(0, 108, 0, 34)
  332. Grenade.Font = Enum.Font.Arcade
  333. Grenade.Text = "Grenade"
  334. Grenade.TextColor3 = Color3.fromRGB(255, 242, 245)
  335. Grenade.TextScaled = true
  336. Grenade.TextSize = 14.000
  337. Grenade.TextWrapped = true
  338. Grenade.MouseButton1Click:Connect(function()
  339.     local args = {
  340.     [1] = "Grenade",
  341.     [2] = {
  342.         ["Price"] = 0,
  343.         ["Image"] = "rbxgameasset://Images/heliG",
  344.         ["GP"] = false,
  345.     },
  346.     [3] = false,
  347. }
  348.  
  349. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  350. end)
  351.  
  352. BowieKnife.Name = "Bowie Knife"
  353. BowieKnife.Parent = MainFrame
  354. BowieKnife.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  355. BowieKnife.BorderColor3 = Color3.fromRGB(0, 0, 0)
  356. BowieKnife.BorderSizePixel = 2
  357. BowieKnife.Position = UDim2.new(0.474838734, 0, 0.688524604, 0)
  358. BowieKnife.Size = UDim2.new(0, 108, 0, 34)
  359. BowieKnife.Font = Enum.Font.Arcade
  360. BowieKnife.Text = "Bowie Knife"
  361. BowieKnife.TextColor3 = Color3.fromRGB(255, 242, 245)
  362. BowieKnife.TextScaled = true
  363. BowieKnife.TextSize = 14.000
  364. BowieKnife.TextWrapped = true
  365. BowieKnife.MouseButton1Click:Connect(function()
  366.     local args = {
  367.     [1] = "Bowie Knife",
  368.     [2] = {
  369.         ["Price"] = 0,
  370.         ["Image"] = "rbxgameasset://Images/heliG",
  371.         ["GP"] = false,
  372.     },
  373.     [3] = false,
  374. }
  375.  
  376. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  377. end)
  378.  
  379. Katana.Name = "Katana"
  380. Katana.Parent = MainFrame
  381. Katana.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  382. Katana.BorderColor3 = Color3.fromRGB(0, 0, 0)
  383. Katana.BorderSizePixel = 2
  384. Katana.Position = UDim2.new(0.474838734, 0, 0.516393423, 0)
  385. Katana.Size = UDim2.new(0, 108, 0, 34)
  386. Katana.Font = Enum.Font.Arcade
  387. Katana.Text = "Katana"
  388. Katana.TextColor3 = Color3.fromRGB(255, 242, 245)
  389. Katana.TextScaled = true
  390. Katana.TextSize = 14.000
  391. Katana.TextWrapped = true
  392. Katana.MouseButton1Click:Connect(function()
  393.     local args = {
  394.     [1] = "Katana",
  395.     [2] = {
  396.         ["Price"] = 0,
  397.         ["Image"] = "rbxgameasset://Images/heliG",
  398.         ["GP"] = false,
  399.     },
  400.     [3] = false,
  401. }
  402.  
  403. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  404. end)
  405.  
  406. AirStrike.Name = "Air Strike"
  407. AirStrike.Parent = MainFrame
  408. AirStrike.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  409. AirStrike.BorderColor3 = Color3.fromRGB(0, 0, 0)
  410. AirStrike.BorderSizePixel = 2
  411. AirStrike.Position = UDim2.new(0.474838734, 0, 0.340163946, 0)
  412. AirStrike.Size = UDim2.new(0, 108, 0, 34)
  413. AirStrike.Font = Enum.Font.Arcade
  414. AirStrike.Text = "Air Strike"
  415. AirStrike.TextColor3 = Color3.fromRGB(255, 242, 245)
  416. AirStrike.TextScaled = true
  417. AirStrike.TextSize = 14.000
  418. AirStrike.TextWrapped = true
  419. AirStrike.MouseButton1Click:Connect(function()
  420.     local args = {
  421.     [1] = "Air Strike",
  422.     [2] = {
  423.         ["Price"] = 0,
  424.         ["Image"] = "rbxgameasset://Images/heliG",
  425.         ["GP"] = false,
  426.     },
  427.     [3] = false,
  428. }
  429.  
  430. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  431. end)
  432.  
  433. Bazooka.Name = "Bazooka"
  434. Bazooka.Parent = MainFrame
  435. Bazooka.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  436. Bazooka.BorderColor3 = Color3.fromRGB(0, 0, 0)
  437. Bazooka.BorderSizePixel = 2
  438. Bazooka.Position = UDim2.new(0.474838734, 0, 0.16803278, 0)
  439. Bazooka.Size = UDim2.new(0, 108, 0, 34)
  440. Bazooka.Font = Enum.Font.Arcade
  441. Bazooka.Text = "Bazooka"
  442. Bazooka.TextColor3 = Color3.fromRGB(255, 242, 245)
  443. Bazooka.TextScaled = true
  444. Bazooka.TextSize = 14.000
  445. Bazooka.TextWrapped = true
  446. Bazooka.MouseButton1Click:Connect(function()
  447.     local args = {
  448.     [1] = "Bazooka",
  449.     [2] = {
  450.         ["Price"] = 0,
  451.         ["Image"] = "rbxgameasset://Images/heliG",
  452.         ["GP"] = false,
  453.     },
  454.     [3] = false,
  455. }
  456.  
  457. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  458. end)
  459.  
  460. TextLabel.Parent = MainFrame
  461. TextLabel.BackgroundColor3 = Color3.fromRGB(47, 45, 46)
  462. TextLabel.BorderSizePixel = 0
  463. TextLabel.Position = UDim2.new(0.00609660801, 0, 0.013719311, 0)
  464. TextLabel.Size = UDim2.new(0, 473, 0, 26)
  465. TextLabel.Font = Enum.Font.Code
  466. TextLabel.Text = "Vietnam War Simulator GUI"
  467. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  468. TextLabel.TextScaled = true
  469. TextLabel.TextSize = 14.000
  470. TextLabel.TextWrapped = true
  471.  
  472. TextLabel_2.Parent = MainFrame
  473. TextLabel_2.BackgroundColor3 = Color3.fromRGB(47, 45, 46)
  474. TextLabel_2.BorderSizePixel = 0
  475. TextLabel_2.Position = UDim2.new(0.704726338, 0, 0.845033526, 0)
  476. TextLabel_2.Size = UDim2.new(0, 136, 0, 35)
  477. TextLabel_2.Font = Enum.Font.SourceSans
  478. TextLabel_2.Text = "Made By Totally not me#7172"
  479. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  480. TextLabel_2.TextScaled = true
  481. TextLabel_2.TextSize = 14.000
  482. TextLabel_2.TextWrapped = true
  483.  
  484. AddRebirth.Name = "Add Rebirth"
  485. AddRebirth.Parent = MainFrame
  486. AddRebirth.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  487. AddRebirth.BorderColor3 = Color3.fromRGB(0, 0, 0)
  488. AddRebirth.BorderSizePixel = 2
  489. AddRebirth.Position = UDim2.new(0.717951894, 0, 0.167225078, 0)
  490. AddRebirth.Size = UDim2.new(0, 108, 0, 34)
  491. AddRebirth.Font = Enum.Font.Arcade
  492. AddRebirth.Text = "Add Rebirth"
  493. AddRebirth.TextColor3 = Color3.fromRGB(255, 242, 245)
  494. AddRebirth.TextScaled = true
  495. AddRebirth.TextSize = 14.000
  496. AddRebirth.TextWrapped = true
  497. AddRebirth.MouseButton1Click:Connect(function()
  498.     local args = {
  499.     [1] = 10,
  500.     [2] = 0,
  501.     [3] = 10,
  502. }
  503.  
  504. game:GetService("ReplicatedStorage").RebirthEvent:FireServer(unpack(args))
  505. end)
  506.  
  507. UnlimitedMoney.Name = "Unlimited Money"
  508. UnlimitedMoney.Parent = MainFrame
  509. UnlimitedMoney.BackgroundColor3 = Color3.fromRGB(50, 49, 52)
  510. UnlimitedMoney.BorderColor3 = Color3.fromRGB(0, 0, 0)
  511. UnlimitedMoney.BorderSizePixel = 2
  512. UnlimitedMoney.Position = UDim2.new(0.717951894, 0, 0.33510828, 0)
  513. UnlimitedMoney.Size = UDim2.new(0, 108, 0, 34)
  514. UnlimitedMoney.Font = Enum.Font.Arcade
  515. UnlimitedMoney.Text = "Unlimited Money"
  516. UnlimitedMoney.TextColor3 = Color3.fromRGB(255, 242, 245)
  517. UnlimitedMoney.TextScaled = true
  518. UnlimitedMoney.TextSize = 14.000
  519. UnlimitedMoney.TextWrapped = true
  520. UnlimitedMoney.MouseButton1Click:Connect(function()
  521.     local args = {
  522.     [1] = "M1 Garand",
  523.     [2] = {
  524.         ["Price"] = 99999999,
  525.         ["Image"] = "rbxassetid://4315210809",
  526.         ["GP"] = false,
  527.     },
  528.     [3] = true,
  529. }
  530.  
  531. game:GetService("ReplicatedStorage").ShopBuy:FireServer(unpack(args))
  532. end)
  533.  
  534. TextLabel_3.Parent = MainFrame
  535. TextLabel_3.BackgroundColor3 = Color3.fromRGB(47, 45, 46)
  536. TextLabel_3.BorderSizePixel = 0
  537. TextLabel_3.Position = UDim2.new(0.712603509, 0, 0.503415048, 0)
  538. TextLabel_3.Size = UDim2.new(0, 129, 0, 91)
  539. TextLabel_3.Font = Enum.Font.SourceSans
  540. TextLabel_3.Text = "For Unlimited Money to work, you need to buy M1 Garand first then click the Unlimited money button."
  541. TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  542. TextLabel_3.TextScaled = true
  543. TextLabel_3.TextSize = 14.000
  544. TextLabel_3.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement