Advertisement
Meliodas0_0

Jailbreak Tp gui

Jan 30th, 2020
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 36.33 KB | None | 0 0
  1.  
  2. local CatBreak = Instance.new("ScreenGui")
  3. local Teleports = Instance.new("Frame")
  4. local topbar = Instance.new("Frame")
  5. local lowbar = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Frame = Instance.new("ImageButton")
  8. local Credit = Instance.new("TextLabel")
  9. local Box1 = Instance.new("ImageLabel")
  10. local Gun = Instance.new("TextButton")
  11. local Million = Instance.new("TextButton")
  12. local Vol = Instance.new("TextButton")
  13. local City = Instance.new("TextButton")
  14. local Power = Instance.new("TextButton")
  15. local Museum = Instance.new("TextButton")
  16. local JewOut = Instance.new("TextButton")
  17. local Crim20 = Instance.new("TextButton")
  18. local Cop20 = Instance.new("TextButton")
  19. local Fire = Instance.new("TextButton")
  20. local Gas = Instance.new("TextButton")
  21. local Donut = Instance.new("TextButton")
  22. local JailOut = Instance.new("TextButton")
  23. local JailIn = Instance.new("TextButton")
  24. local Military = Instance.new("TextButton")
  25. local Hos = Instance.new("TextButton")
  26. local BankIn = Instance.new("TextButton")
  27. local BankOut = Instance.new("TextButton")
  28. local JewIn = Instance.new("TextButton")
  29. local Airport = Instance.new("TextButton")
  30. local StationCity = Instance.new("TextButton")
  31. local StationJail = Instance.new("TextButton")
  32. local TPBack = Instance.new("ImageLabel")
  33. local PlayerName = Instance.new("TextBox")
  34.  
  35. --Properties:
  36.  
  37. CatBreak.Name = "CatBreak"
  38. CatBreak.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  39.  
  40. Teleports.Name = "Teleports"
  41. Teleports.Parent = CatBreak
  42. Teleports.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  43. Teleports.BorderSizePixel = 0
  44. Teleports.Position = UDim2.new(0.359872609, 0, 0.175675675, 0)
  45. Teleports.Size = UDim2.new(0, 179, 0, 529)
  46.  
  47. function dragify(Frame)
  48. dragToggle = nil
  49. dragSpeed = .25 -- You can edit this.
  50. dragInput = nil
  51. dragStart = nil
  52. dragPos = nil
  53.  
  54. function updateInput(input)
  55. Delta = input.Position - dragStart
  56. Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  57. game:GetService("TweenService"):Create(Frame, TweenInfo.new(.25), {Position = Position}):Play()
  58. end
  59.  
  60. Frame.InputBegan:Connect(function(input)
  61. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  62. dragToggle = true
  63. dragStart = input.Position
  64. startPos = Frame.Position
  65. input.Changed:Connect(function()
  66. if (input.UserInputState == Enum.UserInputState.End) then
  67. dragToggle = false
  68. end
  69. end)
  70. end
  71. end)
  72.  
  73. Frame.InputChanged:Connect(function(input)
  74. if (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then
  75. dragInput = input
  76. end
  77. end)
  78.  
  79. game:GetService("UserInputService").InputChanged:Connect(function(input)
  80. if (input == dragInput and dragToggle) then
  81. updateInput(input)
  82. end
  83. end)
  84. end
  85.  
  86. dragify(Teleports)
  87.  
  88. topbar.Name = "topbar"
  89. topbar.Parent = Teleports
  90. topbar.BackgroundColor3 = Color3.fromRGB(44, 44, 44)
  91. topbar.BorderSizePixel = 0
  92. topbar.Position = UDim2.new(0, 0, -0.00103950105, 0)
  93. topbar.Size = UDim2.new(0, 179, 0, 32)
  94.  
  95. lowbar.Name = "lowbar"
  96. lowbar.Parent = topbar
  97. lowbar.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
  98. lowbar.BorderSizePixel = 0
  99. lowbar.Position = UDim2.new(0, 0, 0.803014576, 0)
  100. lowbar.Size = UDim2.new(0, 179, 0, 6)
  101.  
  102. Title.Name = "Title"
  103. Title.Parent = topbar
  104. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  105. Title.BackgroundTransparency = 1.000
  106. Title.Position = UDim2.new(0.0726256967, 0, 0, 0)
  107. Title.Size = UDim2.new(0, 64, 0, 25)
  108. Title.Font = Enum.Font.GothamBlack
  109. Title.Text = "Teleports"
  110. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  111. Title.TextSize = 14.000
  112. Title.TextXAlignment = Enum.TextXAlignment.Left
  113.  
  114. Frame.Name = "Frame"
  115. Frame.Parent = topbar
  116. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  117. Frame.BackgroundTransparency = 1.000
  118. Frame.Position = UDim2.new(0.905027926, 0, 0.28125, 0)
  119. Frame.Size = UDim2.new(0, 7, 0, 7)
  120. Frame.Image = "rbxassetid://3570695787"
  121. Frame.ImageColor3 = Color3.fromRGB(55, 255, 61)
  122. Frame.ScaleType = Enum.ScaleType.Slice
  123. Frame.SliceCenter = Rect.new(100, 100, 100, 100)
  124.  
  125. Credit.Name = "Credit"
  126. Credit.Parent = Teleports
  127. Credit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  128. Credit.BackgroundTransparency = 1.000
  129. Credit.Position = UDim2.new(0, 0, 0.950103939, 0)
  130. Credit.Size = UDim2.new(0, 132, 0, 24)
  131. Credit.Font = Enum.Font.GothamBold
  132. Credit.Text = "Made by cat#4023"
  133. Credit.TextColor3 = Color3.fromRGB(218, 218, 218)
  134. Credit.TextSize = 14.000
  135.  
  136. Box1.Name = "Box1"
  137. Box1.Parent = Teleports
  138. Box1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  139. Box1.BackgroundTransparency = 1.000
  140. Box1.Position = UDim2.new(0.0558659211, 0, 0.0790020674, 0)
  141. Box1.Size = UDim2.new(0, 159, 0, 460)
  142. Box1.Image = "rbxassetid://3570695787"
  143. Box1.ImageColor3 = Color3.fromRGB(50, 50, 50)
  144. Box1.ScaleType = Enum.ScaleType.Slice
  145. Box1.SliceScale = 0.12
  146. Box1.SliceCenter = Rect.new(100, 100, 100, 100)
  147.  
  148. Gun.Name = "Gun"
  149. Gun.Parent = Box1
  150. Gun.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  151. Gun.BackgroundTransparency = 1.000
  152. Gun.Position = UDim2.new(0.0566037744, 0, 0.820945323, 0)
  153. Gun.Size = UDim2.new(0, 138, 0, 19)
  154. Gun.SizeConstraint = Enum.SizeConstraint.RelativeXX
  155. Gun.Font = Enum.Font.GothamSemibold
  156. Gun.Text = "Gun Shop"
  157. Gun.TextColor3 = Color3.fromRGB(241, 241, 241)
  158. Gun.TextSize = 14.000
  159. Gun.TextXAlignment = Enum.TextXAlignment.Left
  160.  
  161. Million.Name = "Million"
  162. Million.Parent = Box1
  163. Million.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  164. Million.BackgroundTransparency = 1.000
  165. Million.Position = UDim2.new(0.0628930926, 0, 0.78410995, 0)
  166. Million.Size = UDim2.new(0, 138, 0, 19)
  167. Million.SizeConstraint = Enum.SizeConstraint.RelativeXX
  168. Million.Font = Enum.Font.GothamSemibold
  169. Million.Text = "Million Shop"
  170. Million.TextColor3 = Color3.fromRGB(241, 241, 241)
  171. Million.TextSize = 14.000
  172. Million.TextXAlignment = Enum.TextXAlignment.Left
  173.  
  174. Vol.Name = "Vol"
  175. Vol.Parent = Box1
  176. Vol.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  177. Vol.BackgroundTransparency = 1.000
  178. Vol.Position = UDim2.new(0.0566037819, 0, 0.74297291, 0)
  179. Vol.Size = UDim2.new(0, 138, 0, 19)
  180. Vol.SizeConstraint = Enum.SizeConstraint.RelativeXX
  181. Vol.Font = Enum.Font.GothamSemibold
  182. Vol.Text = "Crim Base - Volcano"
  183. Vol.TextColor3 = Color3.fromRGB(241, 241, 241)
  184. Vol.TextSize = 14.000
  185. Vol.TextXAlignment = Enum.TextXAlignment.Left
  186.  
  187. City.Name = "City"
  188. City.Parent = Box1
  189. City.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  190. City.BackgroundTransparency = 1.000
  191. City.Position = UDim2.new(0.0566037744, 0, 0.701789558, 0)
  192. City.Size = UDim2.new(0, 138, 0, 19)
  193. City.SizeConstraint = Enum.SizeConstraint.RelativeXX
  194. City.Font = Enum.Font.GothamSemibold
  195. City.Text = "Crim Base - City"
  196. City.TextColor3 = Color3.fromRGB(241, 241, 241)
  197. City.TextSize = 14.000
  198. City.TextXAlignment = Enum.TextXAlignment.Left
  199.  
  200. Power.Name = "Power"
  201. Power.Parent = Box1
  202. Power.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  203. Power.BackgroundTransparency = 1.000
  204. Power.Position = UDim2.new(0.0628930852, 0, 0.660652637, 0)
  205. Power.Size = UDim2.new(0, 138, 0, 19)
  206. Power.SizeConstraint = Enum.SizeConstraint.RelativeXX
  207. Power.Font = Enum.Font.GothamSemibold
  208. Power.Text = "Power Plant"
  209. Power.TextColor3 = Color3.fromRGB(241, 241, 241)
  210. Power.TextSize = 14.000
  211. Power.TextXAlignment = Enum.TextXAlignment.Left
  212.  
  213. Museum.Name = "Museum"
  214. Museum.Parent = Box1
  215. Museum.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  216. Museum.BackgroundTransparency = 1.000
  217. Museum.Position = UDim2.new(0.0566037744, 0, 0.619515538, 0)
  218. Museum.Size = UDim2.new(0, 138, 0, 19)
  219. Museum.SizeConstraint = Enum.SizeConstraint.RelativeXX
  220. Museum.Font = Enum.Font.GothamSemibold
  221. Museum.Text = "Museum"
  222. Museum.TextColor3 = Color3.fromRGB(241, 241, 241)
  223. Museum.TextSize = 14.000
  224. Museum.TextXAlignment = Enum.TextXAlignment.Left
  225.  
  226. JewOut.Name = "JewOut"
  227. JewOut.Parent = Box1
  228. JewOut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  229. JewOut.BackgroundTransparency = 1.000
  230. JewOut.Position = UDim2.new(0.0628930852, 0, 0.578378558, 0)
  231. JewOut.Size = UDim2.new(0, 138, 0, 19)
  232. JewOut.SizeConstraint = Enum.SizeConstraint.RelativeXX
  233. JewOut.Font = Enum.Font.GothamSemibold
  234. JewOut.Text = "Jewelry Out"
  235. JewOut.TextColor3 = Color3.fromRGB(241, 241, 241)
  236. JewOut.TextSize = 14.000
  237. JewOut.TextXAlignment = Enum.TextXAlignment.Left
  238.  
  239. Crim20.Name = "Crim20"
  240. Crim20.Parent = Box1
  241. Crim20.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  242. Crim20.BackgroundTransparency = 1.000
  243. Crim20.Position = UDim2.new(0.0628930852, 0, 0.331602812, 0)
  244. Crim20.Size = UDim2.new(0, 138, 0, 19)
  245. Crim20.SizeConstraint = Enum.SizeConstraint.RelativeXX
  246. Crim20.Font = Enum.Font.GothamSemibold
  247. Crim20.Text = "Level 20 Criminal"
  248. Crim20.TextColor3 = Color3.fromRGB(241, 241, 241)
  249. Crim20.TextSize = 14.000
  250. Crim20.TextXAlignment = Enum.TextXAlignment.Left
  251.  
  252. Cop20.Name = "Cop20"
  253. Cop20.Parent = Box1
  254. Cop20.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  255. Cop20.BackgroundTransparency = 1.000
  256. Cop20.Position = UDim2.new(0.0566037782, 0, 0.290465862, 0)
  257. Cop20.Size = UDim2.new(0, 138, 0, 19)
  258. Cop20.SizeConstraint = Enum.SizeConstraint.RelativeXX
  259. Cop20.Font = Enum.Font.GothamSemibold
  260. Cop20.Text = "Level 20 Police"
  261. Cop20.TextColor3 = Color3.fromRGB(241, 241, 241)
  262. Cop20.TextSize = 14.000
  263. Cop20.TextXAlignment = Enum.TextXAlignment.Left
  264.  
  265. Fire.Name = "Fire"
  266. Fire.Parent = Box1
  267. Fire.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  268. Fire.BackgroundTransparency = 1.000
  269. Fire.Position = UDim2.new(0.0566037782, 0, 0.249328852, 0)
  270. Fire.Size = UDim2.new(0, 138, 0, 19)
  271. Fire.SizeConstraint = Enum.SizeConstraint.RelativeXX
  272. Fire.Font = Enum.Font.GothamSemibold
  273. Fire.Text = "Fire Station"
  274. Fire.TextColor3 = Color3.fromRGB(241, 241, 241)
  275. Fire.TextSize = 14.000
  276. Fire.TextXAlignment = Enum.TextXAlignment.Left
  277.  
  278. Gas.Name = "Gas"
  279. Gas.Parent = Box1
  280. Gas.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  281. Gas.BackgroundTransparency = 1.000
  282. Gas.Position = UDim2.new(0.0566037782, 0, 0.208191827, 0)
  283. Gas.Size = UDim2.new(0, 138, 0, 19)
  284. Gas.SizeConstraint = Enum.SizeConstraint.RelativeXX
  285. Gas.Font = Enum.Font.GothamSemibold
  286. Gas.Text = "Gas Station"
  287. Gas.TextColor3 = Color3.fromRGB(241, 241, 241)
  288. Gas.TextSize = 14.000
  289. Gas.TextXAlignment = Enum.TextXAlignment.Left
  290.  
  291. Donut.Name = "Donut"
  292. Donut.Parent = Box1
  293. Donut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  294. Donut.BackgroundTransparency = 1.000
  295. Donut.Position = UDim2.new(0.0566037782, 0, 0.1671011, 0)
  296. Donut.Size = UDim2.new(0, 138, 0, 19)
  297. Donut.SizeConstraint = Enum.SizeConstraint.RelativeXX
  298. Donut.Font = Enum.Font.GothamSemibold
  299. Donut.Text = "Donut Store"
  300. Donut.TextColor3 = Color3.fromRGB(241, 241, 241)
  301. Donut.TextSize = 14.000
  302. Donut.TextXAlignment = Enum.TextXAlignment.Left
  303.  
  304. JailOut.Name = "JailOut"
  305. JailOut.Parent = Box1
  306. JailOut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  307. JailOut.BackgroundTransparency = 1.000
  308. JailOut.Position = UDim2.new(0.0440251604, 0, 0.12596409, 0)
  309. JailOut.Size = UDim2.new(0, 138, 0, 19)
  310. JailOut.SizeConstraint = Enum.SizeConstraint.RelativeXX
  311. JailOut.Font = Enum.Font.GothamSemibold
  312. JailOut.Text = "Jail Out"
  313. JailOut.TextColor3 = Color3.fromRGB(241, 241, 241)
  314. JailOut.TextSize = 14.000
  315. JailOut.TextXAlignment = Enum.TextXAlignment.Left
  316.  
  317. JailIn.Name = "JailIn"
  318. JailIn.Parent = Box1
  319. JailIn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  320. JailIn.BackgroundTransparency = 1.000
  321. JailIn.Position = UDim2.new(0.0566037782, 0, 0.0848271027, 0)
  322. JailIn.Size = UDim2.new(0, 138, 0, 19)
  323. JailIn.SizeConstraint = Enum.SizeConstraint.RelativeXX
  324. JailIn.Font = Enum.Font.GothamSemibold
  325. JailIn.Text = "Jail In"
  326. JailIn.TextColor3 = Color3.fromRGB(241, 241, 241)
  327. JailIn.TextSize = 14.000
  328. JailIn.TextXAlignment = Enum.TextXAlignment.Left
  329.  
  330. Military.Name = "Military"
  331. Military.Parent = Box1
  332. Military.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  333. Military.BackgroundTransparency = 1.000
  334. Military.Position = UDim2.new(0.0566037782, 0, 0.372739792, 0)
  335. Military.Size = UDim2.new(0, 138, 0, 19)
  336. Military.SizeConstraint = Enum.SizeConstraint.RelativeXX
  337. Military.Font = Enum.Font.GothamSemibold
  338. Military.Text = "Military Base"
  339. Military.TextColor3 = Color3.fromRGB(241, 241, 241)
  340. Military.TextSize = 14.000
  341. Military.TextXAlignment = Enum.TextXAlignment.Left
  342.  
  343. Hos.Name = "Hos"
  344. Hos.Parent = Box1
  345. Hos.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  346. Hos.BackgroundTransparency = 1.000
  347. Hos.Position = UDim2.new(0.0628930852, 0, 0.413923025, 0)
  348. Hos.Size = UDim2.new(0, 138, 0, 19)
  349. Hos.SizeConstraint = Enum.SizeConstraint.RelativeXX
  350. Hos.Font = Enum.Font.GothamSemibold
  351. Hos.Text = "Hospital"
  352. Hos.TextColor3 = Color3.fromRGB(241, 241, 241)
  353. Hos.TextSize = 14.000
  354. Hos.TextXAlignment = Enum.TextXAlignment.Left
  355.  
  356. BankIn.Name = "BankIn"
  357. BankIn.Parent = Box1
  358. BankIn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  359. BankIn.BackgroundTransparency = 1.000
  360. BankIn.Position = UDim2.new(0.0566037782, 0, 0.455060005, 0)
  361. BankIn.Size = UDim2.new(0, 138, 0, 19)
  362. BankIn.SizeConstraint = Enum.SizeConstraint.RelativeXX
  363. BankIn.Font = Enum.Font.GothamSemibold
  364. BankIn.Text = "Bank In"
  365. BankIn.TextColor3 = Color3.fromRGB(241, 241, 241)
  366. BankIn.TextSize = 14.000
  367. BankIn.TextXAlignment = Enum.TextXAlignment.Left
  368.  
  369. BankOut.Name = "BankOut"
  370. BankOut.Parent = Box1
  371. BankOut.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  372. BankOut.BackgroundTransparency = 1.000
  373. BankOut.Position = UDim2.new(0.0628930852, 0, 0.496104509, 0)
  374. BankOut.Size = UDim2.new(0, 138, 0, 19)
  375. BankOut.SizeConstraint = Enum.SizeConstraint.RelativeXX
  376. BankOut.Font = Enum.Font.GothamSemibold
  377. BankOut.Text = "Bank Out"
  378. BankOut.TextColor3 = Color3.fromRGB(241, 241, 241)
  379. BankOut.TextSize = 14.000
  380. BankOut.TextXAlignment = Enum.TextXAlignment.Left
  381.  
  382. JewIn.Name = "JewIn"
  383. JewIn.Parent = Box1
  384. JewIn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  385. JewIn.BackgroundTransparency = 1.000
  386. JewIn.Position = UDim2.new(0.0566037968, 0, 0.537241578, 0)
  387. JewIn.Size = UDim2.new(0, 138, 0, 19)
  388. JewIn.SizeConstraint = Enum.SizeConstraint.RelativeXX
  389. JewIn.Font = Enum.Font.GothamSemibold
  390. JewIn.Text = "Jewelry In"
  391. JewIn.TextColor3 = Color3.fromRGB(241, 241, 241)
  392. JewIn.TextSize = 14.000
  393. JewIn.TextXAlignment = Enum.TextXAlignment.Left
  394.  
  395. Airport.Name = "Airport"
  396. Airport.Parent = Box1
  397. Airport.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  398. Airport.BackgroundTransparency = 1.000
  399. Airport.Position = UDim2.new(0.0565686338, 0, 0.861986101, 0)
  400. Airport.Size = UDim2.new(0, 138, 0, 19)
  401. Airport.SizeConstraint = Enum.SizeConstraint.RelativeYY
  402. Airport.Font = Enum.Font.GothamSemibold
  403. Airport.Text = "Airport"
  404. Airport.TextColor3 = Color3.fromRGB(241, 241, 241)
  405. Airport.TextSize = 14.000
  406. Airport.TextXAlignment = Enum.TextXAlignment.Left
  407.  
  408. StationCity.Name = "StationCity"
  409. StationCity.Parent = Box1
  410. StationCity.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  411. StationCity.BackgroundTransparency = 1.000
  412. StationCity.Position = UDim2.new(0.0523874685, 0, 0.902701437, 0)
  413. StationCity.Size = UDim2.new(0, 138, 0, 19)
  414. StationCity.SizeConstraint = Enum.SizeConstraint.RelativeYY
  415. StationCity.Font = Enum.Font.GothamSemibold
  416. StationCity.Text = "Police Station City"
  417. StationCity.TextColor3 = Color3.fromRGB(241, 241, 241)
  418. StationCity.TextSize = 14.000
  419. StationCity.TextXAlignment = Enum.TextXAlignment.Left
  420.  
  421. StationJail.Name = "StationJail"
  422. StationJail.Parent = Box1
  423. StationJail.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  424. StationJail.BackgroundTransparency = 1.000
  425. StationJail.Position = UDim2.new(0.0468008704, 0, 0.943416774, 0)
  426. StationJail.Size = UDim2.new(0, 138, 0, 19)
  427. StationJail.SizeConstraint = Enum.SizeConstraint.RelativeYY
  428. StationJail.Font = Enum.Font.GothamSemibold
  429. StationJail.Text = "Police Station Jail"
  430. StationJail.TextColor3 = Color3.fromRGB(241, 241, 241)
  431. StationJail.TextSize = 14.000
  432. StationJail.TextXAlignment = Enum.TextXAlignment.Left
  433.  
  434. TPBack.Name = "TPBack"
  435. TPBack.Parent = Teleports
  436. TPBack.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  437. TPBack.BackgroundTransparency = 1.000
  438. TPBack.Position = UDim2.new(0.0558659211, 0, 0.0789375827, 0)
  439. TPBack.Size = UDim2.new(0, 158, 0, 33)
  440. TPBack.Image = "rbxassetid://3570695787"
  441. TPBack.ImageColor3 = Color3.fromRGB(44, 44, 44)
  442. TPBack.ScaleType = Enum.ScaleType.Slice
  443. TPBack.SliceCenter = Rect.new(100, 100, 100, 100)
  444. TPBack.SliceScale = 0.12
  445.  
  446. PlayerName.Name = "PlayerName"
  447. PlayerName.Parent = TPBack
  448. PlayerName.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  449. PlayerName.BackgroundTransparency = 1.000
  450. PlayerName.BorderSizePixel = 0
  451. PlayerName.Position = UDim2.new(0.0189873409, 0, 0.000940033875, 0)
  452. PlayerName.Size = UDim2.new(0, 155, 0, 31)
  453. PlayerName.Font = Enum.Font.GothamSemibold
  454. PlayerName.PlaceholderColor3 = Color3.fromRGB(178, 178, 178)
  455. PlayerName.PlaceholderText = "Teleport to [Player]"
  456. PlayerName.Text = ""
  457. PlayerName.TextColor3 = Color3.fromRGB(232, 232, 232)
  458. PlayerName.TextSize = 12.000
  459.  
  460. local Coords = Vector3.new(0,0,0)
  461.  
  462. function tpMethod()
  463. tpspot = Coords
  464. local Client = {}
  465.  
  466. for i,v in pairs(debug.getregistry()) do
  467. if typeof(v) == "function" then
  468. for i2,v2 in pairs(debug.getupvalues(v)) do
  469. if typeof(v2) == "table" and v2.FireServer then
  470. Client.FireServerT = v2
  471. end
  472. end
  473. end
  474. end
  475.  
  476.  
  477. local Arguments = {
  478. [1] = "bwdg8t66",
  479. [2] = true
  480. }
  481. if game.Workspace[game.Players.LocalPlayer.Name]:FindFirstChild("InVehicle") then
  482. for i,v in pairs(workspace.Vehicles:GetChildren()) do
  483. if v.Seat.PlayerName.Value == game.Players.LocalPlayer.Name then
  484. local plr = game:GetService("Players").LocalPlayer.Character
  485.  
  486. for i = 0.1,math.random(5,10) do
  487. wait(0.1)
  488. v:SetPrimaryPartCFrame(CFrame.new(tpspot))
  489. end
  490. end
  491. end
  492.  
  493. elseif game.Workspace[game.Players.LocalPlayer.Name]:FindFirstChild("InVehicle") == nil then
  494.  
  495. local Client = {}
  496.  
  497. for i,v in pairs(debug.getregistry()) do
  498. if typeof(v) == "function" then
  499. for i2,v2 in pairs(debug.getupvalues(v)) do
  500. if typeof(v2) == "table" and v2.FireServer then
  501. Client.FireServerT = v2
  502. end
  503. end
  504. end
  505. end
  506.  
  507. for i,v in pairs(workspace.Vehicles:GetChildren()) do
  508. if v.Name == "Camaro" and v.Seat.PlayerName.Value ~= game.Players:GetChildren().Name then
  509. local Arguments = {
  510. [1] = "hqsi66uy",
  511. [2] = v,
  512. [3] = v.Seat
  513. }
  514. Client.FireServerT:FireServer(unpack(Arguments))
  515. wait(0.1)
  516. end
  517. end
  518. wait(0.1)
  519. if game.Workspace[game.Players.LocalPlayer.Name]:FindFirstChild("InVehicle") then
  520. for i,v in pairs(workspace.Vehicles:GetChildren()) do
  521. if v.Seat.PlayerName.Value == game.Players.LocalPlayer.Name then
  522. plr = game:GetService("Players").LocalPlayer.Character
  523. for i = 0.1,math.random(0.1,10) do
  524. wait(0.1)
  525. v:SetPrimaryPartCFrame(CFrame.new(tpspot))
  526. end
  527. end
  528. end
  529.  
  530. elseif game.Workspace[game.Players.LocalPlayer.Name]:FindFirstChild("InVehicle") == nil then
  531.  
  532. local Client = {}
  533.  
  534. for i,v in pairs(debug.getregistry()) do
  535. if typeof(v) == "function" then
  536. for i2,v2 in pairs(debug.getupvalues(v)) do
  537. if typeof(v2) == "table" and v2.FireServer then
  538. Client.FireServerT = v2
  539. end
  540. end
  541. end
  542. end
  543.  
  544. for i,v in pairs(workspace.Vehicles:GetChildren()) do
  545. if v.Name == "Camaro" and v.Seat.PlayerName.Value ~= game.Players:GetChildren().Name then
  546. local Arguments = {
  547. [1] = "hqsi66uy",
  548. [2] = v,
  549. [3] = v.Seat
  550. }
  551. Client.FireServerT:FireServer(unpack(Arguments))
  552. wait(0.1)
  553. local Client = {}
  554.  
  555. for i,v in pairs(debug.getregistry()) do
  556. if typeof(v) == "function" then
  557. for i2,v2 in pairs(debug.getupvalues(v)) do
  558. if typeof(v2) == "table" and v2.FireServer then
  559. Client.FireServerT = v2
  560. end
  561. end
  562. end
  563. end
  564.  
  565.  
  566. local Arguments = {
  567. [1] = "bwdg8t66",
  568. [2] = true
  569. }
  570. end
  571. for i,v in pairs(workspace.Vehicles:GetChildren()) do
  572. if v.Seat.PlayerName.Value == game.Players.LocalPlayer.Name then
  573. plr = game:GetService("Players").LocalPlayer.Character
  574. for i = 0.1,math.random(5,10) do
  575. wait(0.1)
  576. v:SetPrimaryPartCFrame(CFrame.new(tpspot))
  577. end
  578. end
  579. end
  580. end
  581. wait(0.1)
  582. end
  583. local Client = {}
  584.  
  585. for i,v in pairs(debug.getregistry()) do
  586. if typeof(v) == "function" then
  587. for i2,v2 in pairs(debug.getupvalues(v)) do
  588. if typeof(v2) == "table" and v2.FireServer then
  589. Client.FireServerT = v2
  590. end
  591. end
  592. end
  593. end
  594. local Arguments1 = {
  595. [1] = "rewdj8k0"
  596. }
  597. Client.FireServerT:FireServer(unpack(Arguments1))
  598. wait(0.8)
  599.  
  600. local Client = {}
  601.  
  602. for i,v in pairs(debug.getregistry()) do
  603. if typeof(v) == "function" then
  604. for i2,v2 in pairs(debug.getupvalues(v)) do
  605. if typeof(v2) == "table" and v2.FireServer then
  606. Client.FireServerT = v2
  607. end
  608. end
  609. end
  610. end
  611.  
  612.  
  613. local Arguments2 = {
  614. [1] = "hqsi66uy",
  615. [2] = workspace.Vehicles.Camaro,
  616. [3] = workspace.Vehicles.Camaro.Seat
  617. }
  618. Client.FireServerT:FireServer(unpack(Arguments2))
  619. end
  620. local Client = {}
  621.  
  622. for i,v in pairs(debug.getregistry()) do
  623. if typeof(v) == "function" then
  624. for i2,v2 in pairs(debug.getupvalues(v)) do
  625. if typeof(v2) == "table" and v2.FireServer then
  626. Client.FireServerT = v2
  627. end
  628. end
  629. end
  630. end
  631. local Arguments1 = {
  632. [1] = "rewdj8k0"
  633. }
  634. Client.FireServerT:FireServer(unpack(Arguments1))
  635. wait(0.8)
  636.  
  637. local Client = {}
  638.  
  639. for i,v in pairs(debug.getregistry()) do
  640. if typeof(v) == "function" then
  641. for i2,v2 in pairs(debug.getupvalues(v)) do
  642. if typeof(v2) == "table" and v2.FireServer then
  643. Client.FireServerT = v2
  644. end
  645. end
  646. end
  647. end
  648.  
  649.  
  650. local Arguments2 = {
  651. [1] = "hqsi66uy",
  652. [2] = workspace.Vehicles.Camaro,
  653. [3] = workspace.Vehicles.Camaro.Seat
  654. }
  655. Client.FireServerT:FireServer(unpack(Arguments2))
  656. end
  657.  
  658. JailOut.MouseButton1Click:Connect(function()
  659. Coords = Vector3.new(-1174.79065, 19.442131, -1410.61963)
  660. tpMethod()
  661. wait(0.3)
  662. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  663. tpMethod()
  664. warn'Retrying!'
  665. wait(0.3)
  666. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  667. tpMethod()
  668. warn'Retrying!'
  669. wait(0.3)
  670. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  671. tpMethod()
  672. warn'Retrying!'
  673. end
  674. end
  675. end
  676.  
  677. end)
  678.  
  679. JailIn.MouseButton1Click:Connect(function()
  680. Coords = Vector3.new(-1219.97876, 18.6084409, -1747.56519)
  681. tpMethod()
  682. wait(0.3)
  683. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  684. tpMethod()
  685. warn'Retrying!'
  686. wait(0.3)
  687. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  688. tpMethod()
  689. warn'Retrying!'
  690. wait(0.3)
  691. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  692. tpMethod()
  693. warn'Retrying!'
  694. end
  695. end
  696. end
  697. end)
  698. Donut.MouseButton1Click:Connect(function()
  699. Coords = Vector3.new(269.993011, 19.2241955, -1798.16321)
  700. tpMethod()
  701. wait(0.3)
  702. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  703. tpMethod()
  704. warn'Retrying!'
  705. wait(0.3)
  706. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  707. tpMethod()
  708. warn'Retrying!'
  709. wait(0.3)
  710. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  711. tpMethod()
  712. warn'Retrying!'
  713. end
  714. end
  715. end
  716. end)
  717. Gas.MouseButton1Click:Connect(function()
  718. Coords = Vector3.new(-1524.8595, 19.3518066, 702.350647)
  719. tpMethod()
  720. wait(0.3)
  721. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  722. tpMethod()
  723. warn'Retrying!'
  724. wait(0.3)
  725. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  726. tpMethod()
  727. warn'Retrying!'
  728. wait(0.3)
  729. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  730. tpMethod()
  731. warn'Retrying!'
  732. end
  733. end
  734. end
  735. end)
  736. Crim20.MouseButton1Click:Connect(function()
  737. Coords = Vector3.new(1733.53003, 19.7935696, -1730.94409)
  738. tpMethod()
  739. wait(0.3)
  740. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  741. tpMethod()
  742. warn'Retrying!'
  743. wait(0.3)
  744. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  745. tpMethod()
  746. warn'Retrying!'
  747. wait(0.3)
  748. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  749. tpMethod()
  750. warn'Retrying!'
  751. end
  752. end
  753. end
  754. end)
  755. Cop20.MouseButton1Click:Connect(function()
  756. Coords = Vector3.new(1567.99939, 74.6116562, 1693.98206)
  757. tpMethod()
  758. wait(0.3)
  759. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  760. tpMethod()
  761. warn'Retrying!'
  762. wait(0.3)
  763. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  764. tpMethod()
  765. warn'Retrying!'
  766. wait(0.3)
  767. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  768. tpMethod()
  769. warn'Retrying!'
  770. end
  771. end
  772. end
  773. end)
  774. Military.MouseButton1Click:Connect(function()
  775. Coords = Vector3.new(732.563721, 19.3401775, -323.676056)
  776. tpMethod()
  777. wait(0.3)
  778. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  779. tpMethod()
  780. warn'Retrying!'
  781. wait(0.3)
  782. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  783. tpMethod()
  784. warn'Retrying!'
  785. wait(0.3)
  786. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  787. tpMethod()
  788. warn'Retrying!'
  789. end
  790. end
  791. end
  792. end)
  793. Hos.MouseButton1Click:Connect(function()
  794. Coords = Vector3.new(-101.360069, 19.3193722, 1081.86536)
  795. tpMethod()
  796. wait(0.3)
  797. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  798. tpMethod()
  799. warn'Retrying!'
  800. wait(0.3)
  801. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  802. tpMethod()
  803. warn'Retrying!'
  804. wait(0.3)
  805. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  806. tpMethod()
  807. warn'Retrying!'
  808. end
  809. end
  810. end
  811. end)
  812. BankIn.MouseButton1Click:Connect(function()
  813. Coords = Vector3.new(25.2962189, 18.8236351, 853.150024)
  814. tpMethod()
  815. wait(0.3)
  816. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  817. tpMethod()
  818. warn'Retrying!'
  819. wait(0.3)
  820. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  821. tpMethod()
  822. warn'Retrying!'
  823. wait(0.3)
  824. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  825. tpMethod()
  826. warn'Retrying!'
  827. end
  828. end
  829. end
  830. end)
  831. BankOut.MouseButton1Click:Connect(function()
  832. Coords = Vector3.new(11.7255507, 19.5063725, 782.583191)
  833. tpMethod()
  834. wait(0.3)
  835. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  836. tpMethod()
  837. warn'Retrying!'
  838. wait(0.3)
  839. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  840. tpMethod()
  841. warn'Retrying!'
  842. wait(0.3)
  843. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  844. tpMethod()
  845. warn'Retrying!'
  846. end
  847. end
  848. end
  849. end)
  850. JewIn.MouseButton1Click:Connect(function()
  851. Coords = Vector3.new(126.982529, 18.4065217, 1315.35742)
  852. tpMethod()
  853. wait(0.3)
  854. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  855. tpMethod()
  856. warn'Retrying!'
  857. wait(0.3)
  858. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  859. tpMethod()
  860. warn'Retrying!'
  861. wait(0.3)
  862. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  863. tpMethod()
  864. warn'Retrying!'
  865. end
  866. end
  867. end
  868. end)
  869. JewOut.MouseButton1Click:Connect(function()
  870. Coords = Vector3.new(142.584564, 19.1970043, 1364.11658)
  871. tpMethod()
  872. wait(0.3)
  873. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  874. tpMethod()
  875. warn'Retrying!'
  876. wait(0.3)
  877. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  878. tpMethod()
  879. warn'Retrying!'
  880. wait(0.3)
  881. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  882. tpMethod()
  883. warn'Retrying!'
  884. end
  885. end
  886. end
  887. end)
  888. Museum.MouseButton1Click:Connect(function()
  889. Coords = Vector3.new(1088.46558, 135.827774, 1236.9895)
  890. tpMethod()
  891. wait(0.3)
  892. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  893. tpMethod()
  894. warn'Retrying!'
  895. wait(0.3)
  896. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  897. tpMethod()
  898. warn'Retrying!'
  899. wait(0.3)
  900. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  901. tpMethod()
  902. warn'Retrying!'
  903. end
  904. end
  905. end
  906. end)
  907. Power.MouseButton1Click:Connect(function()
  908. Coords = Vector3.new(624.191528, 38.4169159, 2420.40552)
  909. tpMethod()
  910. wait(0.3)
  911. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  912. tpMethod()
  913. warn'Retrying!'
  914. wait(0.3)
  915. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  916. tpMethod()
  917. warn'Retrying!'
  918. wait(0.3)
  919. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  920. tpMethod()
  921. warn'Retrying!'
  922. end
  923. end
  924. end
  925. end)
  926. Vol.MouseButton1Click:Connect(function()
  927. Coords = Vector3.new(1825.87939, 47.9439697, -1626.63855)
  928. tpMethod()
  929. wait(0.3)
  930. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  931. tpMethod()
  932. warn'Retrying!'
  933. wait(0.3)
  934. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  935. tpMethod()
  936. warn'Retrying!'
  937. wait(0.3)
  938. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  939. tpMethod()
  940. warn'Retrying!'
  941. end
  942. end
  943. end
  944. end)
  945. City.MouseButton1Click:Connect(function()
  946. Coords = Vector3.new(-225.264603, 19.2231693, 1591.35254)
  947.  
  948. tpMethod()
  949. wait(0.3)
  950. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  951. tpMethod()
  952. warn'Retrying!'
  953. wait(0.3)
  954. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  955. tpMethod()
  956. warn'Retrying!'
  957. wait(0.3)
  958. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  959. tpMethod()
  960. warn'Retrying!'
  961. end
  962. end
  963. end
  964. end)
  965. Million.MouseButton1Click:Connect(function()
  966. Coords = Vector3.new(383.737793, 18.2678299, -1692.91589)
  967. tpMethod()
  968. wait(0.3)
  969. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  970. tpMethod()
  971. warn'Retrying!'
  972. wait(0.3)
  973. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  974. tpMethod()
  975. warn'Retrying!'
  976. wait(0.3)
  977. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  978. tpMethod()
  979. warn'Retrying!'
  980. end
  981. end
  982. end
  983. end)
  984. Gun.MouseButton1Click:Connect(function()
  985. Coords = Vector3.new(378.986115, 19.2647201, 531.028564)
  986. tpMethod()
  987. wait(0.3)
  988. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  989. tpMethod()
  990. warn'Retrying!'
  991. wait(0.3)
  992. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  993. tpMethod()
  994. warn'Retrying!'
  995. wait(0.3)
  996. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  997. tpMethod()
  998. warn'Retrying!'
  999. end
  1000. end
  1001. end
  1002. end)
  1003. Airport.MouseButton1Click:Connect(function()
  1004. Coords = Vector3.new(-1198.19043, 41.5717506, 2835.65063)
  1005. tpMethod()
  1006. wait(0.3)
  1007. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1008. tpMethod()
  1009. warn'Retrying!'
  1010. wait(0.3)
  1011. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1012. tpMethod()
  1013. warn'Retrying!'
  1014. wait(0.3)
  1015. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1016. tpMethod()
  1017. warn'Retrying!'
  1018. end
  1019. end
  1020. end
  1021. end)
  1022. StationJail.MouseButton1Click:Connect(function()
  1023. Coords = Vector3.new(-1188.58008, 18.900074, -1590.3606)
  1024. tpMethod()
  1025. wait(0.3)
  1026. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1027. tpMethod()
  1028. warn'Retrying!'
  1029. wait(0.3)
  1030. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1031. tpMethod()
  1032. warn'Retrying!'
  1033. wait(0.3)
  1034. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1035. tpMethod()
  1036. warn'Retrying!'
  1037. end
  1038. end
  1039. end
  1040. end)
  1041. StationCity.MouseButton1Click:Connect(function()
  1042. Coords = Vector3.new(747.707947, 71.0515823, 1122.69165)
  1043. tpMethod()
  1044. wait(0.3)
  1045. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1046. tpMethod()
  1047. warn'Retrying!'
  1048. wait(0.3)
  1049. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1050. tpMethod()
  1051. warn'Retrying!'
  1052. wait(0.3)
  1053. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1054. tpMethod()
  1055. warn'Retrying!'
  1056. end
  1057. end
  1058. end
  1059. end)
  1060. Fire.MouseButton1Click:Connect(function()
  1061. Coords = Vector3.new(-956.105469, 33.1979141, 1349.41968)
  1062. tpMethod()
  1063. wait(0.3)
  1064. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1065. tpMethod()
  1066. warn'Retrying!'
  1067. wait(0.3)
  1068. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1069. tpMethod()
  1070. warn'Retrying!'
  1071. wait(0.3)
  1072. if (Coords - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 50 then
  1073. tpMethod()
  1074. warn'Retrying!'
  1075. end
  1076. end
  1077. end
  1078. end)
  1079.  
  1080. local function GetPlayerFromString(nameString)
  1081. local matches= {}
  1082. for _, player in ipairs (game.Players:GetPlayers()) do
  1083. if string.lower(player.Name):match(string.lower(nameString)) then
  1084. table.insert(matches, player)
  1085. end
  1086. end
  1087. if #matches== 1 then
  1088. Coords = matches[1].Character.HumanoidRootPart.Position
  1089. if game.Workspace[matches[1].Name]:FindFirstChild("InVehicle") then
  1090. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  1091. if v.Seat.PlayerName.Value == matches[1].Name and v:FindFirstChild("Passenger") then
  1092. if v.Passenger.PlayerName.Value ~= game.Players:GetChildren().Name then
  1093. local Client = {}
  1094.  
  1095. for i,v in pairs(debug.getregistry()) do
  1096. if typeof(v) == "function" then
  1097. for i2,v2 in pairs(debug.getupvalues(v)) do
  1098. if typeof(v2) == "table" and v2.FireServer then
  1099. Client.FireServerT = v2
  1100. end
  1101. end
  1102. end
  1103. end
  1104. local EnterPassenger = {
  1105. [1] = "hqsi66uy",
  1106. [2] = v,
  1107. [3] = v.Passenger
  1108. }
  1109. Client.FireServerT:FireServer(unpack(EnterPassenger))
  1110. end
  1111. elseif v.Seat.PlayerName.Value == matches[1].Name and not v:FindFirstChild("Passenger") then
  1112. tpMethod()
  1113. end
  1114. end
  1115. elseif not game.Workspace[matches[1].Name]:FindFirstChild("InVehicle") then
  1116. tpMethod()
  1117. end
  1118. else
  1119. return nil
  1120. end
  1121. end
  1122.  
  1123. PlayerName.FocusLost:Connect(function(enterPressed)
  1124. if enterPressed then
  1125. GetPlayerFromString(PlayerName.Text)
  1126. end
  1127. end)
  1128. PlayerName.ClearTextOnFocus = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement