Advertisement
Shadowsoda200

rogui

Jun 30th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 44.23 KB | None | 0 0
  1. -- GUI
  2. -- Objects
  3.  
  4. local RoCitizensGUI = Instance.new("ScreenGui")
  5. local topframe = Instance.new("Frame")
  6. local mainframe = Instance.new("Frame")
  7. local TeleportsTab = Instance.new("TextButton")
  8. local OtherTab = Instance.new("TextButton")
  9. local Creds = Instance.new("TextLabel")
  10. local Close = Instance.new("TextButton")
  11. local Minimize = Instance.new("TextButton")
  12. local TeleportsFrame = Instance.new("Frame")
  13. local TeleportsScrollingFrame = Instance.new("ScrollingFrame")
  14. local HousePlotsTP = Instance.new("TextButton")
  15. local PoliceStationTP = Instance.new("TextButton")
  16. local SchoolTP = Instance.new("TextButton")
  17. local StadiumTP = Instance.new("TextButton")
  18. local HospitalTP = Instance.new("TextButton")
  19. local GymTP = Instance.new("TextButton")
  20. local LibraryTP = Instance.new("TextButton")
  21. local GalleryTP = Instance.new("TextButton")
  22. local SupermartTP = Instance.new("TextButton")
  23. local ClubTP = Instance.new("TextButton")
  24. local VIPTP = Instance.new("TextButton")
  25. local GarageTP = Instance.new("TextButton")
  26. local PaghettisTP = Instance.new("TextButton")
  27. local SpawnTP = Instance.new("TextButton")
  28. local DealershipTP = Instance.new("TextButton")
  29. local GasStationTP = Instance.new("TextButton")
  30. local NomburgerTP = Instance.new("TextButton")
  31. local TheaterTP = Instance.new("TextButton")
  32. local ParkingGarageTP = Instance.new("TextButton")
  33. local ApartmentsTP = Instance.new("TextButton")
  34. local ApartmentsTopTP = Instance.new("TextButton")
  35. local LaVeteTP = Instance.new("TextButton")
  36. local BailleysTP = Instance.new("TextButton")
  37. local PoolsTP = Instance.new("TextButton")
  38. local BankTP = Instance.new("TextButton")
  39. local VaultTP = Instance.new("TextButton")
  40. local LabTP = Instance.new("TextButton")
  41. local CampTP = Instance.new("TextButton")
  42. local OtherFrame = Instance.new("Frame")
  43. local PlayerNameBox = Instance.new("TextBox")
  44. local DestroyHouse = Instance.new("TextButton")
  45. local DonationExploit = Instance.new("TextButton")
  46. local CopyHouse = Instance.new("TextButton")
  47. local OpenDoors = Instance.new("TextButton")
  48. local FlipSwitches = Instance.new("TextButton")
  49. local HousePerms = Instance.new("TextButton")
  50. local Goto = Instance.new("TextButton")
  51. local MoneyGiver = Instance.new("TextButton")
  52. local DonationHelp = Instance.new("TextButton")
  53. local HelpFrame = Instance.new("Frame")
  54. local RequiresPlrname = Instance.new("TextLabel")
  55. local MoneyExplain = Instance.new("TextLabel")
  56.  
  57. -- Properties
  58.  
  59. RoCitizensGUI.Name = "RoCitizens GUI"
  60. RoCitizensGUI.Parent = game.CoreGui
  61.  
  62. topframe.Name = "topframe"
  63. topframe.Parent = RoCitizensGUI
  64. topframe.BackgroundColor3 = Color3.new(0, 0, 0)
  65. topframe.BorderColor3 = Color3.new(0, 0, 0)
  66. topframe.Position = UDim2.new(0.156982228, 0, 0.25, 0)
  67. topframe.Size = UDim2.new(0, 129, 0, 12)
  68. topframe.Active = true
  69. topframe.Draggable = true
  70.  
  71. mainframe.Name = "mainframe"
  72. mainframe.Parent = topframe
  73. mainframe.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  74. mainframe.BorderColor3 = Color3.new(0, 0, 0)
  75. mainframe.Position = UDim2.new(0, 0, 1, 0)
  76. mainframe.Size = UDim2.new(0, 129, 0, 61)
  77.  
  78. TeleportsTab.Name = "TeleportsTab"
  79. TeleportsTab.Parent = mainframe
  80. TeleportsTab.BackgroundColor3 = Color3.new(0.576471, 0.576471, 0.576471)
  81. TeleportsTab.BorderColor3 = Color3.new(0, 0, 0)
  82. TeleportsTab.Position = UDim2.new(0.0697674453, 0, 0.0740740746, 0)
  83. TeleportsTab.Size = UDim2.new(0, 109, 0, 18)
  84. TeleportsTab.Font = Enum.Font.SourceSans
  85. TeleportsTab.Text = "Teleports"
  86. TeleportsTab.TextColor3 = Color3.new(0, 0, 0)
  87. TeleportsTab.TextSize = 14
  88. TeleportsTab.MouseButton1Click:Connect(function()
  89.  
  90. if TeleportsFrame.Visible == false then
  91. TeleportsFrame.Visible = true
  92. else
  93. TeleportsFrame.Visible = false
  94. end
  95.  
  96. end)
  97.  
  98. OtherTab.Name = "OtherTab"
  99. OtherTab.Parent = mainframe
  100. OtherTab.BackgroundColor3 = Color3.new(0.576471, 0.576471, 0.576471)
  101. OtherTab.BorderColor3 = Color3.new(0, 0, 0)
  102. OtherTab.Position = UDim2.new(0.0775193721, 0, 0.609390855, 0)
  103. OtherTab.Size = UDim2.new(0, 108, 0, 18)
  104. OtherTab.Font = Enum.Font.SourceSans
  105. OtherTab.Text = "Other"
  106. OtherTab.TextColor3 = Color3.new(0, 0, 0)
  107. OtherTab.TextSize = 14
  108. OtherTab.MouseButton1Click:Connect(function()
  109.  
  110. if OtherFrame.Visible == false then
  111. OtherFrame.Visible = true
  112. else
  113. OtherFrame.Visible = false
  114. end
  115.  
  116. end)
  117.  
  118. Creds.Name = "Creds"
  119. Creds.Parent = topframe
  120. Creds.BackgroundColor3 = Color3.new(0, 0, 0)
  121. Creds.BorderColor3 = Color3.new(0, 0, 0)
  122. Creds.BorderSizePixel = 0
  123. Creds.Position = UDim2.new(0.0697674453, 0, 0, 0)
  124. Creds.Size = UDim2.new(0, 63, 0, 7)
  125. Creds.Font = Enum.Font.SourceSans
  126. Creds.Text = "Psykek#3180"
  127. Creds.TextColor3 = Color3.new(1, 0.584314, 0)
  128. Creds.TextSize = 14
  129.  
  130. Close.Name = "Close"
  131. Close.Parent = topframe
  132. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  133. Close.BorderColor3 = Color3.new(0, 0, 0)
  134. Close.Position = UDim2.new(0.914728701, 0, 0, 0)
  135. Close.Size = UDim2.new(0, 11, 0, 9)
  136. Close.Font = Enum.Font.SourceSans
  137. Close.Text = "X"
  138. Close.TextColor3 = Color3.new(1, 1, 1)
  139. Close.TextSize = 14
  140. Close.MouseButton1Click:Connect(function()
  141.  
  142. if topframe.Visible == false then
  143. topframe.Visible = false
  144. else
  145. topframe.Visible = false
  146. end
  147.  
  148. end)
  149.  
  150. Close.MouseButton1Click:Connect(function()
  151.  
  152. if HelpFrame.Visible == false then
  153. HelpFrame.Visible = false
  154. else
  155. HelpFrame.Visible = false
  156. end
  157.  
  158. end)
  159.  
  160. Close.MouseButton1Click:Connect(function()
  161.  
  162. if OtherFrame.Visible == false then
  163. OtherFrame.Visible = false
  164. else
  165. OtherFrame.Visible = false
  166. end
  167.  
  168. end)
  169.  
  170. Close.MouseButton1Click:Connect(function()
  171.  
  172. if TeleportsFrame.Visible == false then
  173. TeleportsFrame.Visible = false
  174. else
  175. TeleportsFrame.Visible = false
  176. end
  177.  
  178. end)
  179.  
  180. Minimize.Name = "Minimize"
  181. Minimize.Parent = topframe
  182. Minimize.BackgroundColor3 = Color3.new(0, 0, 0)
  183. Minimize.BorderColor3 = Color3.new(0, 0, 0)
  184. Minimize.Position = UDim2.new(0.829457402, 0, 0, 0)
  185. Minimize.Size = UDim2.new(0, 11, 0, 9)
  186. Minimize.Font = Enum.Font.SourceSans
  187. Minimize.Text = "-"
  188. Minimize.TextColor3 = Color3.new(1, 1, 1)
  189. Minimize.TextSize = 14
  190. Minimize.MouseButton1Click:Connect(function()
  191.  
  192. if mainframe.Visible == false then
  193. mainframe.Visible = true
  194. else
  195. mainframe.Visible = false
  196. end
  197.  
  198. end)
  199.  
  200. Minimize.MouseButton1Click:Connect(function()
  201.  
  202. if HelpFrame.Visible == false then
  203. HelpFrame.Visible = false
  204. else
  205. HelpFrame.Visible = false
  206. end
  207.  
  208. end)
  209.  
  210. Minimize.MouseButton1Click:Connect(function()
  211.  
  212. if OtherFrame.Visible == false then
  213. OtherFrame.Visible = false
  214. else
  215. OtherFrame.Visible = false
  216. end
  217.  
  218. end)
  219.  
  220. Minimize.MouseButton1Click:Connect(function()
  221.  
  222. if TeleportsFrame.Visible == false then
  223. TeleportsFrame.Visible = false
  224. else
  225. TeleportsFrame.Visible = false
  226. end
  227.  
  228. end)
  229.  
  230. TeleportsFrame.Name = "TeleportsFrame"
  231. TeleportsFrame.Parent = RoCitizensGUI
  232. TeleportsFrame.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  233. TeleportsFrame.BorderColor3 = Color3.new(0, 0, 0)
  234. TeleportsFrame.Position = UDim2.new(7.4505806e-09, 0, 0.272286832, 0)
  235. TeleportsFrame.Size = UDim2.new(0, 112, 0, 235)
  236. TeleportsFrame.Active = true
  237. TeleportsFrame.Draggable = true
  238. TeleportsFrame.Visible = false
  239.  
  240. TeleportsScrollingFrame.Name = "TeleportsScrollingFrame"
  241. TeleportsScrollingFrame.Parent = TeleportsFrame
  242. TeleportsScrollingFrame.BackgroundColor3 = Color3.new(0.545098, 0.545098, 0.545098)
  243. TeleportsScrollingFrame.Position = UDim2.new(0.0535714291, 0, 0.029787235, 0)
  244. TeleportsScrollingFrame.Size = UDim2.new(0, 100, 0, 221)
  245. TeleportsScrollingFrame.ScrollBarThickness = 1
  246.  
  247. HousePlotsTP.Name = "HousePlotsTP"
  248. HousePlotsTP.Parent = TeleportsScrollingFrame
  249. HousePlotsTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  250. HousePlotsTP.BorderColor3 = Color3.new(0, 0, 0)
  251. HousePlotsTP.Position = UDim2.new(0.0549999997, 0, 0.0127931777, 0)
  252. HousePlotsTP.Size = UDim2.new(0, 89, 0, 15)
  253. HousePlotsTP.Font = Enum.Font.SourceSans
  254. HousePlotsTP.Text = "House Plots"
  255. HousePlotsTP.TextColor3 = Color3.new(0, 0, 0)
  256. HousePlotsTP.TextSize = 14
  257. HousePlotsTP.MouseButton1Click:Connect(function()
  258. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-14.5373059, 40.2000008, -246.619598))
  259. end)
  260.  
  261. PoliceStationTP.Name = "PoliceStationTP"
  262. PoliceStationTP.Parent = TeleportsScrollingFrame
  263. PoliceStationTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  264. PoliceStationTP.BorderColor3 = Color3.new(0, 0, 0)
  265. PoliceStationTP.Position = UDim2.new(0.0600000024, 0, 0.0447761193, 0)
  266. PoliceStationTP.Size = UDim2.new(0, 89, 0, 15)
  267. PoliceStationTP.Font = Enum.Font.SourceSans
  268. PoliceStationTP.Text = "Police Station"
  269. PoliceStationTP.TextColor3 = Color3.new(0, 0, 0)
  270. PoliceStationTP.TextSize = 14
  271. PoliceStationTP.MouseButton1Click:Connect(function()
  272. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-42.606823, 43.0001106, 537.740173))
  273. end)
  274.  
  275. SchoolTP.Name = "SchoolTP"
  276. SchoolTP.Parent = TeleportsScrollingFrame
  277. SchoolTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  278. SchoolTP.BorderColor3 = Color3.new(0, 0, 0)
  279. SchoolTP.Position = UDim2.new(0.0550000034, 0, 0.0767590627, 0)
  280. SchoolTP.Size = UDim2.new(0, 89, 0, 15)
  281. SchoolTP.Font = Enum.Font.SourceSans
  282. SchoolTP.Text = "School"
  283. SchoolTP.TextColor3 = Color3.new(0, 0, 0)
  284. SchoolTP.TextSize = 14
  285. SchoolTP.MouseButton1Click:Connect(function()
  286. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-105.917046, 40.6005478, 845.568176))
  287. end)
  288.  
  289. StadiumTP.Name = "StadiumTP"
  290. StadiumTP.Parent = TeleportsScrollingFrame
  291. StadiumTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  292. StadiumTP.BorderColor3 = Color3.new(0, 0, 0)
  293. StadiumTP.Position = UDim2.new(0.0550000034, 0, 0.108742006, 0)
  294. StadiumTP.Size = UDim2.new(0, 89, 0, 15)
  295. StadiumTP.Font = Enum.Font.SourceSans
  296. StadiumTP.Text = "Stadium"
  297. StadiumTP.TextColor3 = Color3.new(0, 0, 0)
  298. StadiumTP.TextSize = 14
  299. StadiumTP.MouseButton1Click:Connect(function()
  300. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-406.019836, 49.2000275, 879.79071))
  301. end)
  302.  
  303. HospitalTP.Name = "HospitalTP"
  304. HospitalTP.Parent = TeleportsScrollingFrame
  305. HospitalTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  306. HospitalTP.BorderColor3 = Color3.new(0, 0, 0)
  307. HospitalTP.Position = UDim2.new(0.0600000024, 0, 0.140724957, 0)
  308. HospitalTP.Size = UDim2.new(0, 89, 0, 15)
  309. HospitalTP.Font = Enum.Font.SourceSans
  310. HospitalTP.Text = "Hospital"
  311. HospitalTP.TextColor3 = Color3.new(0, 0, 0)
  312. HospitalTP.TextSize = 14
  313. HospitalTP.MouseButton1Click:Connect(function()
  314. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(270.253082, 40.6000061, 1525.95459))
  315. end)
  316.  
  317. GymTP.Name = "GymTP"
  318. GymTP.Parent = TeleportsScrollingFrame
  319. GymTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  320. GymTP.BorderColor3 = Color3.new(0, 0, 0)
  321. GymTP.Position = UDim2.new(0.0600000024, 0, 0.1727079, 0)
  322. GymTP.Size = UDim2.new(0, 89, 0, 15)
  323. GymTP.Font = Enum.Font.SourceSans
  324. GymTP.Text = "Gym"
  325. GymTP.TextColor3 = Color3.new(0, 0, 0)
  326. GymTP.TextSize = 14
  327. GymTP.MouseButton1Click:Connect(function()
  328. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(183.725479, 40.6000061, 1099.5697))
  329. end)
  330.  
  331. LibraryTP.Name = "LibraryTP"
  332. LibraryTP.Parent = TeleportsScrollingFrame
  333. LibraryTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  334. LibraryTP.BorderColor3 = Color3.new(0, 0, 0)
  335. LibraryTP.Position = UDim2.new(0.0550000034, 0, 0.204690844, 0)
  336. LibraryTP.Size = UDim2.new(0, 89, 0, 15)
  337. LibraryTP.Font = Enum.Font.SourceSans
  338. LibraryTP.Text = "Library"
  339. LibraryTP.TextColor3 = Color3.new(0, 0, 0)
  340. LibraryTP.TextSize = 14
  341. LibraryTP.MouseButton1Click:Connect(function()
  342. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(372.42691, 44.5990105, 1121.01062))
  343. end)
  344.  
  345. GalleryTP.Name = "GalleryTP"
  346. GalleryTP.Parent = TeleportsScrollingFrame
  347. GalleryTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  348. GalleryTP.BorderColor3 = Color3.new(0, 0, 0)
  349. GalleryTP.Position = UDim2.new(0.0599999987, 0, 0.236673787, 0)
  350. GalleryTP.Size = UDim2.new(0, 89, 0, 15)
  351. GalleryTP.Font = Enum.Font.SourceSans
  352. GalleryTP.Text = "Gallery"
  353. GalleryTP.TextColor3 = Color3.new(0, 0, 0)
  354. GalleryTP.TextSize = 14
  355. GalleryTP.MouseButton1Click:Connect(function()
  356. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(626.764709, 45.1999969, 1540.44666))
  357. end)
  358.  
  359. SupermartTP.Name = "SupermartTP"
  360. SupermartTP.Parent = TeleportsScrollingFrame
  361. SupermartTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  362. SupermartTP.BorderColor3 = Color3.new(0, 0, 0)
  363. SupermartTP.Position = UDim2.new(0.0599999987, 0, 0.268656731, 0)
  364. SupermartTP.Size = UDim2.new(0, 89, 0, 15)
  365. SupermartTP.Font = Enum.Font.SourceSans
  366. SupermartTP.Text = "Super Mart"
  367. SupermartTP.TextColor3 = Color3.new(0, 0, 0)
  368. SupermartTP.TextSize = 14
  369. SupermartTP.MouseButton1Click:Connect(function()
  370. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(316.802734, 40.5985069, 928.355103))
  371. end)
  372.  
  373. ClubTP.Name = "ClubTP"
  374. ClubTP.Parent = TeleportsScrollingFrame
  375. ClubTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  376. ClubTP.BorderColor3 = Color3.new(0, 0, 0)
  377. ClubTP.Position = UDim2.new(0.0599999987, 0, 0.300639689, 0)
  378. ClubTP.Size = UDim2.new(0, 89, 0, 15)
  379. ClubTP.Font = Enum.Font.SourceSans
  380. ClubTP.Text = "Club"
  381. ClubTP.TextColor3 = Color3.new(0, 0, 0)
  382. ClubTP.TextSize = 14
  383. ClubTP.MouseButton1Click:Connect(function()
  384. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(577.47821, 36.1989594, 881.908081))
  385. end)
  386.  
  387. VIPTP.Name = "VIPTP"
  388. VIPTP.Parent = TeleportsScrollingFrame
  389. VIPTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  390. VIPTP.BorderColor3 = Color3.new(0, 0, 0)
  391. VIPTP.Position = UDim2.new(0.0549999997, 0, 0.332622647, 0)
  392. VIPTP.Size = UDim2.new(0, 89, 0, 15)
  393. VIPTP.Font = Enum.Font.SourceSans
  394. VIPTP.Text = "VIP"
  395. VIPTP.TextColor3 = Color3.new(0, 0, 0)
  396. VIPTP.TextSize = 14
  397. VIPTP.MouseButton1Click:Connect(function()
  398. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(523.23291, 53.8004646, 928.198792))
  399. end)
  400.  
  401. GarageTP.Name = "GarageTP"
  402. GarageTP.Parent = TeleportsScrollingFrame
  403. GarageTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  404. GarageTP.BorderColor3 = Color3.new(0, 0, 0)
  405. GarageTP.Position = UDim2.new(0.0600000024, 0, 0.364605606, 0)
  406. GarageTP.Size = UDim2.new(0, 89, 0, 15)
  407. GarageTP.Font = Enum.Font.SourceSans
  408. GarageTP.Text = "Garage"
  409. GarageTP.TextColor3 = Color3.new(0, 0, 0)
  410. GarageTP.TextSize = 14
  411. GarageTP.MouseButton1Click:Connect(function()
  412. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(662.628479, 40.2006035, 887.454773))
  413. end)
  414.  
  415. PaghettisTP.Name = "Paghetti'sTP"
  416. PaghettisTP.Parent = TeleportsScrollingFrame
  417. PaghettisTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  418. PaghettisTP.BorderColor3 = Color3.new(0, 0, 0)
  419. PaghettisTP.Position = UDim2.new(0.0550000034, 0, 0.396588564, 0)
  420. PaghettisTP.Size = UDim2.new(0, 89, 0, 15)
  421. PaghettisTP.Font = Enum.Font.SourceSans
  422. PaghettisTP.Text = "Paghetti's"
  423. PaghettisTP.TextColor3 = Color3.new(0, 0, 0)
  424. PaghettisTP.TextSize = 14
  425. PaghettisTP.MouseButton1Click:Connect(function()
  426. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(716.264587, 40.6000061, 766.043396))
  427. end)
  428.  
  429. SpawnTP.Name = "SpawnTP"
  430. SpawnTP.Parent = TeleportsScrollingFrame
  431. SpawnTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  432. SpawnTP.BorderColor3 = Color3.new(0, 0, 0)
  433. SpawnTP.Position = UDim2.new(0.0550000034, 0, 0.428571522, 0)
  434. SpawnTP.Size = UDim2.new(0, 89, 0, 15)
  435. SpawnTP.Font = Enum.Font.SourceSans
  436. SpawnTP.Text = "Spawn"
  437. SpawnTP.TextColor3 = Color3.new(0, 0, 0)
  438. SpawnTP.TextSize = 14
  439. SpawnTP.MouseButton1Click:Connect(function()
  440. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(522.743713, 40.6000061, 627.02002))
  441. end)
  442.  
  443. DealershipTP.Name = "DealershipTP"
  444. DealershipTP.Parent = TeleportsScrollingFrame
  445. DealershipTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  446. DealershipTP.BorderColor3 = Color3.new(0, 0, 0)
  447. DealershipTP.Position = UDim2.new(0.0550000034, 0, 0.460554481, 0)
  448. DealershipTP.Size = UDim2.new(0, 89, 0, 15)
  449. DealershipTP.Font = Enum.Font.SourceSans
  450. DealershipTP.Text = "Dealership"
  451. DealershipTP.TextColor3 = Color3.new(0, 0, 0)
  452. DealershipTP.TextSize = 14
  453. DealershipTP.MouseButton1Click:Connect(function()
  454. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(323.157349, 40.199276, 607.043518))
  455. end)
  456.  
  457. GasStationTP.Name = "GasStationTP"
  458. GasStationTP.Parent = TeleportsScrollingFrame
  459. GasStationTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  460. GasStationTP.BorderColor3 = Color3.new(0, 0, 0)
  461. GasStationTP.Position = UDim2.new(0.0600000024, 0, 0.492537409, 0)
  462. GasStationTP.Size = UDim2.new(0, 89, 0, 15)
  463. GasStationTP.Font = Enum.Font.SourceSans
  464. GasStationTP.Text = "Gas Station"
  465. GasStationTP.TextColor3 = Color3.new(0, 0, 0)
  466. GasStationTP.TextSize = 14
  467. GasStationTP.MouseButton1Click:Connect(function()
  468. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(318.57431, 40.8002701, 464.054932))
  469. end)
  470.  
  471. NomburgerTP.Name = "NomburgerTP"
  472. NomburgerTP.Parent = TeleportsScrollingFrame
  473. NomburgerTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  474. NomburgerTP.BorderColor3 = Color3.new(0, 0, 0)
  475. NomburgerTP.Position = UDim2.new(0.0600000024, 0, 0.524520338, 0)
  476. NomburgerTP.Size = UDim2.new(0, 89, 0, 15)
  477. NomburgerTP.Font = Enum.Font.SourceSans
  478. NomburgerTP.Text = "Nomburger"
  479. NomburgerTP.TextColor3 = Color3.new(0, 0, 0)
  480. NomburgerTP.TextSize = 14
  481. NomburgerTP.MouseButton1Click:Connect(function()
  482. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(406.012878, 40.6000061, 300.434174))
  483. end)
  484.  
  485. TheaterTP.Name = "TheaterTP"
  486. TheaterTP.Parent = TeleportsScrollingFrame
  487. TheaterTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  488. TheaterTP.BorderColor3 = Color3.new(0, 0, 0)
  489. TheaterTP.Position = UDim2.new(0.0600000024, 0, 0.556503296, 0)
  490. TheaterTP.Size = UDim2.new(0, 89, 0, 15)
  491. TheaterTP.Font = Enum.Font.SourceSans
  492. TheaterTP.Text = "Theater"
  493. TheaterTP.TextColor3 = Color3.new(0, 0, 0)
  494. TheaterTP.TextSize = 14
  495. TheaterTP.MouseButton1Click:Connect(function()
  496. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(691.900208, 40.6000061, 481.815674))
  497. end)
  498.  
  499. ParkingGarageTP.Name = "ParkingGarageTP"
  500. ParkingGarageTP.Parent = TeleportsScrollingFrame
  501. ParkingGarageTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  502. ParkingGarageTP.BorderColor3 = Color3.new(0, 0, 0)
  503. ParkingGarageTP.Position = UDim2.new(0.0600000024, 0, 0.588486254, 0)
  504. ParkingGarageTP.Size = UDim2.new(0, 89, 0, 15)
  505. ParkingGarageTP.Font = Enum.Font.SourceSans
  506. ParkingGarageTP.Text = "Parking Garage"
  507. ParkingGarageTP.TextColor3 = Color3.new(0, 0, 0)
  508. ParkingGarageTP.TextSize = 14
  509. ParkingGarageTP.MouseButton1Click:Connect(function()
  510. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(683.101563, 40.1999016, 208.719376))
  511. end)
  512.  
  513. ApartmentsTP.Name = "ApartmentsTP"
  514. ApartmentsTP.Parent = TeleportsScrollingFrame
  515. ApartmentsTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  516. ApartmentsTP.BorderColor3 = Color3.new(0, 0, 0)
  517. ApartmentsTP.Position = UDim2.new(0.0600000024, 0, 0.620469213, 0)
  518. ApartmentsTP.Size = UDim2.new(0, 89, 0, 15)
  519. ApartmentsTP.Font = Enum.Font.SourceSans
  520. ApartmentsTP.Text = "Apartments"
  521. ApartmentsTP.TextColor3 = Color3.new(0, 0, 0)
  522. ApartmentsTP.TextSize = 14
  523. ApartmentsTP.MouseButton1Click:Connect(function()
  524. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(511.04657, 40.6000023, 177.261658))
  525. end)
  526.  
  527. ApartmentsTopTP.Name = "ApartmentsTopTP"
  528. ApartmentsTopTP.Parent = TeleportsScrollingFrame
  529. ApartmentsTopTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  530. ApartmentsTopTP.BorderColor3 = Color3.new(0, 0, 0)
  531. ApartmentsTopTP.Position = UDim2.new(0.0600000024, 0, 0.652452171, 0)
  532. ApartmentsTopTP.Size = UDim2.new(0, 89, 0, 15)
  533. ApartmentsTopTP.Font = Enum.Font.SourceSans
  534. ApartmentsTopTP.Text = "Apartments Top"
  535. ApartmentsTopTP.TextColor3 = Color3.new(0, 0, 0)
  536. ApartmentsTopTP.TextSize = 14
  537. ApartmentsTopTP.MouseButton1Click:Connect(function()
  538. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(504.965454, 112.600037, 179.609741))
  539. end)
  540.  
  541. LaVeteTP.Name = "LaVeteTP"
  542. LaVeteTP.Parent = TeleportsScrollingFrame
  543. LaVeteTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  544. LaVeteTP.BorderColor3 = Color3.new(0, 0, 0)
  545. LaVeteTP.Position = UDim2.new(0.0600000024, 0, 0.684435129, 0)
  546. LaVeteTP.Size = UDim2.new(0, 89, 0, 15)
  547. LaVeteTP.Font = Enum.Font.SourceSans
  548. LaVeteTP.Text = "La Vete"
  549. LaVeteTP.TextColor3 = Color3.new(0, 0, 0)
  550. LaVeteTP.TextSize = 14
  551. LaVeteTP.MouseButton1Click:Connect(function()
  552. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(490.219757, 40.6000023, 35.6828461))
  553. end)
  554.  
  555. BailleysTP.Name = "BailleysTP"
  556. BailleysTP.Parent = TeleportsScrollingFrame
  557. BailleysTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  558. BailleysTP.BorderColor3 = Color3.new(0, 0, 0)
  559. BailleysTP.Position = UDim2.new(0.0600000024, 0, 0.716418087, 0)
  560. BailleysTP.Size = UDim2.new(0, 89, 0, 15)
  561. BailleysTP.Font = Enum.Font.SourceSans
  562. BailleysTP.Text = "Bailley's"
  563. BailleysTP.TextColor3 = Color3.new(0, 0, 0)
  564. BailleysTP.TextSize = 14
  565. BailleysTP.MouseButton1Click:Connect(function()
  566. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(388.630615, 40.6000061, 66.4509811))
  567. end)
  568.  
  569. PoolsTP.Name = "PoolsTP"
  570. PoolsTP.Parent = TeleportsScrollingFrame
  571. PoolsTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  572. PoolsTP.BorderColor3 = Color3.new(0, 0, 0)
  573. PoolsTP.Position = UDim2.new(0.0600000024, 0, 0.748400986, 0)
  574. PoolsTP.Size = UDim2.new(0, 89, 0, 15)
  575. PoolsTP.Font = Enum.Font.SourceSans
  576. PoolsTP.Text = "Pools"
  577. PoolsTP.TextColor3 = Color3.new(0, 0, 0)
  578. PoolsTP.TextSize = 14
  579. PoolsTP.MouseButton1Click:Connect(function()
  580. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(184.809845, 40.600708, 599.746095))
  581. end)
  582.  
  583. BankTP.Name = "BankTP"
  584. BankTP.Parent = TeleportsScrollingFrame
  585. BankTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  586. BankTP.BorderColor3 = Color3.new(0, 0, 0)
  587. BankTP.Position = UDim2.new(0.0600000024, 0, 0.780383885, 0)
  588. BankTP.Size = UDim2.new(0, 89, 0, 15)
  589. BankTP.Font = Enum.Font.SourceSans
  590. BankTP.Text = "Bank"
  591. BankTP.TextColor3 = Color3.new(0, 0, 0)
  592. BankTP.TextSize = 14
  593. BankTP.MouseButton1Click:Connect(function()
  594. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-149.842178, 40.6000061, 1373.71753))
  595. end)
  596.  
  597. VaultTP.Name = "VaultTP"
  598. VaultTP.Parent = TeleportsScrollingFrame
  599. VaultTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  600. VaultTP.BorderColor3 = Color3.new(0, 0, 0)
  601. VaultTP.Position = UDim2.new(0.0600000024, 0, 0.812366843, 0)
  602. VaultTP.Size = UDim2.new(0, 89, 0, 15)
  603. VaultTP.Font = Enum.Font.SourceSans
  604. VaultTP.Text = "Vault"
  605. VaultTP.TextColor3 = Color3.new(0, 0, 0)
  606. VaultTP.TextSize = 14
  607. VaultTP.MouseButton1Click:Connect(function()
  608. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-217.464645, 43, 1485.65125))
  609. end)
  610.  
  611. LabTP.Name = "LabTP"
  612. LabTP.Parent = TeleportsScrollingFrame
  613. LabTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  614. LabTP.BorderColor3 = Color3.new(0, 0, 0)
  615. LabTP.Position = UDim2.new(0.0600000024, 0, 0.844349802, 0)
  616. LabTP.Size = UDim2.new(0, 89, 0, 15)
  617. LabTP.Font = Enum.Font.SourceSans
  618. LabTP.Text = "Lab"
  619. LabTP.TextColor3 = Color3.new(0, 0, 0)
  620. LabTP.TextSize = 14
  621. LabTP.MouseButton1Click:Connect(function()
  622. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(164.821335, 4.40000153, 59.6830521))
  623. end)
  624.  
  625. CampTP.Name = "CampTP"
  626. CampTP.Parent = TeleportsScrollingFrame
  627. CampTP.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  628. CampTP.BorderColor3 = Color3.new(0, 0, 0)
  629. CampTP.Position = UDim2.new(0.0600000024, 0, 0.87633276, 0)
  630. CampTP.Size = UDim2.new(0, 89, 0, 15)
  631. CampTP.Font = Enum.Font.SourceSans
  632. CampTP.Text = "Camp"
  633. CampTP.TextColor3 = Color3.new(0, 0, 0)
  634. CampTP.TextSize = 14
  635. CampTP.MouseButton1Click:Connect(function()
  636. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(684.505554, 39.8000031, -334.9245))
  637. end)
  638.  
  639. OtherFrame.Name = "OtherFrame"
  640. OtherFrame.Parent = RoCitizensGUI
  641. OtherFrame.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  642. OtherFrame.BorderColor3 = Color3.new(0, 0, 0)
  643. OtherFrame.Position = UDim2.new(0.576382399, 0, 0.401162803, 0)
  644. OtherFrame.Size = UDim2.new(0, 170, 0, 137)
  645. OtherFrame.Active = true
  646. OtherFrame.Draggable = true
  647. OtherFrame.Visible= false
  648.  
  649. PlayerNameBox.Name = "PlayerNameBox"
  650. PlayerNameBox.Parent = OtherFrame
  651. PlayerNameBox.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  652. PlayerNameBox.BorderColor3 = Color3.new(0, 0, 0)
  653. PlayerNameBox.Position = UDim2.new(0.0500000007, 0, 0.0583941601, 0)
  654. PlayerNameBox.Size = UDim2.new(0, 153, 0, 17)
  655. PlayerNameBox.Font = Enum.Font.SourceSans
  656. PlayerNameBox.Text = "Player Name Here"
  657. PlayerNameBox.TextColor3 = Color3.new(0, 0, 0)
  658. PlayerNameBox.TextSize = 14
  659.  
  660. DestroyHouse.Name = "DestroyHouse"
  661. DestroyHouse.Parent = OtherFrame
  662. DestroyHouse.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  663. DestroyHouse.BorderColor3 = Color3.new(0, 0, 0)
  664. DestroyHouse.Position = UDim2.new(0.052941177, 0, 0.23357664, 0)
  665. DestroyHouse.Size = UDim2.new(0, 67, 0, 17)
  666. DestroyHouse.Font = Enum.Font.SourceSans
  667. DestroyHouse.Text = "Destroy House"
  668. DestroyHouse.TextColor3 = Color3.new(0, 0, 0)
  669. DestroyHouse.TextSize = 12
  670. DestroyHouse.TextWrapped = true
  671. DestroyHouse.MouseButton1Click:Connect(function()
  672. local Target = (PlayerNameBox.Text)
  673. local Plrs = game:GetService("Players")
  674. local MyPlr = Plrs.LocalPlayer
  675.  
  676. function FindPlayer(Str, Hint)
  677. local Plr = { }
  678. for _, v in pairs(Plrs:GetPlayers()) do
  679. if string.lower(string.sub(v.Name, 1, string.len(Str))) == string.lower(Str) then
  680. table.insert(Plr, v)
  681. end
  682. end
  683. if #Plr == 1 then
  684. return Plr[1]
  685. else
  686. Hint.Text = "PLAYER NOT FOUND. CHECK YOUR SPELLING YOU IDIOT."
  687. wait(5)
  688. Hint:Destroy()
  689. error("lalalalalalalalalalaalalalaalalallalalalallalalallalalalallalalalall")
  690. end
  691. end
  692.  
  693. function FindHouse(Plr)
  694. local Properties = { }
  695. for _, v in next, workspace:GetChildren() do
  696. if v:IsA("Model") and v.Name == "Property" then
  697. table.insert(Properties, v:GetChildren())
  698. end
  699. end
  700. for _, v in next, Properties do
  701. local Find = v[1]:FindFirstChild("Owner")
  702. if Find then
  703. if Find.Value == Plr.Name then
  704. return v[1]
  705. end
  706. end
  707. end
  708.  
  709. return nil
  710. end
  711.  
  712. function DestroyHouse(Str)
  713. local Plr = FindPlayer(Str)
  714. if Plr then
  715. local GetHouse = FindHouse(Plr)
  716. if GetHouse then
  717. workspace.CommunicationRelays.House.ResetProperty:FireServer(GetHouse)
  718. end
  719. end
  720. end
  721.  
  722. DestroyHouse(Target)
  723. end)
  724.  
  725. DonationExploit.Name = "DonationExploit"
  726. DonationExploit.Parent = OtherFrame
  727. DonationExploit.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  728. DonationExploit.BorderColor3 = Color3.new(0, 0, 0)
  729. DonationExploit.Position = UDim2.new(0.558823586, 0, 0.23357664, 0)
  730. DonationExploit.Size = UDim2.new(0, 67, 0, 17)
  731. DonationExploit.Font = Enum.Font.SourceSans
  732. DonationExploit.Text = "Donation"
  733. DonationExploit.TextColor3 = Color3.new(0, 0, 0)
  734. DonationExploit.TextSize = 14
  735. DonationExploit.MouseButton1Click:Connect(function()
  736. local Plrs = game:GetService("Players")
  737. local MyPlr = Plrs.LocalPlayer
  738. local MyMoney = MyPlr.Money
  739. local MyMoneyVal = MyMoney.Value
  740. local MoneyChange = MyPlr.ChangeMoney
  741. local TradeCrap = workspace.CommunicationRelays.Interclient
  742. local CurrentTrades = workspace.CurrentTrades
  743.  
  744. function DonateExploit(Plr)
  745. local Response, TradeId = TradeCrap.RequestTrade:InvokeServer(Plr.Name)
  746. if Response and Response == "Accept" then
  747. local Math = (2147483647 - Plr.Money.Value)
  748. TradeCrap.TradeStart:InvokeServer(Plr.Name, TradeId)
  749. TradeCrap.TradeUpdate:InvokeServer(TradeId, Math, "Money")
  750. repeat wait() until CurrentTrades:FindFirstChild(TradeId)
  751. repeat
  752. TradeCrap.TradeAccept:FireServer(TradeId)
  753. wait(1)
  754. until not CurrentTrades:FindFirstChild(TradeId)
  755. elseif Response == "Reject" then
  756. TradeCrap.SendMessage:InvokeServer("Declined trade? Fine I guess you don't want 2 billion dollars.", Plr.Name)
  757. end
  758. end
  759.  
  760.  
  761. local Hint = Instance.new("Hint", game:GetService("CoreGui"))
  762. Hint.Text = ""
  763. for _, v in next, Plrs:GetPlayers() do
  764. if v ~= MyPlr then
  765. Hint.Text = "Trade sent to " .. v.Name .. " waiting for response and for him/her to accept..."
  766. DonateExploit(v)
  767. Hint.Text = "Trade finished."
  768. wait(3)
  769. end
  770. end
  771.  
  772. local math = MyMoneyVal - MyMoney.Value
  773. MoneyChange:Fire(math)
  774. Hint:Destroy()
  775.  
  776. end)
  777.  
  778. CopyHouse.Name = "CopyHouse"
  779. CopyHouse.Parent = OtherFrame
  780. CopyHouse.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  781. CopyHouse.BorderColor3 = Color3.new(0, 0, 0)
  782. CopyHouse.Position = UDim2.new(0.052941177, 0, 0.394160599, 0)
  783. CopyHouse.Size = UDim2.new(0, 67, 0, 17)
  784. CopyHouse.Font = Enum.Font.SourceSans
  785. CopyHouse.Text = "Copy House"
  786. CopyHouse.TextColor3 = Color3.new(0, 0, 0)
  787. CopyHouse.TextSize = 14
  788. CopyHouse.MouseButton1Click:Connect(function()
  789. local Target = (PlayerNameBox.Text)
  790. local Plrs = game:GetService("Players")
  791. local MyPlr = Plrs.LocalPlayer
  792.  
  793. function FindPlayer(Str, Hint)
  794. local Plr = { }
  795. for _, v in pairs(Plrs:GetPlayers()) do
  796. if string.lower(string.sub(v.Name, 1, string.len(Str))) == string.lower(Str) then
  797. table.insert(Plr, v)
  798. end
  799. end
  800. if #Plr == 1 then
  801. return Plr[1]
  802. else
  803. Hint.Text = "PLAYER NOT FOUND. CHECK YOUR SPELLING YOU IDIOT."
  804. wait(5)
  805. Hint:Destroy()
  806. error("lalalalalalalalalalaalalalaalalallalalalallalalallalalalallalalalall")
  807. end
  808. end
  809.  
  810. function FindHouse(Plr)
  811. local Properties = { }
  812. for _, v in next, workspace:GetChildren() do
  813. if v:IsA("Model") and v.Name == "Property" then
  814. table.insert(Properties, v:GetChildren())
  815. end
  816. end
  817. for _, v in next, Properties do
  818. local Find = v[1]:FindFirstChild("Owner")
  819. if Find then
  820. if Find.Value == Plr.Name then
  821. return v[1]
  822. end
  823. end
  824. end
  825.  
  826. return nil
  827. end
  828.  
  829. function FlipLightSwitches(House)
  830. local StaticAssets = House.StaticAssets
  831. for _, v in next, StaticAssets:GetDescendants() do
  832. if v.Name == "SwitchV2" then
  833. workspace.CommunicationRelays.Interaction.LightInteractV2:FireServer(v)
  834. end
  835. end
  836. end
  837.  
  838. function BuildHouse(Str)
  839. local Building = true
  840. local Hint = Instance.new("Hint", game:GetService("CoreGui"))
  841. Hint.Text = "Stealing house... (This could take a while... and you might lag...)"
  842. local Plr = FindPlayer(Str, Hint)
  843. workspace.CommunicationRelays.Interclient.SendMessage:InvokeServer("I stole your house. To get it back: reset character, and spawn it in again. I'm Sowwy. :(", Plr.Name)
  844. local GetHouse = FindHouse(Plr)
  845. if GetHouse == nil then
  846. Hint.Text = "That player doesn't have a house!"
  847. wait(7)
  848. Hint:Destroy()
  849. return
  850. end
  851. MyPlr.Character.HumanoidRootPart.CFrame = CFrame.new(GetHouse.PrimaryPart.Position + Vector3.new(0, 5, 0))
  852. repeat wait() until GetHouse.StaticAssets:FindFirstChild("Furniture")
  853. local GetFurniture = GetHouse.StaticAssets:FindFirstChild("Furniture")
  854. local TempFurniture = Instance.new("Folder", MyPlr)
  855. TempFurniture.Name = "TempFurniture"
  856. local GetColors = GetHouse.AestheticChanger.UpdateRequested
  857. local Table = { }
  858. Table["HouseType"] = GetHouse.Name
  859. Table["Furniture"] = { }
  860. Table["Variables"] = { }
  861. for i, v in next, GetFurniture:GetChildren() do
  862. local Clo = v:clone()
  863. Clo.Parent = TempFurniture
  864. end
  865. for i, v in next, GetColors:GetChildren() do
  866. Table["Variables"][v.Name] = v.Value
  867. end
  868.  
  869. workspace.CommunicationRelays.House.ResetProperty:FireServer(GetHouse)
  870. workspace.CommunicationRelays.HomePurchase.House:InvokeServer(GetHouse.Parent, Table)
  871.  
  872. GetHouse = FindHouse(MyPlr)
  873. for i, v in next, TempFurniture:GetChildren() do
  874. Hint.Text = "Stealing house... placing furniture " .. i .. "/" .. #TempFurniture:GetChildren()
  875. local Item = v:FindFirstChild("Item")
  876. local Color = v:FindFirstChild("Color")
  877. if Item and Color then
  878. local test = workspace.CommunicationRelays.House.PlaceFurniture:InvokeServer(v.Name, v.PrimaryPart.CFrame, GetHouse, Item.Value, Color.Value)
  879. if v.Name == "SS_Wooden Sign" then
  880. workspace.CommunicationRelays.Interaction.EditSign:FireServer(test, v.Plaque.SurfaceGui.TextLabel.Text)
  881. end
  882. else
  883. local Color1 = v:FindFirstChild("Color1")
  884. local Color2 = v:FindFirstChild("Color2")
  885. local Display = v:FindFirstChild("Display")
  886. if Color1 and Color2 and Display then
  887. workspace.CommunicationRelays.House.PlaceFurniture:InvokeServer(v.Name, v.PrimaryPart.CFrame, GetHouse, Item.Value, {["Display"] = Display.Value, ["Color1"] = Color1.Value, ["Color2"] = Color2.Value})
  888. end
  889. end
  890. game:GetService("RunService").RenderStepped:wait()
  891. end
  892.  
  893. TempFurniture:Destroy()
  894.  
  895. MyPlr.PlayerGui.Main.MyHouse.Value = GetHouse
  896.  
  897. FlipLightSwitches(GetHouse)
  898. Building = false
  899.  
  900. Hint.Text = "House copied, and spawned. Place some furniture to save it to server."
  901. wait(10)
  902. Hint.Text = "Made by @FalconPunch from v3rmillion."
  903. wait(3)
  904. Hint:Destroy()
  905.  
  906. return Table
  907. end
  908.  
  909. BuildHouse(Target)
  910. end)
  911.  
  912. OpenDoors.Name = "OpenDoors"
  913. OpenDoors.Parent = OtherFrame
  914. OpenDoors.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  915. OpenDoors.BorderColor3 = Color3.new(0, 0, 0)
  916. OpenDoors.Position = UDim2.new(0.558823586, 0, 0.39713791, 0)
  917. OpenDoors.Size = UDim2.new(0, 67, 0, 17)
  918. OpenDoors.Font = Enum.Font.SourceSans
  919. OpenDoors.Text = "Open Doors"
  920. OpenDoors.TextColor3 = Color3.new(0, 0, 0)
  921. OpenDoors.TextSize = 14
  922. OpenDoors.MouseButton1Click:Connect(function()
  923. local Plrs = game:GetService("Players")
  924. local MyPlr = Plrs.LocalPlayer
  925.  
  926. function FindHouse(Plr)
  927. local Properties = { }
  928. for _, v in next, workspace:GetChildren() do
  929. if v:IsA("Model") and v.Name == "Property" then
  930. table.insert(Properties, v:GetChildren())
  931. end
  932. end
  933. for _, v in next, Properties do
  934. local Find = v[1]:FindFirstChild("Owner")
  935. if Find then
  936. if Find.Value == Plr.Name then
  937. return v[1]
  938. end
  939. end
  940. end
  941.  
  942. return nil
  943.  
  944. end
  945.  
  946. function OpenDoors(House)
  947. local GetAssets = House.StaticAssets
  948. for _, v in next, GetAssets:GetDescendants() do
  949. if v.Name == "Door" or v.Name == "GlassDoor" then
  950. workspace.CommunicationRelays.Interaction.DoorInteract:FireServer(v)
  951. end
  952. end
  953. end
  954.  
  955. function Main(Plr)
  956. local GetHouse = FindHouse(Plr)
  957. if GetHouse ~= nil then
  958. OpenDoors(GetHouse)
  959. end
  960. end
  961.  
  962. for _, v in next, Plrs:GetPlayers() do
  963. Main(v)
  964. end
  965. end)
  966.  
  967. FlipSwitches.Name = "FlipSwitches"
  968. FlipSwitches.Parent = OtherFrame
  969. FlipSwitches.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  970. FlipSwitches.BorderColor3 = Color3.new(0, 0, 0)
  971. FlipSwitches.Position = UDim2.new(0.558823586, 0, 0.554744542, 0)
  972. FlipSwitches.Size = UDim2.new(0, 67, 0, 17)
  973. FlipSwitches.Font = Enum.Font.SourceSans
  974. FlipSwitches.Text = "-- Broken --"
  975. FlipSwitches.TextColor3 = Color3.new(0, 0, 0)
  976. FlipSwitches.TextSize = 13
  977.  
  978. HousePerms.Name = "HousePerms"
  979. HousePerms.Parent = OtherFrame
  980. HousePerms.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  981. HousePerms.BorderColor3 = Color3.new(0, 0, 0)
  982. HousePerms.Position = UDim2.new(0.0529412031, 0, 0.554744542, 0)
  983. HousePerms.Size = UDim2.new(0, 67, 0, 17)
  984. HousePerms.Font = Enum.Font.SourceSans
  985. HousePerms.Text = "House Perms"
  986. HousePerms.TextColor3 = Color3.new(0, 0, 0)
  987. HousePerms.TextSize = 13
  988. HousePerms.MouseButton1Click:Connect(function()
  989. function GenerateTable(Plr)
  990. local Tab = { }
  991. for _, v in next, game:GetService("Players"):GetPlayers() do
  992. if v ~= Plr and v ~= game:GetService("Players").LocalPlayer then
  993. Tab[v.Name] = {["Ban"] = false, ["Paint"] = false, ["Door"] = false}
  994. elseif v ~= Plr and v == game:GetService("Players").LocalPlayer then
  995. Tab[v.Name] = {["Ban"] = false, ["Paint"] = true, ["Door"] = true}
  996. end
  997. end
  998. return Tab
  999. end
  1000.  
  1001. function GetHouse(Plr)
  1002. local Properties = { }
  1003. for _, v in next, workspace:GetChildren() do
  1004. if v:IsA("Model") and v.Name == "Property" then
  1005. table.insert(Properties, v:GetChildren())
  1006. end
  1007. end
  1008. for _, v in next, Properties do
  1009. local Find = v[1]:FindFirstChild("Owner")
  1010. if Find then
  1011. if Find.Value == Plr.Name then
  1012. return v[1]
  1013. end
  1014. end
  1015. end
  1016. end
  1017.  
  1018.  
  1019. while true do
  1020. for _, v in next, game:GetService("Players"):GetPlayers() do
  1021. if v ~= game:GetService("Players").LocalPlayer then
  1022. local House = GetHouse(v)
  1023. if House then
  1024. workspace.CommunicationRelays.House.SetPermissions:FireServer(GenerateTable(v), House)
  1025. end
  1026. end
  1027. end
  1028. wait(10)
  1029. end
  1030. end)
  1031.  
  1032. Goto.Name = "Goto"
  1033. Goto.Parent = OtherFrame
  1034. Goto.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  1035. Goto.BorderColor3 = Color3.new(0, 0, 0)
  1036. Goto.Position = UDim2.new(0.558823586, 0, 0.722627759, 0)
  1037. Goto.Size = UDim2.new(0, 67, 0, 17)
  1038. Goto.Font = Enum.Font.SourceSans
  1039. Goto.Text = "Goto"
  1040. Goto.TextColor3 = Color3.new(0, 0, 0)
  1041. Goto.TextSize = 14
  1042. Goto.MouseButton1Click:Connect(function()
  1043. getplr = function(plxr)
  1044. for i, v in pairs(game.Players:GetPlayers()) do
  1045. if string.find(v.Name, plxr) then
  1046. return v
  1047. elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  1048. return v
  1049. end
  1050. end
  1051. end
  1052. local plr = getplr(PlayerNameBox.Text)
  1053. game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  1054. end)
  1055.  
  1056. MoneyGiver.Name = "MoneyGiver"
  1057. MoneyGiver.Parent = OtherFrame
  1058. MoneyGiver.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  1059. MoneyGiver.BorderColor3 = Color3.new(0, 0, 0)
  1060. MoneyGiver.Position = UDim2.new(0.0529412031, 0, 0.722627759, 0)
  1061. MoneyGiver.Size = UDim2.new(0, 67, 0, 17)
  1062. MoneyGiver.Font = Enum.Font.SourceSans
  1063. MoneyGiver.Text = "Money Giver"
  1064. MoneyGiver.TextColor3 = Color3.new(0, 0, 0)
  1065. MoneyGiver.TextSize = 14
  1066. MoneyGiver.MouseButton1Click:Connect(function()
  1067. game.Players.LocalPlayer.ChangeMoney:Fire(2000000000)
  1068. end)
  1069.  
  1070. DonationHelp.Name = "DonationHelp"
  1071. DonationHelp.Parent = OtherFrame
  1072. DonationHelp.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  1073. DonationHelp.BorderColor3 = Color3.new(0, 0, 0)
  1074. DonationHelp.Position = UDim2.new(0.441176474, 0, 0.883211672, 0)
  1075. DonationHelp.Size = UDim2.new(0, 21, 0, 16)
  1076. DonationHelp.Font = Enum.Font.SourceSans
  1077. DonationHelp.Text = "?"
  1078. DonationHelp.TextColor3 = Color3.new(0, 0, 0)
  1079. DonationHelp.TextSize = 14
  1080. DonationHelp.MouseButton1Click:Connect(function()
  1081.  
  1082. if HelpFrame.Visible == false then
  1083. HelpFrame.Visible = true
  1084. else
  1085. HelpFrame.Visible = false
  1086. end
  1087.  
  1088. end)
  1089.  
  1090. HelpFrame.Name = "HelpFrame"
  1091. HelpFrame.Parent = RoCitizensGUI
  1092. HelpFrame.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  1093. HelpFrame.BorderColor3 = Color3.new(0, 0, 0)
  1094. HelpFrame.Position = UDim2.new(0.112933457, 0, 0.412790716, 0)
  1095. HelpFrame.Size = UDim2.new(0, 222, 0, 163)
  1096. HelpFrame.Active = true
  1097. HelpFrame.Draggable = true
  1098. HelpFrame.Visible = false
  1099.  
  1100. RequiresPlrname.Name = "RequiresPlrname"
  1101. RequiresPlrname.Parent = HelpFrame
  1102. RequiresPlrname.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  1103. RequiresPlrname.BorderColor3 = Color3.new(0, 0, 0)
  1104. RequiresPlrname.Position = UDim2.new(0.0495495498, 0, 0.036809817, 0)
  1105. RequiresPlrname.Size = UDim2.new(0, 200, 0, 66)
  1106. RequiresPlrname.Font = Enum.Font.SourceSans
  1107. RequiresPlrname.Text = "Buttons that require a player name input: Destroy house, Copy House, Goto. These buttons will not work without a player name in the textbox."
  1108. RequiresPlrname.TextColor3 = Color3.new(0, 0, 0)
  1109. RequiresPlrname.TextScaled = true
  1110. RequiresPlrname.TextSize = 14
  1111. RequiresPlrname.TextWrapped = true
  1112.  
  1113. MoneyExplain.Name = "MoneyExplain"
  1114. MoneyExplain.Parent = HelpFrame
  1115. MoneyExplain.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  1116. MoneyExplain.BorderColor3 = Color3.new(0, 0, 0)
  1117. MoneyExplain.Position = UDim2.new(0.0495495796, 0, 0.496932507, 0)
  1118. MoneyExplain.Size = UDim2.new(0, 200, 0, 72)
  1119. MoneyExplain.Font = Enum.Font.SourceSans
  1120. MoneyExplain.Text = "The donation button will make you request a trade from every player. If they accept, they get $2 Billion. You lose NO money from this. | The Money giver grants you max money"
  1121. MoneyExplain.TextColor3 = Color3.new(0, 0, 0)
  1122. MoneyExplain.TextScaled = true
  1123. MoneyExplain.TextSize = 14
  1124. MoneyExplain.TextWrapped = true
  1125.  
  1126. end)
  1127. local Items = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='ITEMS',TextColor3=Color3.new(0, 1, 1),TextScaled=true,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=true,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0, 1, 1),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.53125, 0, 0.418436766, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 90, 0, 28),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='Items',Parent = maingui2ro})
  1128. Items.MouseButton1Down:connect(function()
  1129. local ScreenGui = Instance.new("ScreenGui")
  1130. local Holder = Instance.new("Frame")
  1131. local Title = Instance.new("TextLabel")
  1132. local TitleDrop = Instance.new("TextLabel")
  1133. local ScrollingFrame = Instance.new("ScrollingFrame")
  1134. local Title2 = Instance.new("TextLabel")
  1135. local Title2Drop = Instance.new("TextLabel")
  1136. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  1137. Holder.Name = "Holder"
  1138. Holder.Parent = ScreenGui
  1139. Holder.Active = true
  1140. Holder.AnchorPoint = Vector2.new(0, 0.5)
  1141. Holder.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039)
  1142. Holder.BorderSizePixel = 0
  1143. Holder.Draggable = true
  1144. Holder.Position = UDim2.new(0, 25, 0.5, 0)
  1145. Holder.Size = UDim2.new(0, 150, 0, 290)
  1146. Title.Name = "Title"
  1147. Title.Parent = Holder
  1148. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  1149. Title.BackgroundTransparency = 1
  1150. Title.Size = UDim2.new(0, 150, 0, 10)
  1151. Title.ZIndex = 2
  1152. Title.Font = Enum.Font.SourceSansBold
  1153. Title.FontSize = Enum.FontSize.Size14
  1154. Title.Text = "ROCITIZEN ITEM"
  1155. Title.TextColor3 = Color3.new(.1, 1, 1)
  1156. Title.TextSize = 14
  1157. Title.TextYAlignment = Enum.TextYAlignment.Top
  1158. ScrollingFrame.Parent = Holder
  1159. ScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  1160. ScrollingFrame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  1161. ScrollingFrame.BorderSizePixel = 0
  1162. ScrollingFrame.Position = UDim2.new(0.5, 0, 0, 155)
  1163. ScrollingFrame.Size = UDim2.new(0, 140, 0, 250)
  1164. ScrollingFrame.BottomImage = "rbxassetid://985424344"
  1165. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
  1166. ScrollingFrame.MidImage = "rbxassetid://985424344"
  1167. ScrollingFrame.ScrollBarThickness = 3
  1168. ScrollingFrame.TopImage = "rbxassetid://985424344"
  1169. Title2.Name = "Title2"
  1170. Title2.Parent = Holder
  1171. Title2.BackgroundColor3 = Color3.new(1, 1, 1)
  1172. Title2.BackgroundTransparency = 1
  1173. Title2.Position = UDim2.new(0, 0, 0, 10)
  1174. Title2.Size = UDim2.new(0, 150, 0, 10)
  1175. Title2.ZIndex = 2
  1176. Title2.Font = Enum.Font.SourceSansBold
  1177. Title2.FontSize = Enum.FontSize.Size14
  1178. Title2.Text = "PLACE CHANGE GUI"
  1179. Title2.TextColor3 = Color3.new(.1, 1, 1)
  1180. Title2.TextSize = 14
  1181. Title2.TextYAlignment = Enum.TextYAlignment.Top
  1182.  
  1183. --main script--
  1184.  
  1185. local frameitems = {
  1186. }
  1187.  
  1188. local gg = game.ReplicatedStorage.Furniture:GetChildren()
  1189. for i = 1,#gg do
  1190. table.insert(frameitems,gg[i].Name)
  1191.  
  1192. end
  1193.  
  1194. local frame = ScrollingFrame
  1195. for i=1, #frameitems do
  1196. local B = Instance.new("TextButton")
  1197. local V = Instance.new("StringValue", B)
  1198. V.Value = string.sub(frameitems[i], 7)
  1199. B.Name = "B"
  1200. B.Parent = frame
  1201. B.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  1202. B.BorderSizePixel = 0
  1203. B.Position = UDim2.new(0, 3, 0, (((i-1)*22)+(3*i)))
  1204. B.Size = UDim2.new(0, 134, 0, 22)
  1205. B.Font = Enum.Font.SourceSansBold
  1206. B.FontSize = Enum.FontSize.Size14
  1207. B.Text = frameitems[i]
  1208. B.TextColor3 = Color3.new(.1, .5, .5)
  1209. B.TextScaled = true
  1210. B.TextSize = 20
  1211. frame.CanvasSize = UDim2.new(0,0,0,(#frameitems*22+(i*3)+3))
  1212. B.MouseButton1Down:connect(function()
  1213. print(B.Text)
  1214. game.Players.LocalPlayer.PlayerGui.MouseScript.FurniturePlacing.Value = game.ReplicatedStorage.Furniture:FindFirstChild(B.Text)
  1215. end)
  1216. end
  1217.  
  1218. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement