Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.07 KB | None | 0 0
  1. --[ medusa gui, gui coded & created by apollumi, functions by UseNobal
  2. --[ don't be a leech, prick
  3.  
  4. local medusa = Instance.new("ScreenGui")
  5. local entire = Instance.new("Frame")
  6. local base = Instance.new("Frame")
  7. local main = Instance.new("Frame")
  8. local menu = Instance.new("Frame")
  9. local close = Instance.new("TextButton")
  10. local mini = Instance.new("TextButton")
  11. local title = Instance.new("TextLabel")
  12. local farming = Instance.new("Frame")
  13. local crates = Instance.new("Frame")
  14. local carops = Instance.new("Frame")
  15. local welcome = Instance.new("Frame")
  16. local misc = Instance.new("Frame")
  17. local vsim = Instance.new("ScrollingFrame")
  18. local admins = Instance.new("ScrollingFrame")
  19. local creds = Instance.new("TextLabel")
  20. local crateb = Instance.new("TextButton")
  21. local carop = Instance.new("TextButton")
  22. local farm = Instance.new("TextButton")
  23. local miscb = Instance.new("TextButton")
  24. local vtitle = Instance.new("TextLabel")
  25. local shatter = Instance.new("TextButton")
  26. local iy = Instance.new("TextButton")
  27. local rocky = Instance.new("TextButton")
  28. local reviz = Instance.new("TextButton")
  29. local atitle = Instance.new("TextLabel")
  30. local afk1 = Instance.new("TextButton")
  31. local afk2 = Instance.new("TextButton")
  32. local esp = Instance.new("TextButton")
  33. local tp = Instance.new("TextButton")
  34. local fastcar = Instance.new("TextButton")
  35. local infni = Instance.new("TextButton")
  36. local usenobal = Instance.new("ImageLabel")
  37. local apollumi = Instance.new("ImageLabel")
  38. local uselabel = Instance.new("TextLabel")
  39. local apollabel = Instance.new("TextLabel")
  40. local desc = Instance.new("TextLabel")
  41. local perks = Instance.new("TextButton")
  42. local dc = Instance.new("TextButton")
  43. local open = Instance.new("TextButton")
  44. local car
  45.  
  46. function check()
  47. for _,v in pairs(workspace.Vehicles:GetChildren()) do
  48. if v:IsA("Model") and v:FindFirstChild("owner").Value == game.Players.LocalPlayer.Name then
  49. car = v
  50. end
  51. end
  52. if car ~= nil then
  53. return true
  54. else
  55. return false
  56. end
  57. end
  58.  
  59. --[ parenting and names
  60.  
  61. medusa.Parent = game.CoreGui
  62. entire.Parent = medusa
  63. base.Parent = entire
  64. close.Parent = entire
  65. mini.Parent = entire
  66. title.Parent = entire
  67. main.Parent = base
  68. menu.Parent = base
  69. farming.Parent = main
  70. crates.Parent = main
  71. carops.Parent = main
  72. welcome.Parent = main
  73. misc.Parent = main
  74. vsim.Parent = menu
  75. admins.Parent = menu
  76. creds.Parent = menu
  77. afk1.Parent = farming
  78. afk2.Parent = farming
  79. esp.Parent = crates
  80. tp.Parent = crates
  81. fastcar.Parent = carops
  82. infni.Parent = carops
  83. usenobal.Parent = welcome
  84. apollumi.Parent = welcome
  85. uselabel.Parent = welcome
  86. desc.Parent = welcome
  87. apollabel.Parent = welcome
  88. perks.Parent = misc
  89. dc.Parent = misc
  90. crateb.Parent = vsim
  91. carop.Parent = vsim
  92. farm.Parent = vsim
  93. miscb.Parent = vsim
  94. vtitle.Parent = vsim
  95. shatter.Parent = admins
  96. iy.Parent = admins
  97. rocky.Parent = admins
  98. reviz.Parent = admins
  99. atitle.Parent = admins
  100. open.Parent = medusa
  101. medusa.Name = "Medusa"
  102.  
  103. --[ cba naming everything :shrug:
  104.  
  105. --[ properties
  106.  
  107. medusa.Enabled = true
  108.  
  109. entire.BackgroundColor3 = Color3.new(0,0,0)
  110. entire.BackgroundTransparency = 0.4
  111. entire.BorderSizePixel = 0
  112. entire.LayoutOrder = 10
  113. entire.Position = UDim2.new(0.094, 0, 0.121, 0)
  114. entire.Size = UDim2.new(0,642,0,28)
  115. entire.Draggable = true
  116. entire.Selectable = true
  117. entire.ZIndex = 10
  118.  
  119. open.BackgroundColor3 = Color3.new(0,0,0)
  120. open.BackgroundTransparency = 0.1
  121. open.BorderColor3 = Color3.new(85,0,255)
  122. open.BorderSizePixel = 2
  123. open.Position = UDim2.new(0.123, 0, 0.701, 0)
  124. open.Size = UDim2.new(0,197,0,67)
  125. open.Font = Enum.Font.GothamBold
  126. open.Text = "Open Medusa"
  127. open.TextColor3 = Color3.new(85,0,255)
  128. open.TextSize = 20
  129. open.Visible = false
  130. open.Draggable = true
  131. open.Selectable = true
  132.  
  133. base.BackgroundColor3 = Color3.new(0,0,0)
  134. base.BackgroundTransparency = 0.2
  135. base.BorderSizePixel = 0
  136. base.Position = UDim2.new(-0.002,0,-0.012,0)
  137. base.Size = UDim2.new(0,643,0,420)
  138. base.Draggable = true
  139. base.Selectable = true
  140.  
  141. close.BackgroundTransparency = 1
  142. close.BorderSizePixel = 0
  143. close.Position = UDim2.new(0.956,0,0,0)
  144. close.Size = UDim2.new(0,28,0,28)
  145. close.LayoutOrder = 15
  146. close.ZIndex = 15
  147. close.Font = Enum.Font.GothamBold
  148. close.Text = "X"
  149. close.TextColor3 = Color3.new(85,0,255)
  150. close.TextSize = 24
  151.  
  152. mini.BackgroundTransparency = 1
  153. mini.BorderSizePixel = 0
  154. mini.Position = UDim2.new(0.913,0,-0.036,0)
  155. mini.Size = UDim2.new(0,28,0,28)
  156. mini.LayoutOrder = 15
  157. mini.ZIndex = 15
  158. mini.Font = Enum.Font.GothamBold
  159. mini.Text = "-"
  160. mini.TextColor3 = Color3.new(85,0,255)
  161. mini.TextSize = 24
  162.  
  163. title.BackgroundTransparency = 1
  164. title.BorderSizePixel = 0
  165. title.Position = UDim2.new(0,0,0,0)
  166. title.LayoutOrder = 15
  167. title.ZIndex = 15
  168. title.Size = UDim2.new(0,642,0,28)
  169. title.Font = Enum.Font.GothamBold
  170. title.Text = "Medusa"
  171. title.TextColor3 = Color3.new(85,0,255)
  172. title.TextSize = 16
  173.  
  174. main.BackgroundTransparency = 0.5
  175. main.BackgroundColor3 = Color3.new(0,0,0)
  176. main.BorderColor3 = Color3.new(85,0,255)
  177. main.BorderSizePixel = 2
  178. main.Position = UDim2.new(0.238,0,0.088,0)
  179. main.Size = UDim2.new(0,480,0,373)
  180.  
  181. menu.BackgroundColor3 = Color3.new(0,0,0)
  182. menu.BackgroundTransparency = 0.4
  183. menu.BorderSizePixel = 0
  184. menu.Position = UDim2.new(0.002,0,0.067,0)
  185. menu.Size = UDim2.new(0,144,0,392)
  186.  
  187. farming.BackgroundColor3 = Color3.new(85,0,255)
  188. farming.BackgroundTransparency = 1
  189. farming.BorderSizePixel = 0
  190. farming.Position = UDim2.new(0.021,0,0.027,0)
  191. farming.Size = UDim2.new(0,460,0,352)
  192. farming.Visible = false
  193.  
  194. crates.BackgroundColor3 = Color3.new(85,0,255)
  195. crates.BackgroundTransparency = 1
  196. crates.BorderSizePixel = 0
  197. crates.Position = UDim2.new(0.021,0,0.027,0)
  198. crates.Size = UDim2.new(0,460,0,352)
  199. crates.Visible = false
  200.  
  201. carops.BackgroundColor3 = Color3.new(85,0,255)
  202. carops.BackgroundTransparency = 1
  203. carops.BorderSizePixel = 0
  204. carops.Position = UDim2.new(0.021,0,0.027,0)
  205. carops.Size = UDim2.new(0,460,0,352)
  206. carops.Visible = false
  207.  
  208. welcome.BackgroundColor3 = Color3.new(85,0,255)
  209. welcome.BackgroundTransparency = 1
  210. welcome.BorderSizePixel = 0
  211. welcome.Position = UDim2.new(0.021,0,0.027,0)
  212. welcome.Size = UDim2.new(0,460,0,352)
  213. welcome.Visible = true
  214.  
  215. misc.BackgroundColor3 = Color3.new(85,0,255)
  216. misc.BackgroundTransparency = 1
  217. misc.BorderSizePixel = 0
  218. misc.Position = UDim2.new(0.021,0,0.027,0)
  219. misc.Size = UDim2.new(0,460,0,352)
  220. misc.Visible = false
  221.  
  222. vsim.BackgroundColor3 = Color3.new(0,0,0)
  223. vsim.BackgroundTransparency = 1
  224. vsim.BorderColor3 = Color3.new(85,0,255)
  225. vsim.BorderSizePixel = 2
  226. vsim.Position = UDim2.new(0.056,0,0,0)
  227. vsim.Size = UDim2.new(0,128,0,158)
  228. vsim.ScrollBarImageColor3 = Color3.new(85,0,255)
  229.  
  230. admins.BackgroundColor3 = Color3.new(0,0,0)
  231. admins.BackgroundTransparency = 1
  232. admins.BorderColor3 = Color3.new(85,0,255)
  233. admins.BorderSizePixel = 2
  234. admins.Position = UDim2.new(0.056,0,0,180)
  235. admins.Size = UDim2.new(0,128,0,158)
  236. admins.ScrollBarImageColor3 = Color3.new(85,0,255)
  237.  
  238. creds.BackgroundTransparency = 1
  239. creds.Position = UDim2.new(0,0,0.89,0)
  240. creds.Size = UDim2.new(0,144,0,41)
  241. creds.Font = Enum.Font.GothamBold
  242. creds.Text = "Medusa by UseNobal & apollumi"
  243. creds.TextSize = 12
  244. creds.TextWrapped = true
  245. creds.TextColor3 = Color3.new(85,0,255)
  246.  
  247. afk1.BackgroundColor3 = Color3.new(85,0,255)
  248. afk1.BorderSizePixel = 0
  249. afk1.Position = UDim2.new(0,0,0,0)
  250. afk1.Size = UDim2.new(0,142,0,142)
  251. afk1.Font = Enum.Font.GothamBold
  252. afk1.Text = "AFK Farm"
  253. afk1.TextSize = 23
  254.  
  255. afk2.BackgroundColor3 = Color3.new(85,0,255)
  256. afk2.BorderSizePixel = 0
  257. afk2.Position = UDim2.new(0.333,0,0,0)
  258. afk2.Size = UDim2.new(0,142,0,142)
  259. afk2.Font = Enum.Font.GothamBold
  260. afk2.Text = "AFK Farm [SUBWAY]"
  261. afk2.TextSize = 23
  262. afk2.TextWrapped = true
  263. afk2.MouseButton1Down:connect(function()
  264. --[[
  265. Fully automatic money/miles farm
  266. TODO:
  267. Add auto respawn vehicle
  268. ]]
  269. local waitTime = 1 --This will be the time it takes (seconds) until your car resets. See line 37
  270. --Do not change anything below :)
  271.  
  272. local found = false
  273. local go = true
  274.  
  275. function findVehicle() --Finds your vehicle
  276. while not found do --Loops until your vehicle has been found
  277. local vehicles = Workspace.Vehicles:getChildren()
  278. for i=1,#vehicles do
  279. if vehicles[i]:findFirstChild'owner' then
  280. if vehicles[i].owner.Value == game:GetService'Players'.LocalPlayer.Name then -- Found your vehicle
  281. found = true --Setting found to true so loop breaks
  282. vehicle = vehicles[i] -- Declares vehicle variable to your vehicle
  283. vehStats = vehicle.Handling -- Declares vehStats variable to vehicle stats folder
  284. vehStats.MaxSpeed.Value = 800
  285. vehStats.Torque.Value = 17000
  286. vehStats.SteeringRadiusConstant.Value = 120000000
  287. elseif vehicles[i + 1] == nil and not found then
  288. --Autorespawn would go here
  289. --Your vehicle does not exist in the Workspace
  290. end
  291. end
  292. end
  293. wait(1) --Waiting before checking again so we don't crash
  294. end
  295. wait(2) --We've found the car. Waiting so the car can be properly placed on the highway
  296. vehicle.PrimaryPart = vehicle.Chassis.VehicleSeat
  297. end
  298.  
  299. function farm() --This is where the magic happens :)
  300.  
  301. while wait(waitTime) do --Waits x seconds before resetting car
  302. vehicle:SetPrimaryPartCFrame(CFrame.new(-280,23,-309)) --Teleports vehicle to highway
  303. game:GetService'VirtualUser':SetKeyUp("w") --Resets W key
  304. game:GetService'VirtualUser':SetKeyDown("w") --Presses W key to go forward
  305. end
  306. end
  307. findVehicle() --Calls the findVehicle function
  308. while go do
  309. if not pcall(farm()) then --Calls farm function & checks for errors
  310. found = false --If it errors, it sets found to false and continues looking for your vehicle.
  311. findVehicle()
  312. end
  313. end
  314. end)
  315.  
  316. esp.BackgroundColor3 = Color3.new(85,0,255)
  317. esp.BorderSizePixel = 0
  318. esp.Position = UDim2.new(0,0,0,0)
  319. esp.Size = UDim2.new(0,142,0,142)
  320. esp.Font = Enum.Font.GothamBold
  321. esp.Text = "Crate ESP"
  322. esp.TextSize = 23
  323. esp.MouseButton1Down:connect(function()
  324. local crates = workspace:getChildren()
  325. for i=1,#crates do
  326. if crates[i].ClassName == "Model" then
  327. local crates2 = crates[i]:getChildren()
  328. for i=1,#crates2 do
  329. if crates2[i].ClassName == "Model" then
  330. local crates3 = crates2[i]:getChildren()
  331. for i=1,#crates3 do
  332. if crates3[i].ClassName == "MeshPart" then
  333. if crates3[i]:findFirstChild("Smoke") then
  334. if crates3[i]:findFirstChild("BoxHandleAdornment") then
  335. else
  336. local a = Instance.new("BoxHandleAdornment",crates3[i])
  337. a.Size = Vector3.new(10,500,6)
  338. a.SizeRelativeOffset = Vector3.new(0,135,0)
  339. a.Color3 = Color3.fromRGB(0,255,0)
  340. a.Transparency = 0.5
  341. a.AlwaysOnTop = true
  342. a.Adornee = crates3[i]
  343. a.ZIndex = 1
  344. local b = Instance.new("BoxHandleAdornment",crates3[i])
  345. b.Size = Vector3.new(10,4,6)
  346. b.Color3 = Color3.fromRGB(0,0,255)
  347. b.Transparency = 0.3
  348. b.AlwaysOnTop = true
  349. b.Adornee = crates3[i]
  350. b.ZIndex = 1
  351. end
  352. end
  353. end
  354. end
  355. end
  356. end
  357. end
  358. end
  359. end)
  360.  
  361. tp.BackgroundColor3 = Color3.new(85,0,255)
  362. tp.BorderSizePixel = 0
  363. tp.Position = UDim2.new(0.333,0,0,0)
  364. tp.Size = UDim2.new(0,142,0,142)
  365. tp.Font = Enum.Font.GothamBold
  366. tp.Text = "Crate TP"
  367. tp.TextSize = 23
  368. tp.TextWrapped = true
  369. tp.MouseButton1Down:connect(function()
  370. local crates = workspace:getChildren()
  371. for i=1,#crates do
  372. if crates[i].ClassName == "Model" then
  373. local crates2 = crates[i]:getChildren()
  374. for i=1,#crates2 do
  375. if crates2[i].ClassName == "Model" then
  376. local crates3 = crates2[i]:getChildren()
  377. for i=1,#crates3 do
  378. if crates3[i].ClassName == "MeshPart" then
  379. if crates3[i]:findFirstChild("Smoke") then
  380. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(crates3[i].Position.X+30,crates3[i].Position.Y+5,crates3[i].Position.Z))
  381. wait()
  382. game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(crates3[i].Position.X,crates3[i].Position.Y,crates3[i].Position.Z))
  383. wait(4)
  384. end
  385. end
  386. end
  387. end
  388. end
  389. end
  390. end
  391. end)
  392.  
  393. fastcar.BackgroundColor3 = Color3.new(85,0,255)
  394. fastcar.BorderSizePixel = 0
  395. fastcar.Position = UDim2.new(0,0,0,0)
  396. fastcar.Size = UDim2.new(0,142,0,142)
  397. fastcar.Font = Enum.Font.GothamBold
  398. fastcar.Text = "Fast Car"
  399. fastcar.TextSize = 23
  400. fastcar.MouseButton1Down:connect(function()
  401. findCar()
  402. myCar.Handling.MaxSpeed.Value = 10000
  403. myCar.Handling.Torque.Value = 40000
  404. myCar.Handling.SteeringRadiusConstant.Value = 15000
  405. myCar.Handling.FrictionRoad.Value = 250
  406. myCar.Handling.Nitro.NitroSpeed.Value = 500
  407. myCar.Handling.Nitro.NitroForce.Value = 5000
  408. myCar.Handling.TurboJump.TurboJumpHeight.Value = 250
  409. end)
  410.  
  411. infni.BackgroundColor3 = Color3.new(85,0,255)
  412. infni.BorderSizePixel = 0
  413. infni.Position = UDim2.new(0.333,0,0,0)
  414. infni.Size = UDim2.new(0,142,0,142)
  415. infni.Font = Enum.Font.GothamBold
  416. infni.Text = "Infinite Nitro"
  417. infni.TextSize = 23
  418. infni.TextWrapped = true
  419. infni.MouseButton1Down:connect(function()
  420. veh = nil
  421. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  422. if v:IsA("Model") then
  423. if v.owner.Value == game.Players.LocalPlayer.Name then
  424. veh = v
  425. end
  426. end
  427. end
  428. han = veh.Handling
  429.  
  430. while han ~= nil do
  431. wait(0.5)
  432. han.Nitro.NitroAmount.Value = 250
  433. end
  434. end)
  435.  
  436. usenobal.BackgroundColor3 = Color3.new(0,0,0)
  437. usenobal.BackgroundTransparency = 0.5
  438. usenobal.BorderSizePixel = 0
  439. usenobal.Position = UDim2.new(0.093,0,0.418,0)
  440. usenobal.Size = UDim2.new(0,145,0,145)
  441. usenobal.Image = "rbxassetid://2873446816"
  442.  
  443. apollumi.BackgroundColor3 = Color3.new(0,0,0)
  444. apollumi.BackgroundTransparency = 0.5
  445. apollumi.BorderSizePixel = 0
  446. apollumi.Position = UDim2.new(0.578,0,0.418,0)
  447. apollumi.Size = UDim2.new(0,145,0,145)
  448. apollumi.Image = "rbxassetid://2873445694"
  449.  
  450. uselabel.BackgroundColor3 = Color3.new(0,0,0)
  451. uselabel.BackgroundTransparency = 0.5
  452. uselabel.BorderSizePixel = 0
  453. uselabel.Position = UDim2.new(0.093,0,0.861,0)
  454. uselabel.Size = UDim2.new(0,145,0,37)
  455. uselabel.Font = Enum.Font.GothamBold
  456. uselabel.Text = "UseNobal"
  457. uselabel.TextColor3 = Color3.new(85,0,255)
  458. uselabel.TextSize = 14
  459.  
  460. apollabel.BackgroundColor3 = Color3.new(0,0,0)
  461. apollabel.BackgroundTransparency = 0.5
  462. apollabel.BorderSizePixel = 0
  463. apollabel.Position = UDim2.new(0.578,0,0.861,0)
  464. apollabel.Size = UDim2.new(0,145,0,37)
  465. apollabel.Font = Enum.Font.GothamBold
  466. apollabel.Text = "apollumi"
  467. apollabel.TextColor3 = Color3.new(85,0,255)
  468. apollabel.TextSize = 14
  469.  
  470. desc.BackgroundTransparency = 1
  471. desc.BorderSizePixel = 0
  472. desc.Position = UDim2.new(0,0,0.021,0)
  473. desc.Size = UDim2.new(0,459,0,221)
  474. desc.Font = Enum.Font.GothamBold
  475. desc.Text = "Welcome to the Medusa GUI, a multipurpose GUI created by UseNobal54654 and apollumi. This GUI contains various admin scripts, as well as scripts for the game Vehicle Simulator. A lot of time and effort went in to the creation of this GUI, and so a vouch would be greatly appreciated, and if you're a leech, we seriously hate you. We hope you enjoy using Medusa, and be sure to give us any feedback you may have by contacting us on our discords or v3rmillion profiles. Have a good day!"
  476. desc.TextColor3 = Color3.new(85,0,255)
  477. desc.TextSize = 14
  478. desc.TextWrapped = true
  479. desc.TextXAlignment = "Right"
  480. desc.TextYAlignment = "Top"
  481.  
  482. perks.BackgroundColor3 = Color3.new(85,0,255)
  483. perks.BorderSizePixel = 0
  484. perks.Position = UDim2.new(0,0,0,0)
  485. perks.Size = UDim2.new(0,142,0,142)
  486. perks.Font = Enum.Font.GothamBold
  487. perks.Text = "Perks"
  488. perks.TextSize = 23
  489. perks.MouseButton1Down:connect(function()
  490. game.Players.LocalPlayer.UserId = 1099580 --simplest code ever!
  491. end)
  492.  
  493. dc.BackgroundColor3 = Color3.new(85,0,255)
  494. dc.BorderSizePixel = 0
  495. dc.Position = UDim2.new(0.333,0,0,0)
  496. dc.Size = UDim2.new(0,142,0,142)
  497. dc.Font = Enum.Font.GothamBold
  498. dc.Text = "Disconnect"
  499. dc.TextSize = 23
  500. dc.TextWrapped = true
  501. dc.MouseButton1Down:connect(function() --hm
  502. game:Shutdown()
  503. end)
  504.  
  505. crateb.BackgroundColor3 = Color3.new(0,0,0)
  506. crateb.BackgroundTransparency = 0.5
  507. crateb.BorderSizePixel = 0
  508. crateb.Position = UDim2.new(-0.008,0,0.033,0)
  509. crateb.Size = UDim2.new(0,115,0,25)
  510. crateb.Font = Enum.Font.GothamBold
  511. crateb.Text = "Crates"
  512. crateb.TextColor3 = Color3.new(85,0,255)
  513. crateb.TextSize = 14
  514.  
  515. carop.BackgroundColor3 = Color3.new(0,0,0)
  516. carop.BackgroundTransparency = 0.5
  517. carop.BorderSizePixel = 0
  518. carop.Position = UDim2.new(-0.008,0,0.068,0)
  519. carop.Size = UDim2.new(0,115,0,25)
  520. carop.Font = Enum.Font.GothamBold
  521. carop.Text = "Car Options"
  522. carop.TextColor3 = Color3.new(85,0,255)
  523. carop.TextSize = 14
  524.  
  525. farm.BackgroundColor3 = Color3.new(0,0,0)
  526. farm.BackgroundTransparency = 0.5
  527. farm.BorderSizePixel = 0
  528. farm.Position = UDim2.new(-0.008,0,0.102,0)
  529. farm.Size = UDim2.new(0,115,0,25)
  530. farm.Font = Enum.Font.GothamBold
  531. farm.Text = "Farming"
  532. farm.TextColor3 = Color3.new(85,0,255)
  533. farm.TextSize = 14
  534.  
  535. miscb.BackgroundColor3 = Color3.new(0,0,0)
  536. miscb.BackgroundTransparency = 0.5
  537. miscb.BorderSizePixel = 0
  538. miscb.Position = UDim2.new(-0.008,0,0.136,0)
  539. miscb.Size = UDim2.new(0,115,0,25)
  540. miscb.Font = Enum.Font.GothamBold
  541. miscb.Text = "Misc"
  542. miscb.TextColor3 = Color3.new(85,0,255)
  543. miscb.TextSize = 14
  544.  
  545. vtitle.BackgroundColor3 = Color3.new(0,0,0)
  546. vtitle.BackgroundTransparency = 1
  547. vtitle.BorderSizePixel = 0
  548. vtitle.Position = UDim2.new(0,0,0,0)
  549. vtitle.Size = UDim2.new(0,115,0,19)
  550. vtitle.Font = Enum.Font.GothamBold
  551. vtitle.Text = "Vehicle Sim"
  552. vtitle.TextColor3 = Color3.new(85,0,255)
  553. vtitle.TextSize = 14
  554.  
  555. shatter.BackgroundColor3 = Color3.new(0,0,0)
  556. shatter.BackgroundTransparency = 0.5
  557. shatter.BorderSizePixel = 0
  558. shatter.Position = UDim2.new(-0.008,0,0.033,0)
  559. shatter.Size = UDim2.new(0,115,0,25)
  560. shatter.Font = Enum.Font.GothamBold
  561. shatter.Text = "Shattervast"
  562. shatter.TextColor3 = Color3.new(85,0,255)
  563. shatter.TextSize = 14
  564. shatter.MouseButton1Down:connect(function()
  565. loadstring(game:HttpGet(('https://pastebin.com/raw/v38q5h50'),true))()
  566. end)
  567.  
  568. iy.BackgroundColor3 = Color3.new(0,0,0)
  569. iy.BackgroundTransparency = 0.5
  570. iy.BorderSizePixel = 0
  571. iy.Position = UDim2.new(-0.008,0,0.068,0)
  572. iy.Size = UDim2.new(0,115,0,25)
  573. iy.Font = Enum.Font.GothamBold
  574. iy.Text = "IY"
  575. iy.TextColor3 = Color3.new(85,0,255)
  576. iy.TextSize = 14
  577. iy.MouseButton1Down:connect(function()
  578. loadstring(game:HttpGet(('https://pastebin.com/raw/MjBzRjmT'),true))()
  579. end)
  580.  
  581. rocky.BackgroundColor3 = Color3.new(0,0,0)
  582. rocky.BackgroundTransparency = 0.5
  583. rocky.BorderSizePixel = 0
  584. rocky.Position = UDim2.new(-0.008,0,0.102,0)
  585. rocky.Size = UDim2.new(0,115,0,25)
  586. rocky.Font = Enum.Font.GothamBold
  587. rocky.Text = "Rocky2u's"
  588. rocky.TextColor3 = Color3.new(85,0,255)
  589. rocky.TextSize = 14
  590. rocky.MouseButton1Down:connect(function()
  591. loadstring(game:HttpGet(('https://pastebin.com/raw/G6tM2NyP'),true))()
  592. end)
  593.  
  594. reviz.BackgroundColor3 = Color3.new(0,0,0)
  595. reviz.BackgroundTransparency = 0.5
  596. reviz.BorderSizePixel = 0
  597. reviz.Position = UDim2.new(-0.008,0,0.136,0)
  598. reviz.Size = UDim2.new(0,115,0,25)
  599. reviz.Font = Enum.Font.GothamBold
  600. reviz.Text = "Reviz's"
  601. reviz.TextColor3 = Color3.new(85,0,255)
  602. reviz.TextSize = 14
  603. reviz.MouseButton1Down:connect(function()
  604. loadstring(game:HttpGet(('https://pastebin.com/raw/wEdYG4Mw'),true))()
  605. end)
  606.  
  607. vtitle.BackgroundColor3 = Color3.new(0,0,0)
  608. vtitle.BackgroundTransparency = 1
  609. vtitle.BorderSizePixel = 0
  610. vtitle.Position = UDim2.new(0,0,0,0)
  611. vtitle.Size = UDim2.new(0,115,0,19)
  612. vtitle.Font = Enum.Font.GothamBold
  613. vtitle.Text = "Vehicle Sim"
  614. vtitle.TextColor3 = Color3.new(85,0,255)
  615. vtitle.TextSize = 14
  616.  
  617. --[ functions begin
  618.  
  619. close.MouseButton1Down:Connect(function()
  620. medusa:Destroy()
  621. end)
  622.  
  623. mini.MouseButton1Down:Connect(function()
  624. open.Visible = true
  625. entire.Visible = false
  626. end)
  627.  
  628. open.MouseButton1Down:Connect(function()
  629. entire.Visible = true
  630. open.Visible = false
  631. end)
  632.  
  633. crateb.MouseButton1Down:Connect(function()
  634. crates.Visible = true
  635. welcome.Visible = false
  636. farming.Visible = false
  637. carops.Visible = false
  638. misc.Visible = false
  639. end)
  640.  
  641. carop.MouseButton1Down:Connect(function()
  642. crates.Visible = false
  643. welcome.Visible = false
  644. farming.Visible = false
  645. carops.Visible = true
  646. misc.Visible = false
  647. end)
  648.  
  649. farm.MouseButton1Down:Connect(function()
  650. crates.Visible = false
  651. welcome.Visible = false
  652. farming.Visible = true
  653. carops.Visible = false
  654. misc.Visible = false
  655. end)
  656.  
  657. miscb.MouseButton1Down:Connect(function()
  658. crates.Visible = false
  659. welcome.Visible = false
  660. farming.Visible = false
  661. carops.Visible = false
  662. misc.Visible = true
  663. end)
  664. --working one
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement