VanThangzxc

Fuk

Apr 15th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.22 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main2 = Instance.new("Frame")
  6. local ImageLabel = Instance.new("ImageLabel")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Pistol = Instance.new("TextButton")
  9. local ShotGun = Instance.new("TextButton")
  10. local Ak47 = Instance.new("TextButton")
  11. local InfJump = Instance.new("TextButton")
  12. local InfNitro = Instance.new("TextButton")
  13. local RemoveAll = Instance.new("TextButton")
  14. local TpStore = Instance.new("TextButton")
  15. local Speed = Instance.new("TextButton")
  16. local M4a1 = Instance.new("TextButton")
  17. local Close2 = Instance.new("TextButton")
  18. local BankStatus = Instance.new("TextButton")
  19. local ESP = Instance.new("TextButton")
  20. local JewelryStatus = Instance.new("TextButton")
  21. local Open = Instance.new("TextButton")
  22. local plr = game:GetService("Players").LocalPlayer
  23. local mouse = plr:GetMouse()
  24. --Properties:
  25. ScreenGui.Parent = game.CoreGui
  26.  
  27. Main2.Name = "Main2"
  28. Main2.Parent = ScreenGui
  29. Main2.BackgroundColor3 = Color3.new(1, 1, 1)
  30. Main2.BackgroundTransparency = 0.5
  31. Main2.Position = UDim2.new(0.251217157, 0, 0.238666683, 0)
  32. Main2.Size = UDim2.new(0, 440, 0, 429)
  33. Main2.Active = true
  34. Main2.Draggable = true
  35. Main2.Visible = false
  36.  
  37. ImageLabel.Parent = Main2
  38. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  39. ImageLabel.Size = UDim2.new(0, 440, 0, 428)
  40. ImageLabel.Image = "rbxassetid://3071309113"
  41.  
  42. TextLabel.Parent = Main2
  43. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  44. TextLabel.BackgroundTransparency = 1
  45. TextLabel.Position = UDim2.new(0, 0, -0.00284557813, 0)
  46. TextLabel.Size = UDim2.new(0, 440, 0, 50)
  47. TextLabel.Font = Enum.Font.SciFi
  48. TextLabel.Text = "Other"
  49. TextLabel.TextColor3 = Color3.new(0, 1, 0)
  50. TextLabel.TextScaled = true
  51. TextLabel.TextSize = 14
  52. TextLabel.TextWrapped = true
  53.  
  54. Pistol.Name = "Pistol"
  55. Pistol.Parent = Main2
  56. Pistol.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Pistol.BackgroundTransparency = 1
  58. Pistol.Position = UDim2.new(0.0366114825, 0, 0.171541616, 0)
  59. Pistol.Size = UDim2.new(0, 94, 0, 50)
  60. Pistol.Font = Enum.Font.SciFi
  61. Pistol.Text = "Pistol"
  62. Pistol.TextColor3 = Color3.new(0, 1, 0)
  63. Pistol.TextScaled = true
  64. Pistol.TextSize = 14
  65. Pistol.TextWrapped = true
  66. Pistol.MouseButton1Down:connect(function()
  67. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  68.  
  69. a = Instance.new("Part", workspace)
  70. a.Anchored = true
  71. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  72. a.CanCollide = false
  73.  
  74. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  75. if v.Name == "Station" then
  76. for a, b in pairs(v:GetChildren()) do
  77. if b:IsA("StringValue") then
  78. if b.Value == "Pistol" then
  79. v.CFrame = CFrame.new(hit)
  80. end
  81. end
  82. end
  83. end
  84. end
  85. end)
  86.  
  87. ShotGun.Name = "ShotGun"
  88. ShotGun.Parent = Main2
  89. ShotGun.BackgroundColor3 = Color3.new(1, 1, 1)
  90. ShotGun.BackgroundTransparency = 1
  91. ShotGun.Position = UDim2.new(0.391156912, 0, 0.171541616, 0)
  92. ShotGun.Size = UDim2.new(0, 94, 0, 50)
  93. ShotGun.Font = Enum.Font.SciFi
  94. ShotGun.Text = "ShotGun"
  95. ShotGun.TextColor3 = Color3.new(0, 1, 0)
  96. ShotGun.TextScaled = true
  97. ShotGun.TextSize = 14
  98. ShotGun.TextWrapped = true
  99. ShotGun.MouseButton1Down:connect(function()
  100. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  101.  
  102. a = Instance.new("Part", workspace)
  103. a.Anchored = true
  104. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  105. a.CanCollide = false
  106.  
  107. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  108. if v.Name == "Station" then
  109. for a, b in pairs(v:GetChildren()) do
  110. if b:IsA("StringValue") then
  111. if b.Value == "Shotgun" then
  112. v.CFrame = CFrame.new(hit)
  113. end
  114. end
  115. end
  116. end
  117. end
  118. end)
  119.  
  120. Ak47.Name = "Ak47"
  121. Ak47.Parent = Main2
  122. Ak47.BackgroundColor3 = Color3.new(1, 1, 1)
  123. Ak47.BackgroundTransparency = 1
  124. Ak47.Position = UDim2.new(0.73433876, 0, 0.171541616, 0)
  125. Ak47.Size = UDim2.new(0, 94, 0, 50)
  126. Ak47.Font = Enum.Font.SciFi
  127. Ak47.Text = "Ak47"
  128. Ak47.TextColor3 = Color3.new(0, 1, 0)
  129. Ak47.TextScaled = true
  130. Ak47.TextSize = 14
  131. Ak47.TextWrapped = true
  132. Ak47.MouseButton1Down:connect(function()
  133. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  134.  
  135. a = Instance.new("Part", workspace)
  136. a.Anchored = true
  137. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  138. a.CanCollide = false
  139.  
  140. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  141. if v.Name == "ShootingRange" then
  142. for a, b in pairs(v:GetChildren()) do
  143. if b:IsA("StringValue") then
  144. if b.Value == "AK47" then
  145. v.CFrame = CFrame.new(hit)
  146. end
  147. end
  148. end
  149. end
  150. end
  151. end)
  152.  
  153. InfJump.Name = "InfJump"
  154. InfJump.Parent = Main2
  155. InfJump.BackgroundColor3 = Color3.new(1, 1, 1)
  156. InfJump.BackgroundTransparency = 1
  157. InfJump.Position = UDim2.new(0.73433876, 0, 0.683381438, 0)
  158. InfJump.Size = UDim2.new(0, 94, 0, 50)
  159. InfJump.Font = Enum.Font.SciFi
  160. InfJump.Text = "InfJump"
  161. InfJump.TextColor3 = Color3.new(0, 1, 0)
  162. InfJump.TextScaled = true
  163. InfJump.TextSize = 14
  164. InfJump.TextWrapped = true
  165. InfJump.MouseButton1Down:connect(function()
  166. game:GetService("UserInputService").JumpRequest:connect(function()
  167. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  168. end)
  169. end)
  170.  
  171.  
  172. InfNitro.Name = "InfNitro"
  173. InfNitro.Parent = Main2
  174. InfNitro.BackgroundColor3 = Color3.new(1, 1, 1)
  175. InfNitro.BackgroundTransparency = 1
  176. InfNitro.Position = UDim2.new(0.391156912, 0, 0.421008646, 0)
  177. InfNitro.Size = UDim2.new(0, 94, 0, 50)
  178. InfNitro.Font = Enum.Font.SciFi
  179. InfNitro.Text = "InfNitro"
  180. InfNitro.TextColor3 = Color3.new(0, 1, 0)
  181. InfNitro.TextScaled = true
  182. InfNitro.TextSize = 14
  183. InfNitro.TextWrapped = true
  184. InfNitro.MouseButton1Down:connect(function()
  185. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  186. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  187. end)
  188.  
  189. RemoveAll.Name = "RemoveAll"
  190. RemoveAll.Parent = Main2
  191. RemoveAll.BackgroundColor3 = Color3.new(1, 1, 1)
  192. RemoveAll.BackgroundTransparency = 1
  193. RemoveAll.Position = UDim2.new(0.73433876, 0, 0.421008646, 0)
  194. RemoveAll.Size = UDim2.new(0, 94, 0, 50)
  195. RemoveAll.Font = Enum.Font.SciFi
  196. RemoveAll.Text = "RemoveAll"
  197. RemoveAll.TextColor3 = Color3.new(0, 1, 0)
  198. RemoveAll.TextScaled = true
  199. RemoveAll.TextSize = 14
  200. RemoveAll.TextWrapped = true
  201. RemoveAll.MouseButton1Down:connect(function()
  202. game.Workspace.Cells:Remove()
  203.  
  204. game.Workspace.Museum.CaseLasers:Remove()
  205.  
  206. game.Workspace.Museum.Lights:Remove()
  207.  
  208. game.Workspace.Museum.Doors:Remove()
  209.  
  210. game.Workspace.EscapeRoutes:Remove()
  211.  
  212. for i,v in pairs(workspace.Doors:GetChildren()) do
  213. v:Destroy()
  214.  
  215. end
  216. end)
  217.  
  218. RemoveAll.MouseButton1Down:connect(function()
  219. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  220. banklasers[1].Lasers:Destroy()
  221. end)
  222.  
  223. RemoveAll.MouseButton1Down:connect(function()
  224. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  225.  
  226. for i = 1,4 do
  227. local xd = jewelry[1].Model.BarbedWire
  228. xd:Destroy()
  229. end
  230. end)
  231.  
  232. RemoveAll.MouseButton1Down:connect(function()
  233. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  234. banklasers[1].Door.Model:Destroy()
  235. end)
  236.  
  237. TpStore.Name = "TpStore"
  238. TpStore.Parent = Main2
  239. TpStore.BackgroundColor3 = Color3.new(1, 1, 1)
  240. TpStore.BackgroundTransparency = 1
  241. TpStore.Position = UDim2.new(0.0366114825, 0, 0.683381438, 0)
  242. TpStore.Size = UDim2.new(0, 94, 0, 50)
  243. TpStore.Font = Enum.Font.SciFi
  244. TpStore.Text = "TpStore"
  245. TpStore.TextColor3 = Color3.new(0, 1, 0)
  246. TpStore.TextScaled = true
  247. TpStore.TextSize = 14
  248. TpStore.TextWrapped = true
  249. TpStore.MouseButton1Down:connect(function()
  250. local a = workspace:FindFirstChild("SmallStores")
  251. if not a then return end
  252. for i,v in pairs(a:GetChildren()) do
  253. v.Transparency = 0
  254. v.CFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame * CFrame.new(math.random(-3,3),0,math.random(-3,3))
  255. end
  256. end)
  257. local plr = game:GetService("Players").LocalPlayer
  258.  
  259.  
  260.  
  261. Speed.Name = "Speed"
  262. Speed.Parent = Main2
  263. Speed.BackgroundColor3 = Color3.new(1, 1, 1)
  264. Speed.BackgroundTransparency = 1
  265. Speed.Position = UDim2.new(0.391156912, 0, 0.683381438, 0)
  266. Speed.Size = UDim2.new(0, 94, 0, 50)
  267. Speed.Font = Enum.Font.SciFi
  268. Speed.Text = "Speed(X)"
  269. Speed.TextColor3 = Color3.new(0, 1, 0)
  270. Speed.TextScaled = true
  271. Speed.TextSize = 14
  272. Speed.TextWrapped = true
  273. Speed.MouseButton1Down:connect(function()
  274. local walkspeedplayer = game:GetService("Players").LocalPlayer
  275. local walkspeedmouse = walkspeedplayer:GetMouse()
  276.  
  277. local walkspeedenabled = false
  278.  
  279. function x_walkspeed(key)
  280. if (key == "x") then
  281. if walkspeedenabled == false then
  282. _G.WS = 64.5;
  283. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  284. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  285. Humanoid.WalkSpeed = _G.WS;
  286. end)
  287. Humanoid.WalkSpeed = _G.WS;
  288.  
  289. walkspeedenabled = true
  290. elseif walkspeedenabled == true then
  291. _G.WS = 20;
  292. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  293. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  294. Humanoid.WalkSpeed = _G.WS;
  295. end)
  296. Humanoid.WalkSpeed = _G.WS;
  297.  
  298. walkspeedenabled = false
  299. end
  300. end
  301. end
  302.  
  303. walkspeedmouse.KeyDown:connect(x_walkspeed)
  304.  
  305. end)
  306.  
  307.  
  308. M4a1.Name = "M4a1"
  309. M4a1.Parent = Main2
  310. M4a1.BackgroundColor3 = Color3.new(1, 1, 1)
  311. M4a1.BackgroundTransparency = 1
  312. M4a1.Position = UDim2.new(0.0343387686, 0, 0.421008646, 0)
  313. M4a1.Size = UDim2.new(0, 94, 0, 50)
  314. M4a1.Font = Enum.Font.SciFi
  315. M4a1.Text = "M4a1"
  316. M4a1.TextColor3 = Color3.new(0, 1, 0)
  317. M4a1.TextScaled = true
  318. M4a1.TextSize = 14
  319. M4a1.TextWrapped = true
  320. M4a1.MouseButton1Down:connect(function()
  321. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  322.  
  323. a = Instance.new("Part", workspace)
  324. a.Anchored = true
  325. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  326. a.CanCollide = false
  327.  
  328. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  329. if v.Name == "Station" then
  330. for a, b in pairs(v:GetChildren()) do
  331. if b:IsA("StringValue") then
  332. if b.Value == "RifleSWAT" then
  333. v.CFrame = CFrame.new(hit)
  334. end
  335. end
  336. end
  337. end
  338. end
  339. end)
  340.  
  341. Close2.Name = "Close2"
  342. Close2.Parent = Main2
  343. Close2.BackgroundColor3 = Color3.new(1, 1, 1)
  344. Close2.BackgroundTransparency = 1
  345. Close2.Position = UDim2.new(0.85024786, 0, -0.0053089587, 0)
  346. Close2.Size = UDim2.new(0, 94, 0, 50)
  347. Close2.Font = Enum.Font.SourceSans
  348. Close2.Text = "X"
  349. Close2.TextColor3 = Color3.new(1, 0, 0)
  350. Close2.TextScaled = true
  351. Close2.TextSize = 14
  352. Close2.TextWrapped = true
  353. Close2.MouseButton1Down:connect(function()
  354. Main2.Visible = false
  355. end)
  356.  
  357. BankStatus.Name = "BankStatus"
  358. BankStatus.Parent = Main2
  359. BankStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  360. BankStatus.BackgroundTransparency = 1
  361. BankStatus.Position = UDim2.new(0.0343387537, 0, 0.881516635, 0)
  362. BankStatus.Size = UDim2.new(0, 94, 0, 50)
  363. BankStatus.Font = Enum.Font.SciFi
  364. BankStatus.Text = "BankStatus"
  365. BankStatus.TextColor3 = Color3.new(0, 1, 0)
  366. BankStatus.TextScaled = true
  367. BankStatus.TextSize = 14
  368. BankStatus.TextWrapped = true
  369.  
  370. ESP.Name = "ESP"
  371. ESP.Parent = Main2
  372. ESP.BackgroundColor3 = Color3.new(1, 1, 1)
  373. ESP.BackgroundTransparency = 1
  374. ESP.Position = UDim2.new(0.391156912, 0, 0.881516635, 0)
  375. ESP.Size = UDim2.new(0, 94, 0, 50)
  376. ESP.Font = Enum.Font.SciFi
  377. ESP.Text = "Ctrl Delete"
  378. ESP.TextColor3 = Color3.new(0, 1, 0)
  379. ESP.TextScaled = true
  380. ESP.TextSize = 14
  381. ESP.TextWrapped = true
  382. ESP.MouseButton1Down:connect(function()
  383. local Plr = game:GetService("Players").LocalPlayer
  384. local Mouse = Plr:GetMouse()
  385.  
  386. Mouse.Button1Down:connect(function()
  387. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  388. if not Mouse.Target then return end
  389. Mouse.Target:Destroy()
  390. end)
  391. end)
  392.  
  393. JewelryStatus.Name = "JewelryStatus"
  394. JewelryStatus.Parent = Main2
  395. JewelryStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  396. JewelryStatus.BackgroundTransparency = 1
  397. JewelryStatus.Position = UDim2.new(0.73433876, 0, 0.881516635, 0)
  398. JewelryStatus.Size = UDim2.new(0, 120, 0, 50)
  399. JewelryStatus.Font = Enum.Font.SciFi
  400. JewelryStatus.Text = "JewelryStatus"
  401. JewelryStatus.TextColor3 = Color3.new(0, 1, 0)
  402. JewelryStatus.TextScaled = true
  403. JewelryStatus.TextSize = 14
  404. JewelryStatus.TextWrapped = true
  405.  
  406. Open.Name = "Open"
  407. Open.Parent = ScreenGui
  408. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  409. Open.BorderColor3 = Color3.new(1, 0.666667, 0)
  410. Open.Position = UDim2.new(0, 0, 0.437333345, 0)
  411. Open.Size = UDim2.new(0, 91, 0, 50)
  412. Open.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  413. Open.Font = Enum.Font.SciFi
  414. Open.Text = "OPEN"
  415. Open.TextColor3 = Color3.new(0, 0, 0)
  416. Open.TextScaled = true
  417. Open.TextSize = 14
  418. Open.TextWrapped = true
  419. Open.Visible = false
  420. Open.MouseButton1Down:connect(function()
  421. Main2.Visible = true
  422. end)
  423. -- Scripts:
  424. --Bank notification--
  425. pcall(function()
  426. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  427. local Info = Bank.Extra.Sign.Decal
  428. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  429. if Info.Transparency ~= 0 then
  430. BankStatus.Text = "Bank:Mở"
  431. BankStatus.TextColor3 = Color3.new(0,1,0)
  432. BankStatus.BackgroundColor3 = Color3.new(0,1,0)
  433. local cb = Instance.new("BindableFunction")
  434. cb.OnInvoke = function(arg)
  435. if arg == "Teleport" then
  436. JailbreakTp(10, 18, 784)
  437. Main()
  438. end
  439. end
  440. game:GetService("StarterGui"):SetCore("SendNotification",{
  441. Title = "Bank Đã Mở!",
  442. Text = "Bank Đã Mở!",
  443. Duration = 15,
  444. Button1 = "Dismiss",
  445. Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
  446. Callback = cb
  447. })
  448. else
  449. BankStatus.Text = "Bank:Đóng"
  450. BankStatus.TextColor3 = Color3.new(1,0,0)
  451. BankStatus.BackgroundColor3 = Color3.new(1,0,0)
  452. end
  453. end)
  454. BankStatus.Text = Info.Transparency == 0 and "Bank:Đóng" or "Bank:Mở"
  455. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  456. end)
  457. --Jewelry notification--
  458. pcall(function()
  459. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  460. local Info = Jewelry.Extra.Sign.Decal
  461. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  462. if Info.Transparency ~= 0 then
  463. JewelryStatus.Text = "Jewelry:Mở"
  464. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  465. BankStatus.TextColor3 = Color3.new(0,1,0)
  466. local cb = Instance.new("BindableFunction")
  467. cb.OnInvoke = function(arg)
  468. if arg == "Teleport" then
  469. JailbreakTp(142, 18, 1365)
  470. end
  471. end
  472. game:GetService("StarterGui"):SetCore("SendNotification",{
  473. Title = "Jewelry Đã Mở!",
  474. Text = "Jewelry Đã Mở!",
  475. Duration = 15,
  476. Button1 = "Dismiss",
  477. Button2 = "Teleport",
  478. Callback = cb
  479. })
  480. else
  481. JewelryStatus.Text = "Jewelry:Đóng"
  482. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  483. end
  484. end)
  485. JewelryStatus.Text = Info.Transparency == 0 and "Jewelry:Đóng" or "Jewelry:Mở"
  486. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  487. end)
  488.  
  489. local h = Instance.new("Hint")
  490. h.Parent = workspace
  491. h.Text = "Fuk."
  492. wait(8)
  493. h:Remove()
  494. wait(.1)
  495. Open.Visible = true
Advertisement
Add Comment
Please, Sign In to add comment