Advertisement
Guest User

[OMG!]RubyRose 1.5

a guest
Apr 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.74 KB | None | 0 0
  1. -- Ruby Rose Turner 1.5 by SourDeluxe
  2. local RubyRoseTurner15 = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local Bar1 = Instance.new("Frame")
  5. local Bar2 = Instance.new("Frame")
  6. local MainImage = Instance.new("ImageLabel")
  7. local fastm9 = Instance.new("TextButton")
  8. local JbUIButton = Instance.new("TextButton")
  9. local JailbreakGUIButton = Instance.new("TextButton")
  10. local XButton = Instance.new("TextButton")
  11. local XploitGemButton = Instance.new("TextButton")
  12. local SourDeluxeButton = Instance.new("TextButton")
  13. local AllGuns = Instance.new("TextButton")
  14. local CtrlDeleteButton = Instance.new("TextButton")
  15. local RocketFuelButton = Instance.new("TextButton")
  16. local OpenerFrame = Instance.new("Frame")
  17. local OpenerImage = Instance.new("ImageLabel")
  18. local OpenerButton = Instance.new("TextButton")
  19. --Properties:
  20. RubyRoseTurner15.Name = "RubyRoseTurner1.5"
  21. RubyRoseTurner15.Parent = game.CoreGui
  22.  
  23. Main.Name = "Main"
  24. Main.Parent = RubyRoseTurner15
  25. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Main.Position = UDim2.new(0.621036351, 0, 0.448943675, 0)
  27. Main.Size = UDim2.new(0, 350, 0, 245)
  28. Main.Active = true
  29. Main.Draggable = true
  30.  
  31. Bar1.Name = "Bar1"
  32. Bar1.Parent = Main
  33. Bar1.BackgroundColor3 = Color3.new(1, 0.0941177, 0.105882)
  34. Bar1.Size = UDim2.new(0, 324, 0, 32)
  35.  
  36. Bar2.Name = "Bar2"
  37. Bar2.Parent = Bar1
  38. Bar2.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  39. Bar2.BorderSizePixel = 0
  40. Bar2.Size = UDim2.new(0, 324, 0, 24)
  41.  
  42. MainImage.Name = "MainImage"
  43. MainImage.Parent = Main
  44. MainImage.BackgroundColor3 = Color3.new(1, 1, 1)
  45. MainImage.Position = UDim2.new(0, 0, 0.13278012, 0)
  46. MainImage.Size = UDim2.new(0, 350, 0, 212)
  47. MainImage.Image = "rbxassetid://3104935062"
  48.  
  49. fastm9.Name = "fastm9"
  50. fastm9.Parent = Main
  51. fastm9.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  52. fastm9.Position = UDim2.new(0.0542857125, 0, 0.3278009, 0)
  53. fastm9.Size = UDim2.new(0, 149, 0, 27)
  54. fastm9.Font = Enum.Font.SourceSans
  55. fastm9.Text = "INSANITY M9"
  56. fastm9.TextColor3 = Color3.new(0, 0, 0)
  57. fastm9.TextScaled = true
  58. fastm9.TextSize = 14
  59. fastm9.TextWrapped = true
  60. fastm9.MouseButton1Down:connect(function()
  61. local Player = game.Players.LocalPlayer.Name
  62. local Gun = "M9" -- < -- Gun Name
  63. local Run = game:GetService("RunService")
  64.  
  65. Gun = game.Players[Player].Character[Gun]
  66. local Mouse = game.Players.LocalPlayer:GetMouse()
  67. local Down = false
  68. local Sound = Gun.Handle.FireSound
  69.  
  70. function CreateRay(Point_A, Point_B)
  71. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  72. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  73. local Dist = (Point_A - Pos).Magnitude
  74. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  75.  
  76. return CFrame, Dist, Ray
  77. end
  78.  
  79. function FireLaser(target)
  80. coroutine.resume(coroutine.create(function()
  81. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  82. local Bullet = Instance.new("Part", Gun)
  83. Bullet.BrickColor = BrickColor.Yellow()
  84. Bullet.Material = "Neon"
  85. Bullet.Anchored = true
  86. Bullet.CanCollide = false
  87. Bullet.Size = Vector3.new(0.2, 0.2, D)
  88. Bullet.CFrame = C
  89.  
  90. local bulletTable = {}
  91. table.insert(bulletTable, {
  92. Hit = target,
  93. Distance = D,
  94. Cframe = C,
  95. RayObject = R
  96. })
  97.  
  98. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  99. local C = Sound:Clone()
  100. C.Parent = Gun
  101. C:Play()
  102. wait(0.05)
  103. Bullet:Remove()
  104. end))
  105. end
  106.  
  107. Mouse.Button1Down:Connect(function()
  108. Down = true
  109. end)
  110.  
  111.  
  112. Mouse.Button1Up:Connect(function()
  113. Down = false
  114. end)
  115.  
  116. while Run.Stepped:wait() do
  117. if Down == true then
  118. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  119. FireLaser(Mouse.Target)
  120. end
  121. end
  122. end)
  123. JbUIButton.Name = "JbUIButton"
  124. JbUIButton.Parent = Main
  125. JbUIButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  126. JbUIButton.Position = UDim2.new(0.0542857125, 0, 0.510373473, 0)
  127. JbUIButton.Size = UDim2.new(0, 149, 0, 27)
  128. JbUIButton.Font = Enum.Font.SourceSans
  129. JbUIButton.Text = "JB UI"
  130. JbUIButton.TextColor3 = Color3.new(0, 0, 0)
  131. JbUIButton.TextScaled = true
  132. JbUIButton.TextSize = 14
  133. JbUIButton.TextWrapped = true
  134. JbUIButton.MouseButton1Down:connect (function()
  135. -- jailbreakUI by Ruby
  136. local jailbreakUI = Instance.new("ScreenGui")
  137. local main = Instance.new("Frame")
  138. local fly = Instance.new("TextButton")
  139. local gravon = Instance.new("TextButton")
  140. local gravoff = Instance.new("TextButton")
  141. local carfly = Instance.new("TextButton")
  142. local advanced = Instance.new("TextButton")
  143. local admain = Instance.new("Frame")
  144. local jewl = Instance.new("TextButton")
  145. local volcano = Instance.new("TextButton")
  146. local crimbase = Instance.new("TextButton")
  147. local bank = Instance.new("TextButton")
  148. local ctrldel = Instance.new("TextButton")
  149. local x = Instance.new("TextButton")
  150. --Properties:
  151. jailbreakUI.Name = "jailbreakUI"
  152. jailbreakUI.Parent = game.CoreGui
  153.  
  154. main.Name = "main"
  155. main.Parent = jailbreakUI
  156. main.BackgroundColor3 = Color3.new(0.423529, 0.423529, 0.423529)
  157. main.Position = UDim2.new(0.15390563, 0, 0.282245845, 0)
  158. main.Size = UDim2.new(0, 411, 0, 352)
  159. main.Active = true
  160. main.Draggable = true
  161.  
  162. fly.Name = "fly"
  163. fly.Parent = main
  164. fly.BackgroundColor3 = Color3.new(0.576471, 0, 0.866667)
  165. fly.Position = UDim2.new(0.255474448, 0, 0.0255681835, 0)
  166. fly.Size = UDim2.new(0, 200, 0, 50)
  167. fly.Font = Enum.Font.SourceSans
  168. fly.Text = "FLY"
  169. fly.TextColor3 = Color3.new(0, 0, 0)
  170. fly.TextSize = 14
  171. fly.MouseButton1Down:connect (function()
  172. game.Workspace.Gravity = 0
  173. end)
  174. gravon.Name = "gravon"
  175. gravon.Parent = main
  176. gravon.BackgroundColor3 = Color3.new(0.576471, 0, 0.866667)
  177. gravon.Position = UDim2.new(0.255474448, 0, 0.190340906, 0)
  178. gravon.Size = UDim2.new(0, 200, 0, 50)
  179. gravon.Font = Enum.Font.SourceSans
  180. gravon.Text = "GRAVITY START"
  181. gravon.TextColor3 = Color3.new(0, 0, 0)
  182. gravon.TextSize = 14
  183. gravon.MouseButton1Down:connect (function()
  184. game.Workspace.Gravity = 20
  185. end)
  186. gravoff.Name = "gravoff"
  187. gravoff.Parent = main
  188. gravoff.BackgroundColor3 = Color3.new(0.576471, 0, 0.866667)
  189. gravoff.Position = UDim2.new(0.255474448, 0, 0.357954562, 0)
  190. gravoff.Size = UDim2.new(0, 200, 0, 50)
  191. gravoff.Font = Enum.Font.SourceSans
  192. gravoff.Text = "GRAVITY STOP"
  193. gravoff.TextColor3 = Color3.new(0, 0, 0)
  194. gravoff.TextSize = 14
  195. gravoff.MouseButton1Down:connect (function()
  196. game.Workspace.Gravity = 196.2
  197. end)
  198. carfly.Name = "carfly"
  199. carfly.Parent = main
  200. carfly.BackgroundColor3 = Color3.new(0.576471, 0, 0.866667)
  201. carfly.Position = UDim2.new(0.253041357, 0, 0.522727251, 0)
  202. carfly.Size = UDim2.new(0, 200, 0, 50)
  203. carfly.Font = Enum.Font.SourceSans
  204. carfly.Text = "CAR FLY"
  205. carfly.TextColor3 = Color3.new(0, 0, 0)
  206. carfly.TextSize = 14
  207. carfly.MouseButton1Down:connect (function()
  208. local plr = game:GetService("Players").LocalPlayer
  209. local m = plr:GetMouse()
  210. m.KeyDown:connect(function(k)
  211. if k:byte() == 114 then
  212. plrh = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid'
  213. plrh:ChangeState('Jumping')
  214. wait()
  215. plrh:ChangeState('Seated')
  216. end
  217. end)
  218. end)
  219. advanced.Name = "advanced"
  220. advanced.Parent = main
  221. advanced.BackgroundColor3 = Color3.new(0.576471, 0, 0.866667)
  222. advanced.Position = UDim2.new(0.253041357, 0, 0.732954562, 0)
  223. advanced.Size = UDim2.new(0, 200, 0, 50)
  224. advanced.Font = Enum.Font.SourceSans
  225. advanced.Text = "ADVANCED"
  226. advanced.TextColor3 = Color3.new(0, 0, 0)
  227. advanced.TextSize = 14
  228. advanced.MouseButton1Down:connect (function()
  229. admain.Visible = true
  230. end)
  231. admain.Name = "admain"
  232. admain.Parent = jailbreakUI
  233. admain.BackgroundColor3 = Color3.new(0.403922, 0.403922, 0.403922)
  234. admain.Position = UDim2.new(0.497293115, 0, 0.282245815, 0)
  235. admain.Size = UDim2.new(0, 136, 0, 352)
  236. admain.Visible = false
  237. admain.Active = true
  238. admain.draggable = true
  239.  
  240. jewl.Name = "jewl"
  241. jewl.Parent = admain
  242. jewl.BackgroundColor3 = Color3.new(0.552941, 0, 0.831373)
  243. jewl.Size = UDim2.new(0, 136, 0, 50)
  244. jewl.Font = Enum.Font.SourceSans
  245. jewl.Text = "JEWLERY"
  246. jewl.TextColor3 = Color3.new(0, 0, 0)
  247. jewl.TextSize = 14
  248. jewl.MouseButton1Down:connect (function()
  249. jewl.MouseButton1Down:connect(function()
  250. for i = 1,45 do
  251. wait()
  252. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407)
  253. end
  254. end)
  255. end)
  256. volcano.Name = "volcano"
  257. volcano.Parent = admain
  258. volcano.BackgroundColor3 = Color3.new(0.552941, 0, 0.831373)
  259. volcano.Position = UDim2.new(0, 0, 0.190340906, 0)
  260. volcano.Size = UDim2.new(0, 136, 0, 50)
  261. volcano.Font = Enum.Font.SourceSans
  262. volcano.Text = "VOLCANO"
  263. volcano.TextColor3 = Color3.new(0, 0, 0)
  264. volcano.TextSize = 14
  265. volcano.MouseButton1Down:connect(function()
  266. for i = 1,45 do
  267. wait()
  268. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626)
  269. end
  270. end)
  271. crimbase.Name = "crimbase"
  272. crimbase.Parent = admain
  273. crimbase.BackgroundColor3 = Color3.new(0.552941, 0, 0.831373)
  274. crimbase.Position = UDim2.new(0, 0, 0.380681813, 0)
  275. crimbase.Size = UDim2.new(0, 136, 0, 50)
  276. crimbase.Font = Enum.Font.SourceSans
  277. crimbase.Text = "CRIMBASE"
  278. crimbase.TextColor3 = Color3.new(0, 0, 0)
  279. crimbase.TextSize = 14
  280. crimbase.MouseButton1Down:connect(function()
  281. for i = 1,45 do
  282. wait()
  283. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  284. end
  285. end)
  286. bank.Name = "bank"
  287. bank.Parent = admain
  288. bank.BackgroundColor3 = Color3.new(0.552941, 0, 0.831373)
  289. bank.Position = UDim2.new(0, 0, 0.571022749, 0)
  290. bank.Size = UDim2.new(0, 136, 0, 50)
  291. bank.Font = Enum.Font.SourceSans
  292. bank.Text = "BANK"
  293. bank.TextColor3 = Color3.new(0, 0, 0)
  294. bank.TextSize = 14
  295. bank.MouseButton1Down:connect(function()
  296. for i = 1,45 do
  297. wait()
  298. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348)
  299. end
  300. end)
  301. ctrldel.Name = "ctrldel"
  302. ctrldel.Parent = admain
  303. ctrldel.BackgroundColor3 = Color3.new(0.552941, 0, 0.831373)
  304. ctrldel.Position = UDim2.new(0, 0, 0.761363626, 0)
  305. ctrldel.Size = UDim2.new(0, 136, 0, 50)
  306. ctrldel.Font = Enum.Font.SourceSans
  307. ctrldel.Text = "CTRLDEL"
  308. ctrldel.TextColor3 = Color3.new(0, 0, 0)
  309. ctrldel.TextSize = 14
  310. ctrldel.MouseButton1Down:connect (function()
  311. local Plr = game:GetService("Players").LocalPlayer
  312. local Mouse = Plr:GetMouse()
  313.  
  314. Mouse.Button1Down:connect(function()
  315. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  316. if not Mouse.Target then return end
  317. Mouse.Target:Destroy()
  318. end)
  319. end)
  320. x.Name = "x"
  321. x.Parent = admain
  322. x.BackgroundColor3 = Color3.new(0.223529, 0.341176, 1)
  323. x.Position = UDim2.new(0, 0, 0.917613626, 0)
  324. x.Size = UDim2.new(0, 136, 0, 29)
  325. x.Font = Enum.Font.SourceSans
  326. x.Text = "CLOSE"
  327. x.TextColor3 = Color3.new(0, 0, 0)
  328. x.TextSize = 14
  329. x.MouseButton1Down:connect (function()
  330. admain.Visible = false
  331. end)
  332. end)
  333. JailbreakGUIButton.Name = "JailbreakGUIButton"
  334. JailbreakGUIButton.Parent = Main
  335. JailbreakGUIButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  336. JailbreakGUIButton.Position = UDim2.new(0.0542857125, 0, 0.680497885, 0)
  337. JailbreakGUIButton.Size = UDim2.new(0, 149, 0, 27)
  338. JailbreakGUIButton.Font = Enum.Font.SourceSans
  339. JailbreakGUIButton.Text = "JAILBREAK GUI"
  340. JailbreakGUIButton.TextColor3 = Color3.new(0, 0, 0)
  341. JailbreakGUIButton.TextScaled = true
  342. JailbreakGUIButton.TextSize = 14
  343. JailbreakGUIButton.TextWrapped = true
  344. JailbreakGUIButton.MouseButton1Down:connect (function()
  345. local plr = game:GetService("Players").LocalPlayer
  346.  
  347. local TpMethod = 1
  348.  
  349. function JailbreakTp(...)
  350. getfenv()["TpMethod" .. TpMethod](...)
  351. end
  352.  
  353. function TpMethod1(...)
  354. local char = plr.Character
  355. local root = char.HumanoidRootPart
  356. local args = {...}
  357. for i=0,1,0.05 do
  358. wait()
  359. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  360. end
  361. end
  362.  
  363. function TpMethod2(...)
  364. local args = {...}
  365. local char = plr.Character
  366. local target = Vector3.new(unpack(args,1,3))
  367. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  368. dist = math.floor(dist / 100) + 1
  369. for i=0,dist * 4 do
  370. wait()
  371. char:MoveTo(Vector3.new(...))
  372. end
  373. if args[#args] == true then
  374. wait()
  375. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  376. end
  377. end
  378.  
  379. function Tween(obj, t, properties)
  380. local TweenService = game:GetService("TweenService")
  381. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  382. local tween = TweenService:Create(obj,tweenInfo,properties)
  383. tween:Play()
  384. return tween
  385. end
  386.  
  387. local Tracers = {}
  388.  
  389. local function AddLasso(p,team)
  390. if not Tracers[team.Name] then return end
  391. if p == plr then return end
  392. spawn(function()
  393. if p.Character then
  394. local l = Instance.new("SelectionPartLasso")
  395. l.Parent = p.Character
  396. l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  397. l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  398. l.Visible = true
  399. l.Color3 = team.TeamColor.Color
  400. for i=0,5 do
  401. local sg = Instance.new("SurfaceGui")
  402. sg.Face = i
  403. sg.Parent = p.Character
  404. sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  405. sg.AlwaysOnTop = true
  406. local f = Instance.new("Frame", sg)
  407. f.Size = UDim2.new(1,0,1,0)
  408. f.BorderSizePixel = 0
  409. f.BackgroundColor3 = team.TeamColor.Color
  410. f.BackgroundTransparency = 0.5
  411. end
  412. end
  413. end)
  414. end
  415.  
  416. local function RemoveLasso(p)
  417. if not p.Character then return end
  418. for i,v in pairs(p.Character:GetDescendants()) do
  419. if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  420. v:Destroy()
  421. end
  422. end
  423. end
  424.  
  425. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  426. team.PlayerAdded:connect(function(p)
  427. AddLasso(p,team)
  428. end)
  429.  
  430. team.PlayerRemoved:connect(function(p)
  431. RemoveLasso(p)
  432. end)
  433. end
  434.  
  435. function ToggleTracers(team, bool)
  436. Tracers[team] = bool
  437. local t = game:GetService("Teams"):FindFirstChild(team)
  438. if not t then return end
  439. for i,v in pairs(t:GetPlayers()) do
  440. if bool then
  441. AddLasso(v,t)
  442. else
  443. RemoveLasso(v)
  444. end
  445. end
  446. end
  447.  
  448. local function CharAdded(plr, char)
  449. if Tracers[tostring(plr.Team)] then
  450. AddLasso(plr,plr.Team)
  451. end
  452. end
  453.  
  454. local function PlrAdded(plr)
  455. plr.CharacterAdded:connect(function(char)
  456. CharAdded(plr, char)
  457. end)
  458. if plr.Character then
  459. CharAdded(plr, plr.Character)
  460. end
  461. end
  462.  
  463. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  464. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  465. PlrAdded(v)
  466. end
  467.  
  468. --Creating Gui--
  469.  
  470. local function Create(classname)
  471. return function(t)
  472. local ins = Instance.new(classname)
  473. for i,v in pairs(t) do
  474. ins[i] = v
  475. end
  476. return ins
  477. end
  478. end
  479.  
  480. --local parent = game:GetService("CoreGui"):WaitForChild("RobloxGui")
  481. local main = Create "Frame" {
  482. Active = true,
  483. ClipsDescendants = true,
  484. Draggable = true,
  485. BackgroundColor3 = Color3.new(1,1,1),
  486. BorderSizePixel = 0,
  487. Size = UDim2.new(0,400,0,300),
  488. Position = UDim2.new(0.5,-200,0,-300),
  489. BackgroundTransparency = 1,
  490. Parent = Instance.new("ScreenGui", plr.PlayerGui)--parent
  491. }
  492. do
  493. local effect = Create "Frame" {
  494. Parent = main,
  495. Size = UDim2.new(1,0,0,50),
  496. BackgroundColor3 = Color3.fromRGB(85,170,255),
  497. BorderSizePixel = 0,
  498. ClipsDescendants = true,
  499. }
  500. local lb = Create "TextLabel" {
  501. Parent = effect,
  502. Size = UDim2.new(1,0,1,0),
  503. BackgroundTransparency = 1,
  504. BorderSizePixel = 0,
  505. TextSize = 30,
  506. TextColor3 = Color3.new(1,1,1),
  507. TextXAlignment = "Left",
  508. Font = "SourceSansBold",
  509. Text = "Jailbreak GUI",
  510. ZIndex = 2,
  511. }
  512. local function GTween()
  513. lb:TweenPosition(UDim2.new(1,10,0,0), nil,nil,3,true,function(ts)
  514. if ts == Enum.TweenStatus.Completed then
  515. lb.Position = UDim2.new(0,0 - lb.TextBounds.X - 2,0,0)
  516. GTween()
  517. end
  518. end)
  519. end
  520. GTween()
  521. end
  522.  
  523. local Menu = Create "Frame" {
  524. BackgroundColor3 = Color3.new(1,1,1),
  525. BorderSizePixel = 0,
  526. Position = UDim2.new(0,0,0,50),
  527. Size = UDim2.new(1,0,1,-50),
  528. Parent = main,
  529. }
  530.  
  531. local MenuLabel = Create "TextLabel" {
  532. BackgroundTransparency = 1,
  533. BorderSizePixel = 0,
  534. TextColor3 = Color3.new(0,0,0),
  535. TextSize = 20,
  536. Font = "SourceSans",
  537. Text = "Made by refrfgrtgef for v3rm\n(won't tell you my roblox name)",
  538. TextWrapped = true,
  539. Size = UDim2.new(1,0,0,50),
  540. Parent = Menu
  541. }
  542.  
  543. local function CreateButton(text,parent)
  544. return Create "TextButton" {
  545. Active = true,
  546. AutoButtonColor = true,
  547. BackgroundColor3 = Color3.fromRGB(0,155,232),
  548. BorderSizePixel = 1,
  549. Size = UDim2.new(0,100,0,30),
  550. Font = "SourceSansBold",
  551. TextColor3 = Color3.new(1,1,0),
  552. TextSize = 20,
  553. Text = text,
  554. Parent = parent
  555. }
  556. end
  557.  
  558. local function CreateFrame(name)
  559. local f = Create "Frame" {
  560. BackgroundColor3 = Color3.new(1,1,1),
  561. BorderSizePixel = 0,
  562. Position = UDim2.new(0,0,0,50),
  563. Size = UDim2.new(1,0,1,-50),
  564. Visible = false,
  565. }
  566. local lb = Create "TextLabel" {
  567. BackgroundTransparency = 1,
  568. BorderSizePixel = 0,
  569. TextSize = 20,
  570. TextColor3 = Color3.new(1,1,0),
  571. Position = UDim2.new(0,0,0,5),
  572. Text = name,
  573. Parent = f,
  574. TextXAlignment = "Center",
  575. TextYAlignment = "Center",
  576. Size = UDim2.new(1,0,0,30),
  577. }
  578. local exit = CreateButton("Back", f)
  579. exit.Position = UDim2.new(0.5,-50,1,-45)
  580. exit.MouseButton1Click:connect(function()
  581. Menu.Visible = true
  582. f.Visible = false
  583. ActiveFrame = Menu
  584. end)
  585. return f
  586. end
  587.  
  588. ActiveFrame = Menu
  589.  
  590. local TeleportsFrame = CreateFrame("Teleports")
  591. TeleportsFrame.Parent = main
  592.  
  593. local BankIn = CreateButton("Bank (In)", TeleportsFrame)
  594. BankIn.Position = UDim2.new(0,15,0,40)
  595. BankIn.Size = UDim2.new(0,80,0,30)
  596. BankIn.MouseButton1Click:connect(function()
  597. JailbreakTp(32,0.715,814, true)
  598. end)
  599.  
  600. local BankOut = CreateButton("Bank (Out)", TeleportsFrame)
  601. BankOut.Position = UDim2.new(0,105,0,40)
  602. BankOut.MouseButton1Click:connect(function()
  603. JailbreakTp(10, 18, 784)
  604. end)
  605.  
  606. local JailIn = CreateButton("Jail (In)", TeleportsFrame)
  607. JailIn.Position = UDim2.new(0,215,0,40)
  608. JailIn.Size = UDim2.new(0,80,0,30)
  609. JailIn.MouseButton1Click:connect(function()
  610. JailbreakTp(-1310, 18, -1658)
  611. end)
  612.  
  613. local JailOut = CreateButton("Jail (Out)", TeleportsFrame)
  614. JailOut.Position = UDim2.new(0,305,0,40)
  615. JailOut.Size = UDim2.new(0,80,0,30)
  616. JailOut.MouseButton1Click:connect(function()
  617. JailbreakTp(-1133, 18, -1355)
  618. end)
  619.  
  620. local Garage = CreateButton("Garage", TeleportsFrame)
  621. Garage.Position = UDim2.new(0,335,0,120)--UDim2.new(0,10,0,80)
  622. Garage.Size = UDim2.new(0,60,0,30)
  623. Garage.MouseButton1Click:connect(function()
  624. JailbreakTp(-352, 23, 1175)
  625. end)
  626.  
  627. local JewelIn = CreateButton("Jewelry (In)", TeleportsFrame)
  628. JewelIn.Position = UDim2.new(0,25,0,80)
  629. JewelIn.MouseButton1Click:connect(function()
  630. JailbreakTp(133, 18, 1320, true)
  631. end)
  632.  
  633. local JewelOut = CreateButton("Jewelry (Out)", TeleportsFrame)
  634. JewelOut.Position = UDim2.new(0,135,0,80)
  635. JewelOut.Size = UDim2.new(0,115,0,30)
  636. JewelOut.MouseButton1Click:connect(function()
  637. JailbreakTp(142, 18, 1365)
  638. end)
  639.  
  640. local Crim1 = CreateButton("Crim base 1", TeleportsFrame)
  641. Crim1.Position = UDim2.new(0,5,0,120)
  642. Crim1.MouseButton1Click:connect(function()
  643. JailbreakTp(-226, 18, 1590, true)
  644. end)
  645.  
  646. local Crim2 = CreateButton("Crim base 2", TeleportsFrame)
  647. Crim2.Position = UDim2.new(0,115,0,120)
  648. Crim2.MouseButton1Click:connect(function()
  649. JailbreakTp(true, 1637, 50, -1768, true)
  650. end)
  651.  
  652. local Donut = CreateButton("Donut Shop", TeleportsFrame)
  653. Donut.Position = UDim2.new(0,225,0,120)
  654. Donut.MouseButton1Click:connect(function()
  655. JailbreakTp(268, 18, -1760, true)
  656. end)
  657.  
  658. local Gas = CreateButton("Gas Station", TeleportsFrame)
  659. Gas.Position = UDim2.new(0,260,0,80)
  660. Gas.MouseButton1Click:connect(function()
  661. JailbreakTp(-1583, 18, 724, true)
  662. end)
  663.  
  664. local TeleportsBtn = CreateButton("Teleports", MenuLabel)
  665. TeleportsBtn.Position = UDim2.new(0.5,-50,0,60)
  666. TeleportsBtn.MouseButton1Click:connect(function()
  667. TeleportsFrame.Visible = true
  668. Menu.Visible = false
  669. ActiveFrame = TeleportsFrame
  670. end)
  671.  
  672. local StuffFrame = CreateFrame("Stuff")
  673. StuffFrame.Parent = main
  674.  
  675. local StuffBtn = CreateButton("Stuff", MenuLabel)
  676. StuffBtn.Position = TeleportsBtn.Position + UDim2.new(0,0,0,40)
  677. StuffBtn.MouseButton1Click:connect(function()
  678. StuffFrame.Visible = true
  679. Menu.Visible = false
  680. ActiveFrame = StuffFrame
  681. end)
  682.  
  683. local RemoveDoors = CreateButton("Remove Doors", StuffFrame)
  684. RemoveDoors.Size = UDim2.new(0,120,0,30)
  685. RemoveDoors.Position = UDim2.new(0,10,0,50)
  686. RemoveDoors.MouseButton1Click:connect(function()
  687. local doors = workspace:FindFirstChild("Doors")
  688. if not doors then return end
  689. for i,v in pairs(doors:GetChildren()) do
  690. v:Destroy()
  691. end
  692. end)
  693.  
  694. local Platform = CreateButton("Platform", StuffFrame)
  695. Platform.Position = UDim2.new(0.5,-60,0,50)
  696. Platform.MouseButton1Click:connect(function()
  697. local p = Instance.new("Part", workspace)
  698. p.Size = Vector3.new(30,0.5,30)
  699. p.Anchored = true
  700. p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  701. plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  702. spawn(function()
  703. while p.Parent do
  704. wait(1)
  705. if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  706. p:Destroy()
  707. end
  708. end
  709. end)
  710. end)
  711.  
  712. local Tracers = CreateButton("Tracers: None", StuffFrame)
  713. Tracers.Size = UDim2.new(0,140,0,30)
  714. Tracers.Position = UDim2.new(1,-150,0,50)
  715. Tracers.MouseButton1Click:connect(function()
  716. local curr = Tracers.Text:sub(10)
  717. if curr ~= "None" then
  718. ToggleTracers(curr, false)
  719. end
  720. local teams = {"None", "Police", "Criminal", "Prisoner"}
  721. local new = ""
  722. for i,v in pairs(teams) do
  723. if v == curr then
  724. new = teams[i + 1] or teams[1]
  725. end
  726. end
  727. if new ~= "None" then
  728. ToggleTracers(new, true)
  729. end
  730. Tracers.Text = "Tracers: " .. new
  731. end)
  732.  
  733. local BtoolActive = false
  734. local m = plr:GetMouse()
  735.  
  736. local Btool = CreateButton("Btool: Off", StuffFrame)
  737. Btool.Position = UDim2.new(0,10,0,90)
  738. Btool.MouseButton1Click:connect(function()
  739. spawn(function()
  740. local status = Btool.Text:sub(8)
  741. local newstatus = status == "On" and "Off" or status == "Off" and "On"
  742. Btool.Text = "Btool: " .. newstatus
  743. BtoolActive = newstatus == "On" and true or newstatus == "Off" and false
  744. if BtoolActive then
  745. local sb = Instance.new("SelectionBox", workspace.CurrentCamera)
  746. local ev = m.Button1Down:connect(function()
  747. if m.Target then
  748. m.Target:Destroy()
  749. end
  750. end)
  751. while BtoolActive do
  752. wait()
  753. if m.Target then
  754. sb.Adornee = m.Target
  755. end
  756. end
  757. ev:Disconnect()
  758. else
  759. local sb = workspace.CurrentCamera:FindFirstChildOfClass("SelectionBox")
  760. if sb then sb:Destroy() end
  761. end
  762. end)
  763. end)
  764.  
  765. local ClickTpEnabled = false
  766. m.Button1Down:connect(function()
  767. if ClickTpEnabled and m.Target then
  768. plr.Character:MoveTo(m.Hit.p)
  769. end
  770. end)
  771.  
  772. local ClickTp = CreateButton("ClickTp: Off", StuffFrame)
  773. ClickTp.Position = UDim2.new(0,120,0,90)
  774. ClickTp.MouseButton1Click:connect(function()
  775. spawn(function()
  776. local status = ClickTp.Text:sub(10)
  777. local newstatus = status == "Off" and "On" or status == "On" and "Off"
  778. ClickTpEnabled = newstatus == "On" and true or newstatus == "Off" and false
  779. ClickTp.Text = "ClickTp: " .. newstatus
  780. local ind = Create "Part" {
  781. Anchored = true,
  782. CanCollide = false,
  783. Transparency = 0.3,
  784. Size = Vector3.new(1.2,0.3,1.2),
  785. BrickColor = BrickColor.Green(),
  786. Parent = workspace
  787. }
  788. Instance.new("CylinderMesh", ind)
  789. m.TargetFilter = ind
  790. local beam = Create "Part" {
  791. Anchored = true,
  792. CanCollide = false,
  793. Transparency = 0.3,
  794. BrickColor = BrickColor.Green(),
  795. TopSurface = "Smooth",
  796. BottomSurface = "Smooth",
  797. Size = Vector3.new(0.3,0.3,1),
  798. Parent = workspace
  799.  
  800. }
  801. while ClickTpEnabled do
  802. wait()
  803. ind.CFrame = CFrame.new(m.Hit.p)
  804. local humrootpos = plr.Character:WaitForChild'HumanoidRootPart'.Position
  805. local dist = (Vector3.new(m.Hit.p.X,0,m.Hit.p.Z) - Vector3.new(humrootpos.X,0,humrootpos.Z)).magnitude
  806. if dist > 150 then
  807. ind.BrickColor,beam.BrickColor = BrickColor.Red(),BrickColor.Red()
  808. else
  809. ind.BrickColor,beam.BrickColor = BrickColor.Green(),BrickColor.Green()
  810. end
  811. beam.Size = Vector3.new(0.3,0.3,dist - 0.5)
  812. beam.CFrame = CFrame.new(plr.Character:WaitForChild'HumanoidRootPart'.Position, m.Hit.p) * CFrame.new(0,0,-dist/2 + 0.5)
  813. end
  814. ind:Destroy()
  815. beam:Destroy()
  816. end)
  817. end)
  818.  
  819. local Gravity = CreateButton("Low Gravity", StuffFrame)
  820. Gravity.Position = UDim2.new(0,230,0,90)
  821. Gravity.Size = UDim2.new(0,130,0,30)
  822. Gravity.MouseButton1Click:connect(function()
  823. local t = Gravity.Text == "Low Gravity" and true or false
  824. workspace.Gravity = t and 50 or 196.2
  825. Gravity.Text = t and "Normal Gravity" or "Low Gravity"
  826. end)
  827.  
  828. local InfiniteJumpEnabled = false
  829. game:GetService("UserInputService").JumpRequest:connect(function()
  830. if InfiniteJumpEnabled then
  831. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  832. end
  833. end)
  834. local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame)
  835. InfiniteJump.Position = UDim2.new(0,10,0,130)
  836. InfiniteJump.Size = UDim2.new(0,150,0,30)
  837. InfiniteJump.MouseButton1Click:connect(function()
  838. local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol
  839. local new = state == "Off" and "On" or state == "On" and "Off"
  840. InfiniteJumpEnabled = new == "On"
  841. InfiniteJump.Text = "Infinite Jump: " .. new
  842. end)
  843.  
  844. local Giver = nil
  845. local ItemsGiver = CreateButton("Items Giver", StuffFrame)
  846. ItemsGiver.Position = UDim2.new(0,170,0,130)
  847. ItemsGiver.MouseButton1Click:connect(function()
  848. if not workspace:FindFirstChild("Givers") then return end
  849. if Giver then
  850. for i,v in pairs(Giver) do
  851. v.ClickDetector.Parent = v.OriginalParent
  852. v.Event:Disconnect()
  853. end
  854. getmetatable(Giver):Destroy()
  855. end
  856. Giver = {}
  857. local g = Giver
  858. local p = Instance.new("Part", workspace)
  859. p.Anchored = true
  860. p.CanCollide = false
  861. p.CFrame = plr.Character:WaitForChild"HumanoidRootPart".CFrame
  862. setmetatable(Giver, {__metatable = p})
  863. for i,v in pairs(workspace.Givers:GetChildren()) do
  864. local cd = v:FindFirstChildOfClass"ClickDetector"
  865. if cd then
  866. local newt = {}
  867. newt.ClickDetector = cd
  868. newt.OriginalParent = v
  869. cd.Parent = p
  870. newt.Event = cd.MouseClick:connect(function()
  871. cd.Parent = v
  872. end)
  873. table.insert(Giver, newt)
  874. end
  875. end
  876. spawn(function()
  877. wait(10)
  878. if Giver == g then
  879. Giver = nil
  880. for i,v in pairs(g) do
  881. v.ClickDetector.Parent = v.OriginalParent
  882. v.Event:Disconnect()
  883. end
  884. getmetatable(g):Destroy()
  885. end
  886. end)
  887. end)
  888.  
  889. local BankAutoRobBtn = CreateButton("Bank AutoRob", StuffFrame)
  890. BankAutoRobBtn.Position = UDim2.new(0,280,0,130)
  891. BankAutoRobBtn.Size = UDim2.new(0,115,0,30)
  892. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  893. BankAutoRobBtn.MouseButton1Click:connect(function()
  894. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  895. local Info = Bank.Extra.Sign
  896. if Info.Decal.Transparency == 0 then
  897. game:GetService("StarterGui"):SetCore("SendNotification",{
  898. Title = "Bank is closed!",
  899. Text = "You need to wait for the bank to open!",
  900. Duration = 7,
  901. Button1 = "Dismiss",
  902. })
  903. return
  904. end
  905. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  906. local root = plr.Character.HumanoidRootPart
  907. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  908.  
  909. if (bankpos - plrpos).magnitude > 150 then
  910. local cb = Instance.new"BindableFunction"
  911.  
  912. cb.OnInvoke = function(arg)
  913. if arg == "Teleport" then
  914. JailbreakTp(10, 18, 784)
  915. end
  916. end
  917.  
  918. game:GetService("StarterGui"):SetCore("SendNotification",{
  919. Title = "You are too far!",
  920. Text = "You need to get closer to the bank (use tp)",
  921. Duration = 7,
  922. Button1 = "Dismiss",
  923. Button2 = "Teleport",
  924. Callback = cb
  925. })
  926. else
  927. RobTheBank()
  928. end
  929. end)
  930.  
  931. local SettingsFrame = CreateFrame("Settings")
  932. SettingsFrame.Parent = main
  933.  
  934. local Settingsbtn = CreateButton("Settings", MenuLabel)
  935. Settingsbtn.Position = StuffBtn.Position + UDim2.new(0,0,0,40)
  936. Settingsbtn.MouseButton1Click:connect(function()
  937. SettingsFrame.Visible = true
  938. Menu.Visible = false
  939. ActiveFrame = SettingsFrame
  940. end)
  941.  
  942. local TpMethodBtn = CreateButton("Teleport Method: 1", SettingsFrame)
  943. TpMethodBtn.Position = UDim2.new(0,10,0,50)
  944. TpMethodBtn.Size = UDim2.new(0,160,0,30)
  945. TpMethodBtn.MouseButton1Click:connect(function()
  946. local curr = TpMethodBtn.Text:sub(string.len("Teleport Method: ") + 1)
  947. curr = tonumber(curr)
  948. local new = curr == 1 and 2 or curr == 2 and 1
  949. TpMethod = new
  950. TpMethodBtn.Text = "Teleport Method: " .. new
  951. end)
  952.  
  953. local ExitBtn = CreateButton("Exit", MenuLabel)
  954. ExitBtn.Position = Settingsbtn.Position + UDim2.new(0,0,0,40)
  955. ExitBtn.MouseButton1Click:connect(function()
  956. main:Destroy()
  957. script.Disabled = true
  958. script:Destroy()
  959. end)
  960.  
  961. local BankJewelStatus = Create "TextLabel" {
  962. BackgroundTransparency = 1,
  963. TextSize = 8,
  964. TextColor3 = Color3.new(0,0,0),
  965. Font = "Legacy",
  966. TextXAlignment = "Left",
  967. TextYAlignment = "Top",
  968. Size = UDim2.new(0,100,0,100),
  969. Position = UDim2.new(0,10,0,220),
  970. Text = "Bank:\nJewelry:",
  971. Parent = Menu
  972. }
  973.  
  974. local BankStatus = BankJewelStatus:Clone()
  975. BankStatus.Text = "Unknown"
  976. BankStatus.Size = UDim2.new(0,100,0,100)
  977. BankStatus.Position = UDim2.new(0,46,0,220)
  978. BankStatus.Parent = Menu
  979. BankStatus.TextColor3 = Color3.new(1,0,0)
  980.  
  981. local JewelryStatus = BankStatus:Clone()
  982. JewelryStatus.Text = "Unknown"
  983. JewelryStatus.Size = UDim2.new(0,100,0,100)
  984. JewelryStatus.Position = UDim2.new(0,59,0,232)
  985. JewelryStatus.Parent = Menu
  986. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  987.  
  988. main:TweenPosition(UDim2.new(0.5,-200,0.5,-150))
  989.  
  990. local TransparencyTweens = {}
  991. main.MouseLeave:connect(function()
  992. spawn(function()
  993. local bool = false
  994. local ev = main.MouseEnter:connect(function()
  995. bool = true
  996. end)
  997. wait(1)
  998. ev:Disconnect()
  999. if bool then return end
  1000. for i,v in pairs(TransparencyTweens) do
  1001. v:Pause()
  1002. end
  1003. TransparencyTweens = {}
  1004. for i,v in pairs(main:GetDescendants()) do
  1005. if v.Visible then
  1006. local totween = {}
  1007. if v.ClassName:sub(1,4) == "Text" then
  1008. totween.TextTransparency = 0.7
  1009. end
  1010. if v.BackgroundTransparency ~= 1 then
  1011. totween.BackgroundTransparency = 0.7
  1012. end
  1013. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  1014. end
  1015. end
  1016. main:TweenSize(UDim2.new(0,400,0,50),nil,nil,nil,true)
  1017. end)
  1018. end)
  1019. main.MouseEnter:connect(function()
  1020. for i,v in pairs(TransparencyTweens) do
  1021. v:Pause()
  1022. end
  1023. TransparencyTweens = {}
  1024. for i,v in pairs(main:GetDescendants()) do
  1025. if v.Visible then
  1026. local totween = {}
  1027. if v.ClassName:sub(1,4) == "Text" then
  1028. totween.TextTransparency = 0
  1029. end
  1030. if v.BackgroundTransparency ~= 1 then
  1031. totween.BackgroundTransparency = 0
  1032. end
  1033. TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween)
  1034. end
  1035. end
  1036. main:TweenSize(UDim2.new(0,400,0,300),nil,nil,nil,true)
  1037. end)
  1038.  
  1039. --AutoRob stuff--
  1040. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  1041. local BankAutoRob = {
  1042. {
  1043. Pos = {51, 18.06, 856.5},
  1044. Yield = 2,
  1045. Status = "Starting the robbery"
  1046. },
  1047. {
  1048. Pos = {29.71, 0.73, 815.25},
  1049. Yield = 15,
  1050. Status = "Opening the vault"
  1051. },
  1052. {
  1053. Pos = {18.37, 0.7659, 822.25},
  1054. Yield = DuffelBag and 50 or 25,
  1055. Status = "Collecting $$$"
  1056. },
  1057. {
  1058. Pos = {10, 18, 784},
  1059. Status = "Finishing the robbery"
  1060. }
  1061. }
  1062.  
  1063. local function Tp(...)
  1064. local char = plr.Character
  1065. for i=1,2 do
  1066. wait()
  1067. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  1068. end
  1069. end
  1070.  
  1071. function RobTheBank()
  1072. for _,v in pairs(BankAutoRob) do
  1073. Tp(unpack(v.Pos))
  1074. wait(v.Yield)
  1075. end
  1076. end
  1077.  
  1078. --Bank notification--
  1079. pcall(function()
  1080. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  1081. local Info = Bank.Extra.Sign.Decal
  1082. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  1083. if Info.Transparency ~= 0 then
  1084. BankStatus.Text = "Open"
  1085. BankStatus.TextColor3 = Color3.new(0,1,0)
  1086. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  1087. local cb = Instance.new("BindableFunction")
  1088. cb.OnInvoke = function(arg)
  1089. if arg == "Teleport" then
  1090. JailbreakTp(10, 18, 784)
  1091. elseif arg == "AutoRob" then
  1092. RobTheBank()
  1093. end
  1094. end
  1095. game:GetService("StarterGui"):SetCore("SendNotification",{
  1096. Title = "Bank is ready!",
  1097. Text = "Bank is ready!",
  1098. Duration = 15,
  1099. Button1 = "Dismiss",
  1100. 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",
  1101. Callback = cb
  1102. })
  1103. else
  1104. BankStatus.Text = "Closed"
  1105. BankStatus.TextColor3 = Color3.new(1,0,0)
  1106. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  1107. end
  1108. end)
  1109. BankStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  1110. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  1111. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  1112. end)
  1113. --Jewelry notification--
  1114. pcall(function()
  1115. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  1116. local Info = Jewelry.Extra.Sign.Decal
  1117. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  1118. if Info.Transparency ~= 0 then
  1119. JewelryStatus.Text = "Open"
  1120. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  1121. BankStatus.TextColor3 = Color3.new(0,1,0)
  1122. local cb = Instance.new("BindableFunction")
  1123. cb.OnInvoke = function(arg)
  1124. if arg == "Teleport" then
  1125. JailbreakTp(142, 18, 1365)
  1126. end
  1127. end
  1128. game:GetService("StarterGui"):SetCore("SendNotification",{
  1129. Title = "Jewelry is ready!",
  1130. Text = "Jewelry is ready!",
  1131. Duration = 15,
  1132. Button1 = "Dismiss",
  1133. Button2 = "Teleport",
  1134. Callback = cb
  1135. })
  1136. else
  1137. JewelryStatus.Text = "Closed"
  1138. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  1139. end
  1140. end)
  1141. JewelryStatus.Text = Info.Transparency == 0 and "Closed" or "Open"
  1142. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  1143. end)
  1144. end)
  1145. XButton.Name = "XButton"
  1146. XButton.Parent = Main
  1147. XButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  1148. XButton.Position = UDim2.new(0.925714254, 0, 0, 0)
  1149. XButton.Size = UDim2.new(0, 26, 0, 32)
  1150. XButton.Font = Enum.Font.SourceSans
  1151. XButton.Text = "X"
  1152. XButton.TextColor3 = Color3.new(0, 0, 0)
  1153. XButton.TextScaled = true
  1154. XButton.TextSize = 14
  1155. XButton.TextWrapped = true
  1156. XButton.MouseButton1Down:connect (function()
  1157. OpenerFrame.Visible = true
  1158. Main.Visible = false
  1159. end)
  1160. XploitGemButton.Name = "XploitGemButton"
  1161. XploitGemButton.Parent = Main
  1162. XploitGemButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  1163. XploitGemButton.Position = UDim2.new(0.519999981, 0, 0.161825746, 0)
  1164. XploitGemButton.Size = UDim2.new(0, 149, 0, 27)
  1165. XploitGemButton.Font = Enum.Font.SourceSans
  1166. XploitGemButton.Text = "XPLOIT GEM"
  1167. XploitGemButton.TextColor3 = Color3.new(0, 0, 0)
  1168. XploitGemButton.TextScaled = true
  1169. XploitGemButton.TextSize = 14
  1170. XploitGemButton.TextWrapped = true
  1171. XploitGemButton.MouseButton1Down:connect (function()
  1172. -- Use "C" to speed, and "V" to turn down speed!
  1173. -- RUBY ROSE TURNER'S XPLOIT GEM BY SOURDELUXE
  1174. local RubyRoseTurnersGem = Instance.new("ScreenGui")
  1175. local EspFrame = Instance.new("Frame")
  1176. local EspBtn = Instance.new("TextButton")
  1177. --Properties:
  1178. RubyRoseTurnersGem.Name = "RubyRoseTurner'sGem"
  1179. RubyRoseTurnersGem.Parent = game.CoreGui
  1180.  
  1181. EspFrame.Name = "EspFrame"
  1182. EspFrame.Parent = RubyRoseTurnersGem
  1183. EspFrame.BackgroundColor3 = Color3.new(0.831373, 0.317647, 0.32549)
  1184. EspFrame.Position = UDim2.new(0.84764117, 0, 0.737676084, 0)
  1185. EspFrame.Size = UDim2.new(0, 181, 0, 69)
  1186. EspFrame.Active = true
  1187. EspFrame.Draggable= true
  1188.  
  1189. EspBtn.Name = "EspBtn"
  1190. EspBtn.Parent = EspFrame
  1191. EspBtn.BackgroundColor3 = Color3.new(1, 0.403922, 0.411765)
  1192. EspBtn.BorderSizePixel = 0
  1193. EspBtn.Position = UDim2.new(0.0441988967, 0, 0.0724637657, 0)
  1194. EspBtn.Size = UDim2.new(0, 165, 0, 59)
  1195. EspBtn.Font = Enum.Font.SourceSans
  1196. EspBtn.Text = "RUBY ROSE TURNER'S XPLOIT GEM"
  1197. EspBtn.TextColor3 = Color3.new(0, 0, 0)
  1198. EspBtn.TextScaled = true
  1199. EspBtn.TextSize = 14
  1200. EspBtn.TextWrapped = true
  1201. EspBtn.MouseButton1Down:connect (function()
  1202. loadstring(game:HttpGet(('https://pastebin.com/raw/ypSsQRK6'),true))()
  1203. end)
  1204. end)
  1205. SourDeluxeButton.Name = "SourDeluxeButton"
  1206. SourDeluxeButton.Parent = Main
  1207. SourDeluxeButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  1208. SourDeluxeButton.Position = UDim2.new(0.519999981, 0, 0.325091064, 0)
  1209. SourDeluxeButton.Size = UDim2.new(0, 149, 0, 27)
  1210. SourDeluxeButton.Font = Enum.Font.SourceSans
  1211. SourDeluxeButton.Text = "SOUR DELUXE"
  1212. SourDeluxeButton.TextColor3 = Color3.new(0, 0, 0)
  1213. SourDeluxeButton.TextScaled = true
  1214. SourDeluxeButton.TextSize = 14
  1215. SourDeluxeButton.TextWrapped = true
  1216. SourDeluxeButton.MouseButton1Down:connect (function()
  1217. -- SourDeluxe aye!
  1218. local SourDeluxe13 = Instance.new("ScreenGui")
  1219. local Main = Instance.new("Frame")
  1220. local Bar1 = Instance.new("Frame")
  1221. local Bar2 = Instance.new("Frame")
  1222. local XButton = Instance.new("TextButton")
  1223. local fastm9 = Instance.new("TextButton")
  1224. local allguns = Instance.new("TextButton")
  1225. local rocketfuel = Instance.new("TextButton")
  1226. local OpenerFrame = Instance.new("Frame")
  1227. local SwrLbl = Instance.new("ImageLabel")
  1228. local OpenButton = Instance.new("TextButton")
  1229. --Properties:
  1230. SourDeluxe13.Name = "SourDeluxe1.3"
  1231. SourDeluxe13.Parent = game.CoreGui
  1232.  
  1233. Main.Name = "Main"
  1234. Main.Parent = SourDeluxe13
  1235. Main.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1236. Main.BorderColor3 = Color3.new(0, 0, 0)
  1237. Main.BorderSizePixel = 3
  1238. Main.Position = UDim2.new(0.607888639, 0, 0.413732409, 0)
  1239. Main.Size = UDim2.new(0, 384, 0, 254)
  1240. Main.Active = true
  1241. Main.Draggable = true
  1242.  
  1243. Bar1.Name = "Bar1"
  1244. Bar1.Parent = Main
  1245. Bar1.BackgroundColor3 = Color3.new(0.333333, 0, 0.623529)
  1246. Bar1.BorderColor3 = Color3.new(0, 0, 0)
  1247. Bar1.BorderSizePixel = 3
  1248. Bar1.Size = UDim2.new(0, 351, 0, 37)
  1249.  
  1250. Bar2.Name = "Bar2"
  1251. Bar2.Parent = Bar1
  1252. Bar2.BackgroundColor3 = Color3.new(0.54902, 0, 1)
  1253. Bar2.BorderSizePixel = 0
  1254. Bar2.Size = UDim2.new(0, 351, 0, 28)
  1255.  
  1256. XButton.Name = "XButton"
  1257. XButton.Parent = Main
  1258. XButton.BackgroundColor3 = Color3.new(0.54902, 0, 1)
  1259. XButton.BorderColor3 = Color3.new(0, 0, 0)
  1260. XButton.BorderSizePixel = 3
  1261. XButton.Position = UDim2.new(0.9140625, 0, 0, 0)
  1262. XButton.Size = UDim2.new(0, 33, 0, 37)
  1263. XButton.Font = Enum.Font.SourceSans
  1264. XButton.Text = "X"
  1265. XButton.TextColor3 = Color3.new(0, 0, 0)
  1266. XButton.TextScaled = true
  1267. XButton.TextSize = 14
  1268. XButton.TextWrapped = true
  1269. XButton.MouseButton1Down:connect (function()
  1270. OpenerFrame.Visible = true
  1271. Main.Visible = false
  1272. end)
  1273. fastm9.Name = "fastm9"
  1274. fastm9.Parent = Main
  1275. fastm9.BackgroundColor3 = Color3.new(0.54902, 0, 1)
  1276. fastm9.Position = UDim2.new(0.0572916679, 0, 0.204724416, 0)
  1277. fastm9.Size = UDim2.new(0, 339, 0, 38)
  1278. fastm9.Font = Enum.Font.SourceSans
  1279. fastm9.Text = "FAST M9[KEEP GUN EQUIPED BEFORE CLICKING]"
  1280. fastm9.TextColor3 = Color3.new(0, 0, 0)
  1281. fastm9.TextScaled = true
  1282. fastm9.TextSize = 14
  1283. fastm9.TextWrapped = true
  1284. fastm9.MouseButton1Down:connect(function()
  1285. local Player = game.Players.LocalPlayer.Name
  1286. local Gun = "M9" -- < -- Gun Name
  1287. local Run = game:GetService("RunService")
  1288.  
  1289. Gun = game.Players[Player].Character[Gun]
  1290. local Mouse = game.Players.LocalPlayer:GetMouse()
  1291. local Down = false
  1292. local Sound = Gun.Handle.FireSound
  1293.  
  1294. function CreateRay(Point_A, Point_B)
  1295. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  1296. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  1297. local Dist = (Point_A - Pos).Magnitude
  1298. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  1299.  
  1300. return CFrame, Dist, Ray
  1301. end
  1302.  
  1303. function FireLaser(target)
  1304. coroutine.resume(coroutine.create(function()
  1305. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  1306. local Bullet = Instance.new("Part", Gun)
  1307. Bullet.BrickColor = BrickColor.Yellow()
  1308. Bullet.Material = "Neon"
  1309. Bullet.Anchored = true
  1310. Bullet.CanCollide = false
  1311. Bullet.Size = Vector3.new(0.2, 0.2, D)
  1312. Bullet.CFrame = C
  1313.  
  1314. local bulletTable = {}
  1315. table.insert(bulletTable, {
  1316. Hit = target,
  1317. Distance = D,
  1318. Cframe = C,
  1319. RayObject = R
  1320. })
  1321.  
  1322. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  1323. local C = Sound:Clone()
  1324. C.Parent = Gun
  1325. C:Play()
  1326. wait(0.05)
  1327. Bullet:Remove()
  1328. end))
  1329. end
  1330.  
  1331. Mouse.Button1Down:Connect(function()
  1332. Down = true
  1333. end)
  1334.  
  1335.  
  1336. Mouse.Button1Up:Connect(function()
  1337. Down = false
  1338. end)
  1339.  
  1340. while Run.Stepped:wait() do
  1341. if Down == true then
  1342. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  1343. FireLaser(Mouse.Target)
  1344. end
  1345. end
  1346. end)
  1347. allguns.Name = "allguns"
  1348. allguns.Parent = Main
  1349. allguns.BackgroundColor3 = Color3.new(0.54902, 0, 1)
  1350. allguns.Position = UDim2.new(0.0572916679, 0, 0.425196856, 0)
  1351. allguns.Size = UDim2.new(0, 339, 0, 38)
  1352. allguns.Font = Enum.Font.SourceSans
  1353. allguns.Text = "ALL GUNS"
  1354. allguns.TextColor3 = Color3.new(0, 0, 0)
  1355. allguns.TextScaled = true
  1356. allguns.TextSize = 14
  1357. allguns.TextWrapped = true
  1358. allguns.MouseButton1Down:connect(function()
  1359. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  1360.  
  1361. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  1362. print(lol)
  1363. end
  1364. end)
  1365. rocketfuel.Name = "rocketfuel"
  1366. rocketfuel.Parent = Main
  1367. rocketfuel.BackgroundColor3 = Color3.new(0.54902, 0, 1)
  1368. rocketfuel.Position = UDim2.new(0.0572916679, 0, 0.645669281, 0)
  1369. rocketfuel.Size = UDim2.new(0, 339, 0, 38)
  1370. rocketfuel.Font = Enum.Font.SourceSans
  1371. rocketfuel.Text = "DELUXE ROCKET FUEL"
  1372. rocketfuel.TextColor3 = Color3.new(0, 0, 0)
  1373. rocketfuel.TextScaled = true
  1374. rocketfuel.TextSize = 14
  1375. rocketfuel.TextWrapped = true
  1376. rocketfuel.MouseButton1Down:connect (function()
  1377. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  1378. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  1379. end)
  1380. OpenerFrame.Name = "OpenerFrame"
  1381. OpenerFrame.Parent = SourDeluxe13
  1382. OpenerFrame.BackgroundColor3 = Color3.new(0.333333, 0, 0.623529)
  1383. OpenerFrame.Position = UDim2.new(0.00850734767, 0, 0.387323946, 0)
  1384. OpenerFrame.Size = UDim2.new(0, 171, 0, 123)
  1385. OpenerFrame.Visible = false
  1386.  
  1387. SwrLbl.Name = "SwrLbl"
  1388. SwrLbl.Parent = OpenerFrame
  1389. SwrLbl.BackgroundColor3 = Color3.new(1, 1, 1)
  1390. SwrLbl.Size = UDim2.new(0, 141, 0, 123)
  1391. SwrLbl.Image = "rbxassetid://3103445570"
  1392.  
  1393. OpenButton.Name = "OpenButton"
  1394. OpenButton.Parent = OpenerFrame
  1395. OpenButton.BackgroundColor3 = Color3.new(0.54902, 0, 1)
  1396. OpenButton.BorderSizePixel = 0
  1397. OpenButton.Position = UDim2.new(0.827067673, 0, 0, 0)
  1398. OpenButton.Size = UDim2.new(0, 29, 0, 123)
  1399. OpenButton.Font = Enum.Font.SourceSans
  1400. OpenButton.Text = ">"
  1401. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  1402. OpenButton.TextScaled = true
  1403. OpenButton.TextSize = 14
  1404. OpenButton.TextWrapped = true
  1405. OpenButton.MouseButton1Down:connect (function()
  1406. Main.Visible = true
  1407. OpenerFrame.Visible = false
  1408. end)
  1409. -- Scripts:
  1410. function SCRIPT_YOWZ86_FAKESCRIPT() -- Main.GlowScript
  1411. local script = Instance.new('LocalScript')
  1412. script.Parent = Main
  1413. while wait(.5) do
  1414. script.Parent.BackgroundColor3 = Color3.fromHSV(math.random(100)/100,1,1)
  1415. end
  1416.  
  1417. end
  1418. coroutine.resume(coroutine.create(SCRIPT_YOWZ86_FAKESCRIPT))
  1419.  
  1420. end)
  1421. AllGuns.Name = "AllGuns"
  1422. AllGuns.Parent = Main
  1423. AllGuns.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  1424. AllGuns.Position = UDim2.new(0.519999981, 0, 0.508764505, 0)
  1425. AllGuns.Size = UDim2.new(0, 149, 0, 27)
  1426. AllGuns.Font = Enum.Font.SourceSans
  1427. AllGuns.Text = "PRISON ALL GUNS"
  1428. AllGuns.TextColor3 = Color3.new(0, 0, 0)
  1429. AllGuns.TextScaled = true
  1430. AllGuns.TextSize = 14
  1431. AllGuns.TextWrapped = true
  1432. AllGuns.MouseButton1Down:connect(function()
  1433. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  1434.  
  1435. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  1436. print(lol)
  1437. end
  1438. end)
  1439. CtrlDeleteButton.Name = "CtrlDeleteButton"
  1440. CtrlDeleteButton.Parent = Main
  1441. CtrlDeleteButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  1442. CtrlDeleteButton.Position = UDim2.new(0.519999981, 0, 0.680193067, 0)
  1443. CtrlDeleteButton.Size = UDim2.new(0, 149, 0, 27)
  1444. CtrlDeleteButton.Font = Enum.Font.SourceSans
  1445. CtrlDeleteButton.Text = "CTRL DELETE"
  1446. CtrlDeleteButton.TextColor3 = Color3.new(0, 0, 0)
  1447. CtrlDeleteButton.TextScaled = true
  1448. CtrlDeleteButton.TextSize = 14
  1449. CtrlDeleteButton.TextWrapped = true
  1450. CtrlDeleteButton.MouseButton1Down:connect (function()
  1451. local Plr = game:GetService("Players").LocalPlayer
  1452. local Mouse = Plr:GetMouse()
  1453.  
  1454. Mouse.Button1Down:connect(function()
  1455. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  1456. if not Mouse.Target then return end
  1457. Mouse.Target:Destroy()
  1458. end)
  1459. end)
  1460. RocketFuelButton.Name = "RocketFuelButton"
  1461. RocketFuelButton.Parent = Main
  1462. RocketFuelButton.BackgroundColor3 = Color3.new(1, 0.152941, 0.164706)
  1463. RocketFuelButton.Position = UDim2.new(0.0542857125, 0, 0.161825746, 0)
  1464. RocketFuelButton.Size = UDim2.new(0, 149, 0, 27)
  1465. RocketFuelButton.Font = Enum.Font.SourceSans
  1466. RocketFuelButton.Text = "ROCKET FUEL"
  1467. RocketFuelButton.TextColor3 = Color3.new(0, 0, 0)
  1468. RocketFuelButton.TextScaled = true
  1469. RocketFuelButton.TextSize = 14
  1470. RocketFuelButton.TextWrapped = true
  1471. RocketFuelButton.MouseButton1Down:connect (function()
  1472. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  1473. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  1474. end)
  1475. OpenerFrame.Name = "OpenerFrame"
  1476. OpenerFrame.Parent = RubyRoseTurner15
  1477. OpenerFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  1478. OpenerFrame.Position = UDim2.new(0.0224284604, 0, 0.75, 0)
  1479. OpenerFrame.Size = UDim2.new(0, 120, 0, 100)
  1480. OpenerFrame.Visible = false
  1481.  
  1482. OpenerImage.Name = "OpenerImage"
  1483. OpenerImage.Parent = OpenerFrame
  1484. OpenerImage.BackgroundColor3 = Color3.new(1, 1, 1)
  1485. OpenerImage.Size = UDim2.new(0, 100, 0, 100)
  1486. OpenerImage.Image = "rbxassetid://3104923503"
  1487.  
  1488. OpenerButton.Name = "OpenerButton"
  1489. OpenerButton.Parent = OpenerFrame
  1490. OpenerButton.BackgroundColor3 = Color3.new(1, 0.294118, 0.329412)
  1491. OpenerButton.Position = UDim2.new(0.833333313, 0, 0.00999999978, 0)
  1492. OpenerButton.Size = UDim2.new(0, 20, 0, 99)
  1493. OpenerButton.Font = Enum.Font.SourceSans
  1494. OpenerButton.Text = ">"
  1495. OpenerButton.TextColor3 = Color3.new(0, 0, 0)
  1496. OpenerButton.TextScaled = true
  1497. OpenerButton.TextSize = 14
  1498. OpenerButton.TextWrapped = true
  1499. OpenerButton.MouseButton1Down:connect (function()
  1500. Main.Visible = true
  1501. OpenerFrame.Visible = false
  1502. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement