Ignas_Liutvinas_Rly

gui lmao

Oct 31st, 2019
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.79 KB | None | 0 0
  1. --Settings:
  2.  
  3. local AllahAkbarGunDefaultEnabled = true -- If want to AllahAkbar Gun be Default wich is Tec9, To Allow Custome Allahakbar gun set it False!
  4. local AllahAkbarCustomeGun = "Tec9" -- if AllahAkbarGunDefaultEnabled is set to true then it Wont Work!
  5.  
  6. local Keybind = Enum.KeyCode.P -- Open / Close Keybind
  7.  
  8. --End of Settings.
  9.  
  10.  
  11. local mkuded = Instance.new("ScreenGui")
  12. local GunCheats = Instance.new("Frame")
  13. local Title = Instance.new("TextLabel")
  14. local Mod_m4a1 = Instance.new("TextButton")
  15. local Mod_p250 = Instance.new("TextButton")
  16. local Mod_rem = Instance.new("TextButton")
  17. local Mod_tec9 = Instance.new("TextButton")
  18. local Mod_CustomeGun = Instance.new("TextButton")
  19. local GunName = Instance.new("TextBox")
  20. local AAB = Instance.new("TextButton")
  21. local Teleport = Instance.new("Frame")
  22. local Title_2 = Instance.new("TextLabel")
  23. local Deathbringer = Instance.new("TextButton")
  24. local Swat = Instance.new("TextButton")
  25. local VIP = Instance.new("TextButton")
  26. local Hitman = Instance.new("TextButton")
  27. local Mafia = Instance.new("TextButton")
  28. local JI = Instance.new("TextButton")
  29. local JO = Instance.new("TextButton")
  30. local Pool = Instance.new("TextButton")
  31. local PSIN = Instance.new("TextButton")
  32. local PSOU = Instance.new("TextButton")
  33. local TOB = Instance.new("TextButton")
  34. local FF = Instance.new("TextButton")
  35. local Basic = Instance.new("Frame")
  36. local Title_3 = Instance.new("TextLabel")
  37. local Vampyrism = Instance.new("TextButton")
  38. local Warring_Vamp = Instance.new("Frame")
  39. local Title_4 = Instance.new("TextLabel")
  40. local Reasson = Instance.new("TextLabel")
  41. local Warring_Allah = Instance.new("Frame")
  42. local Title_5 = Instance.new("TextLabel")
  43. local Reasson_2 = Instance.new("TextLabel")
  44. local uis = game:GetService"UserInputService"
  45.  
  46. uis.InputBegan:connect(function(key, gameProcessed)
  47. if key.KeyCode == Keybind then
  48. if mkuded.Enabled == true then
  49. mkuded.Enabled = false
  50. else
  51. mkuded.Enabled = true
  52. end
  53. end
  54. end)
  55.  
  56. function sendWarring_Vamp()
  57. Warring_Vamp.Visible = true
  58. wait(2)
  59. Warring_Vamp.Visible = false
  60. end
  61.  
  62. function sendWarring_Allah()
  63. Warring_Allah.Visible = true
  64. wait(2)
  65. Warring_Allah.Visible = false
  66. end
  67.  
  68. mkuded.Name = "mkuded"
  69. mkuded.Parent = game.Players.LocalPlayer.PlayerGui
  70. mkuded.ResetOnSpawn = false
  71.  
  72. GunCheats.Name = "GunCheats"
  73. GunCheats.Parent = mkuded
  74. GunCheats.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  75. GunCheats.BackgroundTransparency = 0.20000000298023
  76. GunCheats.BorderSizePixel = 0
  77. GunCheats.Position = UDim2.new(0.0247933883, 0, 0.0284629986, 0)
  78. GunCheats.Size = UDim2.new(0, 155, 0, 294)
  79. GunCheats.Active = true
  80. GunCheats.Draggable = true
  81.  
  82. Title.Name = "Title"
  83. Title.Parent = GunCheats
  84. Title.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  85. Title.BackgroundTransparency = 0.40000000596046
  86. Title.BorderSizePixel = 0
  87. Title.Size = UDim2.new(0, 155, 0, 29)
  88. Title.Font = Enum.Font.Cartoon
  89. Title.Text = "GunCheats"
  90. Title.TextColor3 = Color3.new(1, 1, 1)
  91. Title.TextScaled = true
  92. Title.TextSize = 14
  93. Title.TextWrapped = true
  94.  
  95. Mod_m4a1.Name = "Mod_m4a1"
  96. Mod_m4a1.Parent = GunCheats
  97. Mod_m4a1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  98. Mod_m4a1.BackgroundTransparency = 1
  99. Mod_m4a1.BorderSizePixel = 0
  100. Mod_m4a1.Position = UDim2.new(0, 0, 0.136054426, 0)
  101. Mod_m4a1.Size = UDim2.new(0, 155, 0, 19)
  102. Mod_m4a1.Font = Enum.Font.Code
  103. Mod_m4a1.Text = "Mod M4A1"
  104. Mod_m4a1.TextColor3 = Color3.new(1, 1, 1)
  105. Mod_m4a1.TextScaled = true
  106. Mod_m4a1.TextSize = 14
  107. Mod_m4a1.TextWrapped = true
  108. Mod_m4a1.MouseButton1Click:connect(function()
  109. local pler = game.Players.LocalPlayer.Backpack
  110. local mod2 = require(pler["M4A1"].Setting)
  111.  
  112. mod2.BaseDamage = 999
  113. mod2.AmmoPerMag = math.huge
  114. mod2.ReloadTime = 0
  115. mod2.Auto = true
  116. mod2.ShotgunEnabled = true
  117. mod2.Range = 99999999999
  118. mod2.Bullets = 500
  119. mod2.FireRate = 0.05
  120. mod2.Recoil = 0
  121. mod2.SpreadY = 0
  122. mod2.SpreadX = 0
  123. end)
  124.  
  125. Mod_p250.Name = "Mod_p250"
  126. Mod_p250.Parent = GunCheats
  127. Mod_p250.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  128. Mod_p250.BackgroundTransparency = 1
  129. Mod_p250.BorderSizePixel = 0
  130. Mod_p250.Position = UDim2.new(0, 0, 0.200680286, 0)
  131. Mod_p250.Size = UDim2.new(0, 155, 0, 19)
  132. Mod_p250.Font = Enum.Font.Code
  133. Mod_p250.Text = "Mod P250"
  134. Mod_p250.TextColor3 = Color3.new(1, 1, 1)
  135. Mod_p250.TextScaled = true
  136. Mod_p250.TextSize = 14
  137. Mod_p250.TextWrapped = true
  138. Mod_p250.MouseButton1Click:connect(function()
  139. local pler = game.Players.LocalPlayer.Backpack
  140. local mod2 = require(pler["P250"].Setting)
  141.  
  142. mod2.BaseDamage = 999
  143. mod2.AmmoPerMag = math.huge
  144. mod2.ReloadTime = 0
  145. mod2.Auto = true
  146. mod2.ShotgunEnabled = true
  147. mod2.Range = 99999999999
  148. mod2.Bullets = 500
  149. mod2.FireRate = 0.05
  150. mod2.Recoil = 0
  151. mod2.SpreadY = 0
  152. mod2.SpreadX = 0
  153. end)
  154.  
  155. Mod_rem.Name = "Mod_rem"
  156. Mod_rem.Parent = GunCheats
  157. Mod_rem.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  158. Mod_rem.BackgroundTransparency = 1
  159. Mod_rem.BorderSizePixel = 0
  160. Mod_rem.Position = UDim2.new(0, 0, 0.265306145, 0)
  161. Mod_rem.Size = UDim2.new(0, 155, 0, 19)
  162. Mod_rem.Font = Enum.Font.Code
  163. Mod_rem.Text = "Mod Remigton 870"
  164. Mod_rem.TextColor3 = Color3.new(1, 1, 1)
  165. Mod_rem.TextScaled = true
  166. Mod_rem.TextSize = 14
  167. Mod_rem.TextWrapped = true
  168. Mod_rem.MouseButton1Click:connect(function()
  169. local pler = game.Players.LocalPlayer.Backpack
  170. local mod2 = require(pler["Remington 870"].Setting)
  171.  
  172. mod2.BaseDamage = 999
  173. mod2.AmmoPerMag = math.huge
  174. mod2.ReloadTime = 0
  175. mod2.Auto = true
  176. mod2.ShotgunEnabled = true
  177. mod2.Range = 99999999999
  178. mod2.Bullets = 500
  179. mod2.FireRate = 0.05
  180. mod2.Recoil = 0
  181. mod2.SpreadY = 0
  182. mod2.SpreadX = 0
  183. end)
  184.  
  185. Mod_tec9.Name = "Mod_tec9"
  186. Mod_tec9.Parent = GunCheats
  187. Mod_tec9.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  188. Mod_tec9.BackgroundTransparency = 1
  189. Mod_tec9.BorderSizePixel = 0
  190. Mod_tec9.Position = UDim2.new(0, 0, 0.329932004, 0)
  191. Mod_tec9.Size = UDim2.new(0, 155, 0, 19)
  192. Mod_tec9.Font = Enum.Font.Code
  193. Mod_tec9.Text = "Mod Tec9"
  194. Mod_tec9.TextColor3 = Color3.new(1, 1, 1)
  195. Mod_tec9.TextScaled = true
  196. Mod_tec9.TextSize = 14
  197. Mod_tec9.TextWrapped = true
  198. Mod_tec9.MouseButton1Click:connect(function()
  199. local pler = game.Players.LocalPlayer.Backpack
  200. local mod2 = require(pler["Tec9"].Setting)
  201.  
  202. mod2.BaseDamage = 999
  203. mod2.AmmoPerMag = math.huge
  204. mod2.ReloadTime = 0
  205. mod2.Auto = true
  206. mod2.ShotgunEnabled = true
  207. mod2.Range = 99999999999
  208. mod2.Bullets = 500
  209. mod2.FireRate = 0.05
  210. mod2.Recoil = 0
  211. mod2.SpreadY = 0
  212. mod2.SpreadX = 0
  213. end)
  214.  
  215. Mod_CustomeGun.Name = "Mod_CustomeGun"
  216. Mod_CustomeGun.Parent = GunCheats
  217. Mod_CustomeGun.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  218. Mod_CustomeGun.BackgroundTransparency = 1
  219. Mod_CustomeGun.BorderSizePixel = 0
  220. Mod_CustomeGun.Position = UDim2.new(0, 0, 0.428571463, 0)
  221. Mod_CustomeGun.Size = UDim2.new(0, 155, 0, 19)
  222. Mod_CustomeGun.Font = Enum.Font.Code
  223. Mod_CustomeGun.Text = "Mod Weapon"
  224. Mod_CustomeGun.TextColor3 = Color3.new(1, 1, 1)
  225. Mod_CustomeGun.TextScaled = true
  226. Mod_CustomeGun.TextSize = 14
  227. Mod_CustomeGun.TextWrapped = true
  228. Mod_CustomeGun.MouseButton1Click:connect(function()
  229. local pler = game.Players.LocalPlayer.Backpack
  230. local mod2 = require(pler[GunName.Text].Setting)
  231.  
  232. mod2.BaseDamage = 999
  233. mod2.AmmoPerMag = math.huge
  234. mod2.ReloadTime = 0
  235. mod2.Auto = true
  236. mod2.ShotgunEnabled = true
  237. mod2.Range = 99999999999
  238. mod2.Bullets = 500
  239. mod2.FireRate = 0.05
  240. mod2.Recoil = 0
  241. mod2.SpreadY = 0
  242. mod2.SpreadX = 0
  243. end)
  244.  
  245. GunName.Name = "GunName"
  246. GunName.Parent = Mod_CustomeGun
  247. GunName.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  248. GunName.BorderSizePixel = 0
  249. GunName.Position = UDim2.new(0, 0, 1, 0)
  250. GunName.Size = UDim2.new(0, 155, 0, 18)
  251. GunName.Font = Enum.Font.Code
  252. GunName.PlaceholderText = "Weapon Name Here"
  253. GunName.Text = ""
  254. GunName.TextColor3 = Color3.new(1, 1, 1)
  255. GunName.TextScaled = true
  256. GunName.TextSize = 14
  257. GunName.TextWrapped = true
  258. GunName.TextXAlignment = Enum.TextXAlignment.Left
  259.  
  260. AAB.Name = "AAB"
  261. AAB.Parent = GunCheats
  262. AAB.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  263. AAB.BackgroundTransparency = 1
  264. AAB.BorderSizePixel = 0
  265. AAB.Position = UDim2.new(0, 0, 0.585034013, 0)
  266. AAB.Size = UDim2.new(0, 155, 0, 19)
  267. AAB.Font = Enum.Font.Code
  268. AAB.Text = "Allah akbar"
  269. AAB.TextColor3 = Color3.new(1, 1, 1)
  270. AAB.TextScaled = true
  271. AAB.TextSize = 14
  272. AAB.TextWrapped = true
  273. AAB.MouseButton1Click:connect(function()
  274. sendWarring_Allah()
  275. if AllahAkbarGunDefaultEnabled == false then
  276. local pler = game.Players.LocalPlayer.Backpack
  277. local mod2 = require(pler[AllahAkbarCustomeGun].Setting)
  278.  
  279. mod2.BaseDamage = 999
  280. mod2.AmmoPerMag = math.huge
  281. mod2.ReloadTime = 0
  282. mod2.Auto = true
  283. mod2.ShotgunEnabled = true
  284. mod2.Range = 1
  285. mod2.Bullets = 500
  286. mod2.FireRate = 0.05
  287. mod2.Recoil = 0
  288. mod2.ExplosiveEnabled = true
  289. else
  290. local pler = game.Players.LocalPlayer.Backpack
  291. local mod2 = require(pler["Tec9"].Setting)
  292.  
  293. mod2.BaseDamage = 999
  294. mod2.AmmoPerMag = math.huge
  295. mod2.ReloadTime = 0
  296. mod2.Auto = true
  297. mod2.ShotgunEnabled = true
  298. mod2.Range = 1
  299. mod2.Bullets = 500
  300. mod2.FireRate = 0.05
  301. mod2.Recoil = 0
  302. mod2.ExplosiveEnabled = true
  303. end
  304. end)
  305.  
  306.  
  307. Teleport.Name = "Teleport"
  308. Teleport.Parent = mkuded
  309. Teleport.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  310. Teleport.BackgroundTransparency = 0.20000000298023
  311. Teleport.BorderSizePixel = 0
  312. Teleport.Position = UDim2.new(0.264462829, 0, 0.0284629986, 0)
  313. Teleport.Size = UDim2.new(0, 155, 0, 294)
  314. Teleport.Draggable = true
  315. Teleport.Active = true
  316.  
  317. Title_2.Name = "Title"
  318. Title_2.Parent = Teleport
  319. Title_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  320. Title_2.BackgroundTransparency = 0.40000000596046
  321. Title_2.BorderSizePixel = 0
  322. Title_2.Size = UDim2.new(0, 155, 0, 29)
  323. Title_2.Font = Enum.Font.Cartoon
  324. Title_2.Text = "Teleports"
  325. Title_2.TextColor3 = Color3.new(1, 1, 1)
  326. Title_2.TextScaled = true
  327. Title_2.TextSize = 14
  328. Title_2.TextWrapped = true
  329.  
  330. Deathbringer.Name = "Deathbringer"
  331. Deathbringer.Parent = Teleport
  332. Deathbringer.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  333. Deathbringer.BackgroundTransparency = 1
  334. Deathbringer.BorderSizePixel = 0
  335. Deathbringer.Position = UDim2.new(0, 0, 0.136054426, 0)
  336. Deathbringer.Size = UDim2.new(0, 155, 0, 19)
  337. Deathbringer.Font = Enum.Font.Code
  338. Deathbringer.Text = "Deathbringer"
  339. Deathbringer.TextColor3 = Color3.new(1, 1, 1)
  340. Deathbringer.TextScaled = true
  341. Deathbringer.TextSize = 14
  342. Deathbringer.TextWrapped = true
  343. Deathbringer.MouseButton1Click:connect(function()
  344. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(318.411, 443.240, -395.858) --deathbringer
  345. end)
  346.  
  347.  
  348. Swat.Name = "Swat"
  349. Swat.Parent = Teleport
  350. Swat.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  351. Swat.BackgroundTransparency = 1
  352. Swat.BorderSizePixel = 0
  353. Swat.Position = UDim2.new(0, 0, 0.200680286, 0)
  354. Swat.Size = UDim2.new(0, 155, 0, 19)
  355. Swat.Font = Enum.Font.Code
  356. Swat.Text = "Swat VIP"
  357. Swat.TextColor3 = Color3.new(1, 1, 1)
  358. Swat.TextScaled = true
  359. Swat.TextSize = 14
  360. Swat.TextWrapped = true
  361. Swat.MouseButton1Click:connect(function()
  362. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(134.427, 191.575, -396.858) --swat
  363. end)
  364.  
  365. VIP.Name = "VIP"
  366. VIP.Parent = Teleport
  367. VIP.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  368. VIP.BackgroundTransparency = 1
  369. VIP.BorderSizePixel = 0
  370. VIP.Position = UDim2.new(0, 0, 0.265306145, 0)
  371. VIP.Size = UDim2.new(0, 155, 0, 19)
  372. VIP.Font = Enum.Font.Code
  373. VIP.Text = "VIP"
  374. VIP.TextColor3 = Color3.new(1, 1, 1)
  375. VIP.TextScaled = true
  376. VIP.TextSize = 14
  377. VIP.TextWrapped = true
  378. VIP.MouseButton1Click:connect(function()
  379. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(147.762, 181.000, -397.858) --vip
  380. end)
  381.  
  382. Hitman.Name = "Hitman"
  383. Hitman.Parent = Teleport
  384. Hitman.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  385. Hitman.BackgroundTransparency = 1
  386. Hitman.BorderSizePixel = 0
  387. Hitman.Position = UDim2.new(0, 0, 0.326530635, 0)
  388. Hitman.Size = UDim2.new(0, 155, 0, 19)
  389. Hitman.Font = Enum.Font.Code
  390. Hitman.Text = "Hitman VIP"
  391. Hitman.TextColor3 = Color3.new(1, 1, 1)
  392. Hitman.TextScaled = true
  393. Hitman.TextSize = 14
  394. Hitman.TextWrapped = true
  395. Hitman.MouseButton1Click:connect(function()
  396. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.611, 181.000, -396.858) --hitman
  397. end)
  398.  
  399. Mafia.Name = "Mafia"
  400. Mafia.Parent = Teleport
  401. Mafia.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  402. Mafia.BackgroundTransparency = 1
  403. Mafia.BorderSizePixel = 0
  404. Mafia.Position = UDim2.new(0, 0, 0.391156495, 0)
  405. Mafia.Size = UDim2.new(0, 155, 0, 19)
  406. Mafia.Font = Enum.Font.Code
  407. Mafia.Text = "Mafia VIP"
  408. Mafia.TextColor3 = Color3.new(1, 1, 1)
  409. Mafia.TextScaled = true
  410. Mafia.TextSize = 14
  411. Mafia.TextWrapped = true
  412. Mafia.MouseButton1Click:connect(function()
  413. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(128.177, 181.000, -374.598) -- mafia
  414. end)
  415.  
  416. JI.Name = "JI"
  417. JI.Parent = Teleport
  418. JI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  419. JI.BackgroundTransparency = 1
  420. JI.BorderSizePixel = 0
  421. JI.Position = UDim2.new(0, 0, 0.455782354, 0)
  422. JI.Size = UDim2.new(0, 155, 0, 19)
  423. JI.Font = Enum.Font.Code
  424. JI.Text = "Jail inside"
  425. JI.TextColor3 = Color3.new(1, 1, 1)
  426. JI.TextScaled = true
  427. JI.TextSize = 14
  428. JI.TextWrapped = true
  429. JI.MouseButton1Click:connect(function()
  430. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.202, 203.200, -200.558) --Inside of prison
  431. end)
  432.  
  433. JO.Name = "JO"
  434. JO.Parent = Teleport
  435. JO.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  436. JO.BackgroundTransparency = 1
  437. JO.BorderSizePixel = 0
  438. JO.Position = UDim2.new(0, 0, 0.520408213, 0)
  439. JO.Size = UDim2.new(0, 155, 0, 19)
  440. JO.Font = Enum.Font.Code
  441. JO.Text = "Jail outside"
  442. JO.TextColor3 = Color3.new(1, 1, 1)
  443. JO.TextScaled = true
  444. JO.TextSize = 14
  445. JO.TextWrapped = true
  446. JO.MouseButton1Click:connect(function()
  447. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.732, 203.000, -204.858) --outside of prison
  448. end)
  449.  
  450. Pool.Name = "Pool"
  451. Pool.Parent = Teleport
  452. Pool.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  453. Pool.BackgroundTransparency = 1
  454. Pool.BorderSizePixel = 0
  455. Pool.Position = UDim2.new(0, 0, 0.585034072, 0)
  456. Pool.Size = UDim2.new(0, 155, 0, 19)
  457. Pool.Font = Enum.Font.Code
  458. Pool.Text = "Pool"
  459. Pool.TextColor3 = Color3.new(1, 1, 1)
  460. Pool.TextScaled = true
  461. Pool.TextSize = 14
  462. Pool.TextWrapped = true
  463. Pool.MouseButton1Click:connect(function()
  464. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(32.156, 180.400, -287.858) --pool
  465. end)
  466.  
  467. PSIN.Name = "PSIN"
  468. PSIN.Parent = Teleport
  469. PSIN.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  470. PSIN.BackgroundTransparency = 1
  471. PSIN.BorderSizePixel = 0
  472. PSIN.Position = UDim2.new(0, 0, 0.649659932, 0)
  473. PSIN.Size = UDim2.new(0, 155, 0, 19)
  474. PSIN.Font = Enum.Font.Code
  475. PSIN.Text = "Plolice Station Inside"
  476. PSIN.TextColor3 = Color3.new(1, 1, 1)
  477. PSIN.TextScaled = true
  478. PSIN.TextSize = 14
  479. PSIN.TextWrapped = true
  480. PSIN.MouseButton1Click:connect(function()
  481. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(139.187, 190.000, -233.255) --police spawn
  482. end)
  483. PSOU.Name = "PSOU"
  484. PSOU.Parent = Teleport
  485. PSOU.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  486. PSOU.BackgroundTransparency = 1
  487. PSOU.BorderSizePixel = 0
  488. PSOU.Position = UDim2.new(0, 0, 0.714285791, 0)
  489. PSOU.Size = UDim2.new(0, 155, 0, 19)
  490. PSOU.Font = Enum.Font.Code
  491. PSOU.Text = "Plolice Station Outside"
  492. PSOU.TextColor3 = Color3.new(1, 1, 1)
  493. PSOU.TextScaled = true
  494. PSOU.TextSize = 14
  495. PSOU.TextWrapped = true
  496. PSOU.MouseButton1Click:connect(function()
  497. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.628, 180.000, -181.458) --police income
  498. end)
  499. TOB.Name = "TOB"
  500. TOB.Parent = Teleport
  501. TOB.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  502. TOB.BackgroundTransparency = 1
  503. TOB.BorderSizePixel = 0
  504. TOB.Position = UDim2.new(0, 0, 0.77891165, 0)
  505. TOB.Size = UDim2.new(0, 155, 0, 19)
  506. TOB.Font = Enum.Font.Code
  507. TOB.Text = "Top of Building"
  508. TOB.TextColor3 = Color3.new(1, 1, 1)
  509. TOB.TextScaled = true
  510. TOB.TextSize = 14
  511. TOB.TextWrapped = true
  512. TOB.MouseButton1Click:connect(function()
  513. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(122.611, 258.390, -128.908) --top of building
  514. end)
  515. FF.Name = "FF"
  516. FF.Parent = Teleport
  517. FF.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  518. FF.BackgroundTransparency = 1
  519. FF.BorderSizePixel = 0
  520. FF.Position = UDim2.new(0, 0, 0.843537509, 0)
  521. FF.Size = UDim2.new(0, 155, 0, 19)
  522. FF.Font = Enum.Font.Code
  523. FF.Text = "Fast Food"
  524. FF.TextColor3 = Color3.new(1, 1, 1)
  525. FF.TextScaled = true
  526. FF.TextSize = 14
  527. FF.TextWrapped = true
  528. FF.MouseButton1Click:connect(function()
  529. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(50.891, 180.000, -130.168) --mcdonalds
  530. end)
  531. Basic.Name = "Basic"
  532. Basic.Parent = mkuded
  533. Basic.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  534. Basic.BackgroundTransparency = 0.20000000298023
  535. Basic.BorderSizePixel = 0
  536. Basic.Position = UDim2.new(0.504132271, 0, 0.0284629986, 0)
  537. Basic.Size = UDim2.new(0, 155, 0, 87)
  538. Basic.Active = true
  539. Basic.Draggable = true
  540.  
  541. Title_3.Name = "Title"
  542. Title_3.Parent = Basic
  543. Title_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  544. Title_3.BackgroundTransparency = 0.40000000596046
  545. Title_3.BorderSizePixel = 0
  546. Title_3.Size = UDim2.new(0, 155, 0, 29)
  547. Title_3.Font = Enum.Font.Cartoon
  548. Title_3.Text = "Basic"
  549. Title_3.TextColor3 = Color3.new(1, 1, 1)
  550. Title_3.TextScaled = true
  551. Title_3.TextSize = 14
  552. Title_3.TextWrapped = true
  553.  
  554. Vampyrism.Name = "Vampyrism"
  555. Vampyrism.Parent = Basic
  556. Vampyrism.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  557. Vampyrism.BackgroundTransparency = 1
  558. Vampyrism.BorderSizePixel = 0
  559. Vampyrism.Position = UDim2.new(0, 0, 0.328055382, 0)
  560. Vampyrism.Size = UDim2.new(0, 155, 0, 19)
  561. Vampyrism.Font = Enum.Font.Code
  562. Vampyrism.Text = "Get Vampyrism"
  563. Vampyrism.TextColor3 = Color3.new(1, 1, 1)
  564. Vampyrism.TextScaled = true
  565. Vampyrism.TextSize = 14
  566. Vampyrism.TextWrapped = true
  567. Vampyrism.MouseButton1Click:connect(function()
  568. game.Players.LocalPlayer.UserId = "4762878"
  569. sendWarring_Vamp()
  570. end)
  571.  
  572. Warring_Vamp.Name = "Warring_Vamp"
  573. Warring_Vamp.Parent = mkuded
  574. Warring_Vamp.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  575. Warring_Vamp.BackgroundTransparency = 0.20000000298023
  576. Warring_Vamp.BorderSizePixel = 0
  577. Warring_Vamp.Position = UDim2.new(0.272727251, 0, 0.299810261, 0)
  578. Warring_Vamp.Size = UDim2.new(0, 279, 0, 193)
  579. Warring_Vamp.Visible = false
  580.  
  581. Title_4.Name = "Title"
  582. Title_4.Parent = Warring_Vamp
  583. Title_4.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  584. Title_4.BackgroundTransparency = 0.40000000596046
  585. Title_4.BorderSizePixel = 0
  586. Title_4.Size = UDim2.new(0, 279, 0, 29)
  587. Title_4.Font = Enum.Font.Cartoon
  588. Title_4.Text = "Warring"
  589. Title_4.TextColor3 = Color3.new(1, 0.160784, 0.160784)
  590. Title_4.TextScaled = true
  591. Title_4.TextSize = 14
  592. Title_4.TextWrapped = true
  593.  
  594. Reasson.Name = "Reasson"
  595. Reasson.Parent = Warring_Vamp
  596. Reasson.BackgroundColor3 = Color3.new(1, 1, 1)
  597. Reasson.BackgroundTransparency = 1
  598. Reasson.Position = UDim2.new(0, 0, 0.150259063, 0)
  599. Reasson.Size = UDim2.new(0, 279, 0, 164)
  600. Reasson.Font = Enum.Font.Code
  601. Reasson.Text = "If Vampyrism didint work For you, Please Reset if You want To Get it without Reseting please Rejoin and Dont Choose a Team while you Clicked it!"
  602. Reasson.TextColor3 = Color3.new(1, 1, 1)
  603. Reasson.TextSize = 21
  604. Reasson.TextWrapped = true
  605. Reasson.TextXAlignment = Enum.TextXAlignment.Left
  606. Reasson.TextYAlignment = Enum.TextYAlignment.Top
  607.  
  608. Warring_Allah.Name = "Warring_Allah"
  609. Warring_Allah.Parent = mkuded
  610. Warring_Allah.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  611. Warring_Allah.BackgroundTransparency = 0.20000000298023
  612. Warring_Allah.BorderSizePixel = 0
  613. Warring_Allah.Position = UDim2.new(0.272727251, 0, 0.299810261, 0)
  614. Warring_Allah.Size = UDim2.new(0, 279, 0, 193)
  615. Warring_Allah.Visible = false
  616.  
  617. Title_5.Name = "Title"
  618. Title_5.Parent = Warring_Allah
  619. Title_5.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  620. Title_5.BackgroundTransparency = 0.40000000596046
  621. Title_5.BorderSizePixel = 0
  622. Title_5.Size = UDim2.new(0, 279, 0, 29)
  623. Title_5.Font = Enum.Font.Cartoon
  624. Title_5.Text = "Warring"
  625. Title_5.TextColor3 = Color3.new(1, 0.160784, 0.160784)
  626. Title_5.TextScaled = true
  627. Title_5.TextSize = 14
  628. Title_5.TextWrapped = true
  629.  
  630. Reasson_2.Name = "Reasson"
  631. Reasson_2.Parent = Warring_Allah
  632. Reasson_2.BackgroundColor3 = Color3.new(1, 1, 1)
  633. Reasson_2.BackgroundTransparency = 1
  634. Reasson_2.Position = UDim2.new(0, 0, 0.150259063, 0)
  635. Reasson_2.Size = UDim2.new(0, 279, 0, 164)
  636. Reasson_2.Font = Enum.Font.Code
  637. Reasson_2.Text = "Please use Tec9 that We Wanted to Use, if You want to Change the Allah Akbar Gun Moddifyer, Change it in the Settings!"
  638. Reasson_2.TextColor3 = Color3.new(1, 1, 1)
  639. Reasson_2.TextSize = 21
  640. Reasson_2.TextWrapped = true
  641. Reasson_2.TextXAlignment = Enum.TextXAlignment.Left
  642. Reasson_2.TextYAlignment = Enum.TextYAlignment.Top
Add Comment
Please, Sign In to add comment