Advertisement
xcodeerror

rose v4

Aug 28th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.47 KB | None | 0 0
  1. warn("[Rose]:Script loaded")
  2. warn("[Rose]:Init All")
  3. local opened = false
  4. local hidekey = Enum.KeyCode.Insert
  5. game.StarterGui:SetCore("SendNotification",{Title="Rose",Text="Loaded."})
  6. wait(1)
  7. game.StarterGui:SetCore("SendNotification",{Title="Rose",Text="Press [Insert] to close/open gui"})
  8.  
  9. warn("[Rose]:Init Tracers")
  10.  
  11. local Tracers = {}
  12.  
  13. local function AddLasso(p,team)
  14. if not Tracers[team.Name] then return end
  15. if p == plr then return end
  16. spawn(function()
  17. if p.Character then
  18. local l = Instance.new("SelectionPartLasso")
  19. l.Parent = p.Character
  20. l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid"
  21. l.Part = plr.Character:WaitForChild"HumanoidRootPart"
  22. l.Visible = true
  23. l.Color3 = team.TeamColor.Color
  24. for i=0,5 do
  25. local sg = Instance.new("SurfaceGui")
  26. sg.Face = i
  27. sg.Parent = p.Character
  28. sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart"
  29. sg.AlwaysOnTop = true
  30. local f = Instance.new("Frame", sg)
  31. f.Size = UDim2.new(1,0,1,0)
  32. f.BorderSizePixel = 0
  33. f.BackgroundColor3 = team.TeamColor.Color
  34. f.BackgroundTransparency = 0.5
  35. end
  36. end
  37. end)
  38. end
  39.  
  40. local function RemoveLasso(p)
  41. if not p.Character then return end
  42. for i,v in pairs(p.Character:GetDescendants()) do
  43. if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then
  44. v:Destroy()
  45. end
  46. end
  47. end
  48.  
  49. for _,team in pairs(game:GetService("Teams"):GetChildren()) do
  50. team.PlayerAdded:connect(function(p)
  51. AddLasso(p,team)
  52. end)
  53.  
  54. team.PlayerRemoved:connect(function(p)
  55. RemoveLasso(p)
  56. end)
  57. end
  58.  
  59. function ToggleTracers(team, bool)
  60. Tracers[team] = bool
  61. local t = game:GetService("Teams"):FindFirstChild(team)
  62. if not t then return end
  63. for i,v in pairs(t:GetPlayers()) do
  64. if bool then
  65. AddLasso(v,t)
  66. else
  67. RemoveLasso(v)
  68. end
  69. end
  70. end
  71.  
  72. local function CharAdded(plr, char)
  73. if Tracers[tostring(plr.Team)] then
  74. AddLasso(plr,plr.Team)
  75. end
  76. end
  77.  
  78. local function PlrAdded(plr)
  79. plr.CharacterAdded:connect(function(char)
  80. CharAdded(plr, char)
  81. end)
  82. if plr.Character then
  83. CharAdded(plr, plr.Character)
  84. end
  85. end
  86.  
  87. game:GetService("Players").PlayerAdded:connect(PlrAdded)
  88. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  89. PlrAdded(v)
  90. end
  91.  
  92. warn("[Rose]:Init Tracers Done")
  93. wait(1)
  94. warn("[Rose]:Creating GUI")
  95.  
  96. local Rose = Instance.new("ScreenGui")
  97. local Main = Instance.new("Frame")
  98. local Screen = Instance.new("Frame")
  99. local MainInfo = Instance.new("TextLabel")
  100. local BTools = Instance.new("TextButton")
  101. local NoDoors = Instance.new("TextButton")
  102. local NoTrees = Instance.new("TextButton")
  103. local RIPCITY = Instance.new("TextButton")
  104. local Gravity = Instance.new("TextButton")
  105. local NoClip = Instance.new("TextButton")
  106. local NoMuseum = Instance.new("TextButton")
  107. local NoLasers = Instance.new("TextButton")
  108. local CopWH = Instance.new("TextButton")
  109. local CrimWH = Instance.new("TextButton")
  110. local PrisonerWH = Instance.new("TextButton")
  111. local Guns = Instance.new("TextButton")
  112. local DeleteALL = Instance.new("TextButton")
  113. local Pistol = Instance.new("TextButton")
  114. local CarSpeed = Instance.new("TextButton")
  115. local JumpPower = Instance.new("TextButton")
  116. local InfJump = Instance.new("TextButton")
  117. local Tracers = Instance.new("TextButton")
  118. local CtrlDelete = Instance.new("TextButton")
  119.  
  120. -- Properties
  121.  
  122. warn("[Rose]:Init Functions")
  123.  
  124. Rose.Name = "Rose"
  125. Rose.Parent = game.CoreGui
  126. Rose.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  127.  
  128. Main.Name = "Main"
  129. Main.Parent = Rose
  130. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  131. Main.Position = UDim2.new(0.122969836, 0, 0.107569724, 0)
  132. Main.Size = UDim2.new(0, 539, 0, 283)
  133. Main.Visible = true
  134. Main.Active = true
  135. Main.Draggble = true
  136.  
  137. Screen.Name = "Screen"
  138. Screen.Parent = Main
  139. Screen.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  140. Screen.BorderColor3 = Color3.new(0.333333, 1, 0)
  141. Screen.Position = UDim2.new(-0.00061070919, 0, -0.0073684454, 0)
  142. Screen.Size = UDim2.new(0, 543, 0, 285)
  143.  
  144. MainInfo.Name = "MainInfo"
  145. MainInfo.Parent = Screen
  146. MainInfo.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  147. MainInfo.BorderColor3 = Color3.new(0.333333, 1, 0)
  148. MainInfo.Position = UDim2.new(0, 0, 0.00701754401, 0)
  149. MainInfo.Size = UDim2.new(0, 543, 0, 32)
  150. MainInfo.Font = Enum.Font.SciFi
  151. MainInfo.Text = "Rose Jailbreak GUI v1.0.0 | Created by xCodeError"
  152. MainInfo.TextColor3 = Color3.new(0, 0, 0)
  153. MainInfo.TextSize = 14
  154.  
  155. BTools.Name = "BTools"
  156. BTools.Parent = Screen
  157. BTools.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  158. BTools.Position = UDim2.new(0.392265201, 0, 0.501754403, 0)
  159. BTools.Size = UDim2.new(0, 93, 0, 30)
  160. BTools.Font = Enum.Font.SciFi
  161. BTools.Text = "BTools"
  162. BTools.TextColor3 = Color3.new(0, 0, 0)
  163. BTools.TextSize = 14
  164.  
  165. NoDoors.Name = "NoDoors"
  166. NoDoors.Parent = Screen
  167. NoDoors.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  168. NoDoors.Position = UDim2.new(0.0147329653, 0, 0.112280704, 0)
  169. NoDoors.Size = UDim2.new(0, 79, 0, 30)
  170. NoDoors.Font = Enum.Font.SciFi
  171. NoDoors.Text = "NoDoors"
  172. NoDoors.TextColor3 = Color3.new(0, 0, 0)
  173. NoDoors.TextSize = 14
  174. NoDoors.MouseButton1Down:connect(function()
  175. game.Workspace.Doors:Destroy()
  176. end)
  177.  
  178. NoTrees.Name = "NoTrees"
  179. NoTrees.Parent = Screen
  180. NoTrees.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  181. NoTrees.Position = UDim2.new(0.178637207, 0, 0.112280704, 0)
  182. NoTrees.Size = UDim2.new(0, 79, 0, 30)
  183. NoTrees.Font = Enum.Font.SciFi
  184. NoTrees.Text = "NoTrees"
  185. NoTrees.TextColor3 = Color3.new(0, 0, 0)
  186. NoTrees.TextSize = 14
  187. NoTrees.MouseButton1Down:connect(function()
  188. game.Workspace.Trees:Destroy()
  189. end)
  190.  
  191. RIPCITY.Name = "RIPCITY"
  192. RIPCITY.Parent = Screen
  193. RIPCITY.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  194. RIPCITY.Position = UDim2.new(0.342541456, 0, 0.112280704, 0)
  195. RIPCITY.Size = UDim2.new(0, 79, 0, 30)
  196. RIPCITY.Font = Enum.Font.SciFi
  197. RIPCITY.Text = "Destroy City"
  198. RIPCITY.TextColor3 = Color3.new(0, 0, 0)
  199. RIPCITY.TextSize = 14
  200. RIPCITY.MouseButton1Down:connect(function()
  201. game.Workspace.Buildings:Destroy()
  202. end)
  203.  
  204. Gravity.Name = "Gravity"
  205. Gravity.Parent = Screen
  206. Gravity.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  207. Gravity.Position = UDim2.new(0.0147329867, 0, 0.863157928, 0)
  208. Gravity.Size = UDim2.new(0, 79, 0, 30)
  209. Gravity.Font = Enum.Font.SciFi
  210. Gravity.Text = "Gravity"
  211. Gravity.TextColor3 = Color3.new(0, 0, 0)
  212. Gravity.TextSize = 14
  213. Gravity.MouseButton1Down:connect(function()
  214. game.workspace.Gravity = 45
  215. end)
  216.  
  217. NoClip.Name = "NoClip"
  218. NoClip.Parent = Screen
  219. NoClip.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  220. NoClip.Position = UDim2.new(0.176795602, 0, 0.863157928, 0)
  221. NoClip.Size = UDim2.new(0, 79, 0, 30)
  222. NoClip.Font = Enum.Font.SciFi
  223. NoClip.Text = "NoClip"
  224. NoClip.TextColor3 = Color3.new(0, 0, 0)
  225. NoClip.TextSize = 14
  226. NoClip.MouseButton1Down:connect(function()
  227. _G.NC = not _G.NC local pos = game:GetService('Players').LocalPlayer.Character.LowerTorso.Position.Y if _G.InitNC ~= true then _G.NCFunc = function(part) if _G.NC then if part.Position.Y > pos then part.CanCollide = false end end end _G.InitNC = true end if _G.NC and _G.NCFunc ~= nil then game:GetService('Players').LocalPlayer.Character.Humanoid.Touched:connect(_G.NCFunc) end
  228. end)
  229.  
  230. NoMuseum.Name = "NoMuseum"
  231. NoMuseum.Parent = Screen
  232. NoMuseum.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  233. NoMuseum.Position = UDim2.new(0.506445706, 0, 0.112280726, 0)
  234. NoMuseum.Size = UDim2.new(0, 79, 0, 30)
  235. NoMuseum.Font = Enum.Font.SciFi
  236. NoMuseum.Text = "NoMuseum"
  237. NoMuseum.TextColor3 = Color3.new(0, 0, 0)
  238. NoMuseum.TextSize = 14
  239. NoMuseum.MouseButton1Down:connect(function()
  240. boy = game:GetService('Workspace') nah = boy:FindFirstChild('Museum') nah.CaseLasers:Destroy()
  241. boy = game:GetService('Workspace') nah = boy:FindFirstChild('Museum') nah.Doors:Destroy()
  242. end)
  243.  
  244. NoLasers.Name = "NoLasers"
  245. NoLasers.Parent = Screen
  246. NoLasers.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  247. NoLasers.Position = UDim2.new(0.668508291, 0, 0.112280704, 0)
  248. NoLasers.Size = UDim2.new(0, 93, 0, 30)
  249. NoLasers.Font = Enum.Font.SciFi
  250. NoLasers.Text = "NoBankLasers"
  251. NoLasers.TextColor3 = Color3.new(0, 0, 0)
  252. NoLasers.TextSize = 14
  253. NoLasers.MouseButton1Down:connect(function()
  254. for i,v in pairs(game.Workspace.Banks:GetChildren()) do v.Name='Bank' end game:GetService('Workspace').Banks.Bank.Lasers:Destroy()
  255. end)
  256.  
  257. CopWH.Name = "CopWH"
  258. CopWH.Parent = Screen
  259. CopWH.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  260. CopWH.Position = UDim2.new(0.0147329569, 0, 0.238596499, 0)
  261. CopWH.Size = UDim2.new(0, 93, 0, 30)
  262. CopWH.Font = Enum.Font.SciFi
  263. CopWH.Text = "PoliceWH"
  264. CopWH.TextColor3 = Color3.new(0, 0, 0)
  265. CopWH.TextSize = 14
  266. CopWH.MouseButton1Down:connect(function()
  267. while true do for i, v in pairs(game.Teams.Police:GetPlayers()) do p = game:GetService('Players') e = Instance.new('BoxHandleAdornment') e.Color3 = Color3.new(0,0,1) e.Size = Vector3.new(2,1.6,1) e.ZIndex = 1 e.AlwaysOnTop = true e.Parent = game:GetService('Workspace') e.Adornee = v.Character.UpperTorso end wait(5) e:Destroy() end
  268. end)
  269.  
  270. CrimWH.Name = "CrimWH"
  271. CrimWH.Parent = Screen
  272. CrimWH.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  273. CrimWH.Position = UDim2.new(0.0147329569, 0, 0.368421048, 0)
  274. CrimWH.Size = UDim2.new(0, 93, 0, 30)
  275. CrimWH.Font = Enum.Font.SciFi
  276. CrimWH.Text = "CriminalWH"
  277. CrimWH.TextColor3 = Color3.new(0, 0, 0)
  278. CrimWH.TextSize = 14
  279. CrimWH.MouseButton1Down:connect(function()
  280. while true do for i, v in pairs(game.Teams.Criminal:GetPlayers()) do p = game:GetService('Players') e = Instance.new('BoxHandleAdornment') e.Color3 = Color3.new(0,0,1) e.Size = Vector3.new(2,1.6,1) e.ZIndex = 1 e.AlwaysOnTop = true e.Parent = game:GetService('Workspace') e.Adornee = v.Character.UpperTorso end wait(5) e:Destroy() end
  281. end)
  282.  
  283. PrisonerWH.Name = "PrisonerWH"
  284. PrisonerWH.Parent = Screen
  285. PrisonerWH.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  286. PrisonerWH.Position = UDim2.new(0.0147329569, 0, 0.501754403, 0)
  287. PrisonerWH.Size = UDim2.new(0, 93, 0, 30)
  288. PrisonerWH.Font = Enum.Font.SciFi
  289. PrisonerWH.Text = "PrisonerWH"
  290. PrisonerWH.TextColor3 = Color3.new(0, 0, 0)
  291. PrisonerWH.TextSize = 14
  292. PrisonerWH.MouseButton1Down:connect(function()
  293. while true do for i, v in pairs(game.Teams.Prisoner:GetPlayers()) do p = game:GetService('Players') e = Instance.new('BoxHandleAdornment') e.Color3 = Color3.new(0,0,1) e.Size = Vector3.new(2,1.6,1) e.ZIndex = 1 e.AlwaysOnTop = true e.Parent = game:GetService('Workspace') e.Adornee = v.Character.UpperTorso end wait(5) e:Destroy() end
  294. end)
  295.  
  296. Guns.Name = "Guns"
  297. Guns.Parent = Screen
  298. Guns.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  299. Guns.Position = UDim2.new(0.204419881, 0, 0.238596499, 0)
  300. Guns.Size = UDim2.new(0, 93, 0, 30)
  301. Guns.Font = Enum.Font.SciFi
  302. Guns.Text = "Give Guns"
  303. Guns.TextColor3 = Color3.new(0, 0, 0)
  304. Guns.TextSize = 14
  305. Guns.MouseButton1Down:connect(function()
  306.  
  307. end)
  308.  
  309. DeleteALL.Name = "DeleteALL"
  310. DeleteALL.Parent = Screen
  311. DeleteALL.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  312. DeleteALL.Position = UDim2.new(0.204419881, 0, 0.368421078, 0)
  313. DeleteALL.Size = UDim2.new(0, 93, 0, 30)
  314. DeleteALL.Font = Enum.Font.SciFi
  315. DeleteALL.Text = "RemoveAll"
  316. DeleteALL.TextColor3 = Color3.new(0, 0, 0)
  317. DeleteALL.TextSize = 14
  318. DeleteALL.MouseButton1Down:connect(function()
  319. game.Workspace.Cells:Remove()
  320.  
  321. game.Workspace.Museum.CaseLasers:Remove()
  322.  
  323. game.Workspace.Museum.Lights:Remove()
  324.  
  325. game.Workspace.Museum.Doors:Remove()
  326.  
  327. game.Workspace.EscapeRoutes:Remove()
  328.  
  329. for i,v in pairs(workspace.Doors:GetChildren()) do
  330. v:Destroy()
  331.  
  332. end
  333. end)
  334.  
  335. Pistol.Name = "Pistol"
  336. Pistol.Parent = Screen
  337. Pistol.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  338. Pistol.Position = UDim2.new(0.204419881, 0, 0.501754403, 0)
  339. Pistol.Size = UDim2.new(0, 93, 0, 30)
  340. Pistol.Font = Enum.Font.SciFi
  341. Pistol.Text = "Pistol"
  342. Pistol.TextColor3 = Color3.new(0, 0, 0)
  343. Pistol.TextSize = 14
  344. Pistol.MouseButton1Down:connect(function()
  345. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  346.  
  347. a = Instance.new("Part", workspace)
  348. a.Anchored = true
  349. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  350. a.CanCollide = false
  351.  
  352. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  353. if v.Name == "Station" then
  354. for a, b in pairs(v:GetChildren()) do
  355. if b:IsA("StringValue") then
  356. if b.Value == "Pistol" then
  357. v.CFrame = CFrame.new(hit)
  358. end
  359. end
  360. end
  361. end
  362. end
  363. end)
  364.  
  365. CarSpeed.Name = "CarSpeed"
  366. CarSpeed.Parent = Screen
  367. CarSpeed.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  368. CarSpeed.Position = UDim2.new(0.392265201, 0, 0.238596499, 0)
  369. CarSpeed.Size = UDim2.new(0, 93, 0, 30)
  370. CarSpeed.Font = Enum.Font.SciFi
  371. CarSpeed.Text = "Car Speed"
  372. CarSpeed.TextColor3 = Color3.new(0, 0, 0)
  373. CarSpeed.TextSize = 14
  374. CarSpeed.MouseButton1Down:connect(function()
  375. dir = 0
  376. gs = game.GetService
  377. gs(game,"RunService").RenderStepped:connect(function()
  378. for i,v in next,workspace.Vehicles:children() do
  379. if v.Name ~= "Heli" then
  380. if v:FindFirstChild("Engine") then
  381. local bf,cf = v.Engine:FindFirstChild("NewForce"),v:GetPrimaryPartCFrame().lookVector
  382. if not bf then
  383. bf = v.Engine:FindFirstChild("BodyForce") or v.Engine:FindFirstChild("VectorForce")
  384. if bf then
  385. bf = bf:Clone()
  386. bf.Parent = v.Engine
  387. bf.Name = "NewForce"
  388. end
  389. end
  390. if bf then
  391. local fa = 1
  392. if v.Name:lower():find("bike") then fa = .3 elseif v.Name:lower():find("bugg") then fa = .5 end
  393. if v.Seat.PlayerName.Value ~= game:GetService("Players").LocalPlayer.Name then fa = 0 end
  394. bf.Force = Vector3.new(cf.X*500000*dir*fa,0,cf.Z*500000*dir*fa)
  395. end
  396. end
  397. end
  398. end
  399. end)
  400. val = {
  401. {Enum.KeyCode.W,1};
  402. }
  403. uis = gs(game,"UserInputService")
  404. chk = function(k)
  405. for i,v in next,val do
  406. if v[1]==k.KeyCode then
  407. return v[2]
  408. end
  409. end
  410. end
  411. uis.InputBegan:connect(function(k)
  412. dir = chk(k) or dir
  413. end)
  414. uis.InputEnded:connect(function(k)
  415. if chk(k) == dir then
  416. dir = 0
  417. end
  418. end)
  419. end)
  420.  
  421. JumpPower.Name = "JumpPower"
  422. JumpPower.Parent = Screen
  423. JumpPower.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  424. JumpPower.Position = UDim2.new(0.342541456, 0, 0.863157928, 0)
  425. JumpPower.Size = UDim2.new(0, 79, 0, 30)
  426. JumpPower.Font = Enum.Font.SciFi
  427. JumpPower.Text = "JumpPower"
  428. JumpPower.TextColor3 = Color3.new(0, 0, 0)
  429. JumpPower.TextSize = 14
  430. JumpPower.MouseButton1Down:connect(function()
  431. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 250
  432. end)
  433.  
  434. InfJump.Name = "InfJump"
  435. InfJump.Parent = Screen
  436. InfJump.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  437. InfJump.Position = UDim2.new(0.506445706, 0, 0.863157928, 0)
  438. InfJump.Size = UDim2.new(0, 79, 0, 30)
  439. InfJump.Font = Enum.Font.SciFi
  440. InfJump.Text = "InfJump"
  441. InfJump.TextColor3 = Color3.new(0, 0, 0)
  442. InfJump.TextSize = 14
  443. InfJump.MouseButton1Down:connect(function()
  444. local Player = game:GetService'Players'.LocalPlayer;
  445. local UIS = game:GetService'UserInputService';
  446.  
  447. _G.JumpHeight = 50;
  448.  
  449. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  450.  
  451. UIS.InputBegan:connect(function(UserInput)
  452. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  453. Action(Player.Character.Humanoid, function(self)
  454. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  455. Action(self.Parent.HumanoidRootPart, function(self)
  456. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  457. end)
  458. end
  459. end)
  460. end
  461. end)
  462. end)
  463.  
  464. Tracers.Name = "Tracers"
  465. Tracers.Parent = Screen
  466. Tracers.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  467. Tracers.Position = UDim2.new(0.666666687, 0, 0.863157868, 0)
  468. Tracers.Size = UDim2.new(0, 104, 0, 30)
  469. Tracers.Font = Enum.Font.SciFi
  470. Tracers.Text = "Tracers : None"
  471. Tracers.TextColor3 = Color3.new(0, 0, 0)
  472. Tracers.TextSize = 14
  473. Tracers.MouseButton1Click:connect(function()
  474. local curr = Tracers.Text:sub(10)
  475. if curr ~= "None" then
  476. ToggleTracers(curr, false)
  477. end
  478. local teams = {"None", "Police", "Criminal", "Prisoner"}
  479. local new = ""
  480. for i,v in pairs(teams) do
  481. if v == curr then
  482. new = teams[i + 1] or teams[1]
  483. end
  484. end
  485. if new ~= "None" then
  486. ToggleTracers(new, true)
  487. end
  488. Tracers.Text = "Tracers: " .. new
  489. end)
  490.  
  491. CtrlDelete.Name = "CtrlDelete"
  492. CtrlDelete.Parent = Screen
  493. CtrlDelete.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  494. CtrlDelete.Position = UDim2.new(0.392265201, 0, 0.368421078, 0)
  495. CtrlDelete.Size = UDim2.new(0, 93, 0, 30)
  496. CtrlDelete.Font = Enum.Font.SciFi
  497. CtrlDelete.Text = "CtrlDelete"
  498. CtrlDelete.TextColor3 = Color3.new(0, 0, 0)
  499. CtrlDelete.TextSize = 14
  500. CtrlDelete.MouseButton1Down:connect(function()
  501. local Plr = game:GetService("Players").LocalPlayer
  502. local Mouse = Plr:GetMouse()
  503.  
  504. Mouse.Button1Down:connect(function()
  505. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  506. if not Mouse.Target then return end
  507. Mouse.Target:Destroy()
  508. end)
  509. end)
  510.  
  511. game:GetService("UserInputService").InputBegan:connect(function(key)
  512. if key.KeyCode == Enum.KeyCode.Insert then
  513. if opened == true then
  514. opened = false
  515. Main.Visible = false
  516. elseif opened == false then
  517. opened = true
  518. Main.Visible = true
  519. end
  520. end
  521. end)
  522.  
  523. warn("[Rose]:Done!Script Sucess Loaded! Open - Insert")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement