Advertisement
Guest User

brookhaven gui v3.1

a guest
Dec 30th, 2021
12,993
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.95 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6.  
  7. --unlike brookhaven if script patched
  8. --unlike brookhaven if script patched
  9. --unlike brookhaven if script patched
  10. --unlike brookhaven if script patched
  11. --unlike brookhaven if script patched
  12. --unlike brookhaven if script patched
  13. --unlike brookhaven if script patched
  14. --unlike brookhaven if script patched
  15. --unlike brookhaven if script patched
  16. --unlike brookhaven if script patched
  17. --unlike brookhaven if script patched
  18. --unlike brookhaven if script patched
  19. --unlike brookhaven if script patched
  20. --unlike brookhaven if script patched
  21. --unlike brookhaven if script patched
  22. --unlike brookhaven if script patched
  23. --unlike brookhaven if script patched
  24. --unlike brookhaven if script patched
  25. --unlike brookhaven if script patched
  26. --unlike brookhaven if script patched
  27. --unlike brookhaven if script patched
  28. --unlike brookhaven if script patched
  29. --unlike brookhaven if script patched
  30. --unlike brookhaven if script patched
  31. --unlike brookhaven if script patched
  32. --unlike brookhaven if script patched
  33. --unlike brookhaven if script patched
  34. --unlike brookhaven if script patched
  35. --unlike brookhaven if script patched
  36. --unlike brookhaven if script patched
  37. --unlike brookhaven if script patched
  38. --unlike brookhaven if script patched
  39. --unlike brookhaven if script patched
  40. --unlike brookhaven if script patched
  41. --unlike brookhaven if script patched
  42. --unlike brookhaven if script patched
  43. --unlike brookhaven if script patched
  44. --unlike brookhaven if script patched
  45. --unlike brookhaven if script patched
  46. --unlike brookhaven if script patched
  47. --unlike brookhaven if script patched
  48. --unlike brookhaven if script patched
  49. --unlike brookhaven if script patched
  50. --unlike brookhaven if script patched
  51. --unlike brookhaven if script patched
  52. --unlike brookhaven if script patched
  53. --unlike brookhaven if script patched
  54. --unlike brookhaven if script patched
  55. --unlike brookhaven if script patched
  56. --unlike brookhaven if script patched
  57. --unlike brookhaven if script patched
  58. --unlike brookhaven if script patched
  59. --unlike brookhaven if script patched
  60. --unlike brookhaven if script patched
  61. --unlike brookhaven if script patched
  62. --unlike brookhaven if script patched
  63. --unlike brookhaven if script patched
  64. --unlike brookhaven if script patched
  65. --unlike brookhaven if script patched
  66. --unlike brookhaven if script patched
  67.  
  68.  
  69.  
  70. local lp = game:FindService("Players").LocalPlayer
  71.  
  72. local function gplr(String)
  73. local Found = {}
  74. local strl = String:lower()
  75. if strl == "all" then
  76. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  77. table.insert(Found,v)
  78. end
  79. elseif strl == "others" then
  80. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  81. if v.Name ~= lp.Name then
  82. table.insert(Found,v)
  83. end
  84. end
  85. elseif strl == "me" then
  86. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  87. if v.Name == lp.Name then
  88. table.insert(Found,v)
  89. end
  90. end
  91. else
  92. for i,v in pairs(game:FindService("Players"):GetPlayers()) do
  93. if v.Name:lower():sub(1, #String) == String:lower() then
  94. table.insert(Found,v)
  95. end
  96. end
  97. end
  98. return Found
  99. end
  100.  
  101. local ScreenGui = Instance.new("ScreenGui")
  102. local Frame = Instance.new("Frame")
  103. local Giant = Instance.new("TextButton")
  104. local tp = Instance.new("TextButton")
  105. local tptarget = Instance.new("TextBox")
  106. local Holdalltools = Instance.new("TextButton")
  107. local X = Instance.new("TextButton")
  108. local flingtarget = Instance.new("TextBox")
  109. local fling = Instance.new("TextButton")
  110. local Rejoin = Instance.new("TextButton")
  111. local bringtarget = Instance.new("TextBox")
  112. local Bring = Instance.new("TextButton")
  113. local Bringall = Instance.new("TextButton")
  114. local Rainbowcharacter = Instance.new("TextButton")
  115. local Credit = Instance.new("TextButton")
  116. local Open = Instance.new("TextButton")
  117.  
  118. local Frame1 = Instance.new("Frame")
  119. local cre = Instance.new("TextLabel")
  120. local LikeAndSubscribe = Instance.new("TextLabel")
  121. local nlpoxcv = Instance.new("TextLabel")
  122. local TextButton = Instance.new("TextButton")
  123.  
  124.  
  125. local Claimallhouse = Instance.new("TextButton")
  126.  
  127. local Open2 = Instance.new("TextButton")
  128.  
  129.  
  130. local Frame2 = Instance.new("Frame")
  131. local CrashServer = Instance.new("TextButton")
  132. local Version = Instance.new("TextButton")
  133. local XX = Instance.new("TextButton")
  134.  
  135. local JumpPower = Instance.new("TextButton")
  136. local ClickTotp = Instance.new("TextButton")
  137. local Jump = Instance.new("TextBox")
  138. local WalkSpeed = Instance.new("TextButton")
  139. local Speed = Instance.new("TextBox")
  140. local View = Instance.new("TextBox")
  141. local Spectate = Instance.new("TextButton")
  142.  
  143. --Properties:
  144.  
  145. ScreenGui.Parent = game.CoreGui
  146. Frame1.Name = "Frame1"
  147. Frame1.Parent = ScreenGui
  148. Frame1.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  149. Frame1.Position = UDim2.new(0.22708334, 0, 0.162499949, 0)
  150. Frame1.Size = UDim2.new(0, 249, 0, 201)
  151. Frame1.Visible = false
  152.  
  153. Open2.Name = "Open 2"
  154. Open2.Parent = Frame
  155. Open2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  156. Open2.Position = UDim2.new(0.997094154, 0, 0.810631216, 0)
  157. Open2.Size = UDim2.new(0, 49, 0, 50)
  158. Open2.Font = Enum.Font.SourceSans
  159. Open2.Text = "Open 2"
  160. Open2.TextColor3 = Color3.fromRGB(0, 0, 0)
  161. Open2.TextScaled = true
  162. Open2.TextSize = 14.000
  163. Open2.TextWrapped = true
  164. Open2.MouseButton1Down:Connect(function()
  165. Frame2.Visible = true
  166. end)
  167.  
  168. cre.Name = "cre"
  169. cre.Parent = Frame1
  170. cre.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  171. cre.Position = UDim2.new(0, 0, -0.0048040892, 0)
  172. cre.Size = UDim2.new(0, 254, 0, 40)
  173. cre.Font = Enum.Font.SourceSans
  174. cre.Text = "Script made by WarriorRoberr"
  175. cre.TextColor3 = Color3.fromRGB(0, 0, 0)
  176. cre.TextScaled = true
  177. cre.TextSize = 14.000
  178. cre.TextWrapped = true
  179.  
  180. LikeAndSubscribe.Name = "Like And Subscribe"
  181. LikeAndSubscribe.Parent = Frame1
  182. LikeAndSubscribe.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  183. LikeAndSubscribe.Position = UDim2.new(0, 0, 0.194200888, 0)
  184. LikeAndSubscribe.Size = UDim2.new(0, 254, 0, 40)
  185. LikeAndSubscribe.Font = Enum.Font.SourceSans
  186. LikeAndSubscribe.Text = "Like And Subscribe"
  187. LikeAndSubscribe.TextColor3 = Color3.fromRGB(0, 0, 0)
  188. LikeAndSubscribe.TextScaled = true
  189. LikeAndSubscribe.TextSize = 14.000
  190. LikeAndSubscribe.TextWrapped = true
  191.  
  192. nlpoxcv.Name = "nlpoxcv"
  193. nlpoxcv.Parent = Frame1
  194. nlpoxcv.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  195. nlpoxcv.Position = UDim2.new(0, 0, 0.398180991, 0)
  196. nlpoxcv.Size = UDim2.new(0, 254, 0, 40)
  197. nlpoxcv.Font = Enum.Font.SourceSans
  198. nlpoxcv.Text = "Like And Subscribe"
  199. nlpoxcv.TextColor3 = Color3.fromRGB(0, 0, 0)
  200. nlpoxcv.TextScaled = true
  201. nlpoxcv.TextSize = 14.000
  202. nlpoxcv.TextWrapped = true
  203.  
  204. TextButton.Parent = Frame1
  205. TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  206. TextButton.Position = UDim2.new(1.02008033, 0, 0, 0)
  207. TextButton.Size = UDim2.new(0, 46, 0, 44)
  208. TextButton.Font = Enum.Font.SourceSans
  209. TextButton.Text = "X"
  210. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  211. TextButton.TextScaled = true
  212. TextButton.TextSize = 14.000
  213. TextButton.TextWrapped = true
  214. TextButton.MouseButton1Down:Connect(function()
  215. Frame1.Visible = false
  216. end)
  217.  
  218. Credit.Name = "Credit"
  219. Credit.Parent = Frame
  220. Credit.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  221. Credit.Position = UDim2.new(0.0541666746, 0, 0.404138803, 0)
  222. Credit.Size = UDim2.new(0, 195, 0, 44)
  223. Credit.Font = Enum.Font.SourceSans
  224. Credit.Text = "Credit"
  225. Credit.TextColor3 = Color3.fromRGB(0, 0, 0)
  226. Credit.TextScaled = true
  227. Credit.TextSize = 14.000
  228. Credit.TextWrapped = true
  229. Credit.MouseButton1Down:Connect(function()
  230. Frame1.Visible = true
  231. end)
  232.  
  233.  
  234.  
  235. Frame.Parent = ScreenGui
  236. Frame.Active = true
  237. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  238. Frame.Position = UDim2.new(0.143750012, 0, 0.0282131676, 0)
  239. Frame.Size = UDim2.new(0, 322, 0, 301)
  240. Frame.Visible = false
  241. Frame.Draggable = true
  242.  
  243. Giant.Name = "Giant"
  244. Giant.Parent = Frame
  245. Giant.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  246. Giant.Position = UDim2.new(0.0541666634, 0, 0.218092218, 0)
  247. Giant.Size = UDim2.new(0, 100, 0, 44)
  248. Giant.Font = Enum.Font.SourceSans
  249. Giant.Text = "Giant"
  250. Giant.TextColor3 = Color3.fromRGB(0, 0, 0)
  251. Giant.TextScaled = true
  252. Giant.TextSize = 14.000
  253. Giant.TextWrapped = true
  254. Giant.MouseButton1Down:Connect(function()
  255. local LocalPlayer = game:GetService("Players").LocalPlayer
  256. local Character = LocalPlayer.Character
  257. local Humanoid = Character:FindFirstChildOfClass("Humanoid")
  258.  
  259. function rm()
  260. for i,v in pairs(Character:GetDescendants()) do
  261. if v:IsA("BasePart") then
  262. if v.Name == "Handle" or v.Name == "Head" then
  263. if Character.Head:FindFirstChild("OriginalSize") then
  264. Character.Head.OriginalSize:Destroy()
  265. end
  266. else
  267. for i,cav in pairs(v:GetDescendants()) do
  268. if cav:IsA("Attachment") then
  269. if cav:FindFirstChild("OriginalPosition") then
  270. cav.OriginalPosition:Destroy()
  271. end
  272. end
  273. end
  274. v:FindFirstChild("OriginalSize"):Destroy()
  275. if v:FindFirstChild("AvatarPartScaleType") then
  276. v:FindFirstChild("AvatarPartScaleType"):Destroy()
  277. end
  278. end
  279. end
  280. end
  281. end
  282.  
  283. rm()
  284. wait(0.5)
  285. Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
  286. wait(1)
  287.  
  288. rm()
  289. wait(0.5)
  290. Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
  291. wait(1)
  292.  
  293. rm()
  294. wait(0.5)
  295. Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
  296. wait(1)
  297.  
  298. rm()
  299. wait(0.5)
  300. Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
  301. wait(1)
  302.  
  303. rm()
  304. wait(0.5)
  305. Humanoid:FindFirstChild("HeadScale"):Destroy()
  306. wait(1)
  307. end)
  308.  
  309. tptarget.Name = "tptarget"
  310. tptarget.Parent = Frame
  311. tptarget.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  312. tptarget.Position = UDim2.new(0.705168724, 0, 0.0730897039, 0)
  313. tptarget.Size = UDim2.new(0, 80, 0, 50)
  314. tptarget.Font = Enum.Font.SourceSans
  315. tptarget.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  316. tptarget.PlaceholderText = "Player name"
  317. tptarget.Text = ""
  318. tptarget.TextColor3 = Color3.fromRGB(0, 0, 0)
  319. tptarget.TextSize = 14.000
  320.  
  321. tp.Name = "tp"
  322. tp.Parent = Frame
  323. tp.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  324. tp.Position = UDim2.new(0.705168724, 0, 0.238025799, 0)
  325. tp.Size = UDim2.new(0, 80, 0, 34)
  326. tp.Font = Enum.Font.SourceSans
  327. tp.Text = "goto player"
  328. tp.TextColor3 = Color3.fromRGB(0, 0, 0)
  329. tp.TextScaled = true
  330. tp.TextSize = 14.000
  331. tp.TextWrapped = true
  332. tp.MouseButton1Down:Connect(function()
  333. local Target = gplr(tptarget.Text)
  334. if Target[1] then
  335. Target = Target[1]
  336. lp.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  337. end
  338. end)
  339.  
  340. Holdalltools.Name = "Hold all tools"
  341. Holdalltools.Parent = Frame
  342. Holdalltools.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  343. Holdalltools.Position = UDim2.new(0.0541666634, 0, 0.0486570336, 0)
  344. Holdalltools.Size = UDim2.new(0, 100, 0, 44)
  345. Holdalltools.Font = Enum.Font.SourceSans
  346. Holdalltools.Text = "HoldTools"
  347. Holdalltools.TextColor3 = Color3.fromRGB(0, 0, 0)
  348. Holdalltools.TextScaled = true
  349. Holdalltools.TextSize = 14.000
  350. Holdalltools.TextWrapped = true
  351. Holdalltools.MouseButton1Down:Connect(function()
  352. for i,tools in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
  353. if tools:IsA("Tool") then
  354. tools.Parent = game.Players.LocalPlayer.Character
  355. end
  356. end
  357. end)
  358.  
  359. X.Name = "X"
  360. X.Parent = Frame
  361. X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  362. X.Position = UDim2.new(0.998266101, 0, -0.00117685646, 0)
  363. X.Size = UDim2.new(0, 45, 0, 44)
  364. X.Font = Enum.Font.SourceSans
  365. X.Text = "X"
  366. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  367. X.TextScaled = true
  368. X.TextSize = 14.000
  369. X.TextWrapped = true
  370. X.MouseButton1Down:Connect(function()
  371. Frame.Visible = false
  372. end)
  373.  
  374. flingtarget.Name = "flingtarget"
  375. flingtarget.Parent = Frame
  376. flingtarget.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  377. flingtarget.Position = UDim2.new(0.705168724, 0, 0.3887043, 0)
  378. flingtarget.Size = UDim2.new(0, 80, 0, 50)
  379. flingtarget.Font = Enum.Font.SourceSans
  380. flingtarget.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  381. flingtarget.PlaceholderText = "Player name"
  382. flingtarget.Text = ""
  383. flingtarget.TextColor3 = Color3.fromRGB(0, 0, 0)
  384. flingtarget.TextSize = 14.000
  385.  
  386. fling.Name = "fling"
  387. fling.Parent = Frame
  388. fling.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  389. fling.Position = UDim2.new(0.705168724, 0, 0.553640425, 0)
  390. fling.Size = UDim2.new(0, 80, 0, 34)
  391. fling.Font = Enum.Font.SourceSans
  392. fling.Text = "fling cart needed"
  393. fling.TextColor3 = Color3.fromRGB(0, 0, 0)
  394. fling.TextScaled = true
  395. fling.TextSize = 14.000
  396. fling.TextWrapped = true
  397. fling.MouseButton1Down:Connect(function()
  398. local Target = gplr(flingtarget.Text)
  399. if Target[1] then
  400. Target = Target[1]
  401. local Thrust = Instance.new('BodyThrust', lp.Character.HumanoidRootPart)
  402. Thrust.Force = Vector3.new(9999,9999,9999)
  403. Thrust.Name = "flingForce"
  404. repeat
  405. lp.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  406. Thrust.Location = Target.Character.HumanoidRootPart.Position
  407. game:FindService("RunService").Heartbeat:wait()
  408. until not Target.Character:FindFirstChild("Head")
  409. end
  410.  
  411. end)
  412.  
  413. Rejoin.Name = "Rejoin"
  414. Rejoin.Parent = Frame
  415. Rejoin.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  416. Rejoin.Position = UDim2.new(0.392676026, 0, 0.214770019, 0)
  417. Rejoin.Size = UDim2.new(0, 85, 0, 44)
  418. Rejoin.Font = Enum.Font.SourceSans
  419. Rejoin.Text = "Rejoin"
  420. Rejoin.TextColor3 = Color3.fromRGB(0, 0, 0)
  421. Rejoin.TextScaled = true
  422. Rejoin.TextSize = 14.000
  423. Rejoin.TextWrapped = true
  424. Rejoin.MouseButton1Down:Connect(function()
  425. game:GetService("TeleportService"):Teleport(game.PlaceId)
  426. end)
  427.  
  428. bringtarget.Name = "bringtarget"
  429. bringtarget.Parent = Frame
  430. bringtarget.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  431. bringtarget.Position = UDim2.new(0.705168724, 0, 0.700996637, 0)
  432. bringtarget.Size = UDim2.new(0, 80, 0, 50)
  433. bringtarget.Font = Enum.Font.SourceSans
  434. bringtarget.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  435. bringtarget.PlaceholderText = "Player name"
  436. bringtarget.Text = ""
  437. bringtarget.TextColor3 = Color3.fromRGB(0, 0, 0)
  438. bringtarget.TextSize = 14.000
  439.  
  440. Bring.Name = "Bring"
  441. Bring.Parent = Frame
  442. Bring.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  443. Bring.Position = UDim2.new(0.705168724, 0, 0.865932822, 0)
  444. Bring.Size = UDim2.new(0, 80, 0, 34)
  445. Bring.Font = Enum.Font.SourceSans
  446. Bring.Text = "Bring Tool needed"
  447. Bring.TextColor3 = Color3.fromRGB(0, 0, 0)
  448. Bring.TextScaled = true
  449. Bring.TextSize = 14.000
  450. Bring.TextWrapped = true
  451. Bring.MouseButton1Down:Connect(function()
  452. local Target = gplr(bringtarget.Text)
  453. if Target[1] then
  454. Target = Target[1]
  455. Target.Character.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame
  456. lp.Character.Humanoid:Clone().Parent = lp.Character
  457. lp.Character.Humanoid:Destroy()
  458. game.Workspace.CurrentCamera.CameraSubject = lp.Character.Head
  459. end
  460. wait()
  461. for i,tools in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
  462. if tools:IsA("Tool") then
  463. tools.Parent = game.Players.LocalPlayer.Character
  464. end
  465. end
  466. end)
  467.  
  468. Bringall.Name = "Bring all"
  469. Bringall.Parent = Frame
  470. Bringall.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  471. Bringall.Position = UDim2.new(0.392676026, 0, 0.0486570336, 0)
  472. Bringall.Size = UDim2.new(0, 85, 0, 44)
  473. Bringall.Font = Enum.Font.SourceSans
  474. Bringall.Text = "Bring all Tools needed"
  475. Bringall.TextColor3 = Color3.fromRGB(0, 0, 0)
  476. Bringall.TextScaled = true
  477. Bringall.TextSize = 14.000
  478. Bringall.TextWrapped = true
  479. Bringall.MouseButton1Down:Connect(function()
  480. for i,Playys in pairs(game.Players:GetPlayers()) do
  481. Playys.Character.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame
  482. lp.Character.Humanoid:Clone().Parent = lp.Character
  483. lp.Character.Humanoid:Destroy()
  484. game.Workspace.CurrentCamera.CameraSubject = lp.Character.Head
  485. end
  486. wait()
  487. for i,tools in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
  488. if tools:IsA("Tool") then
  489. tools.Parent = game.Players.LocalPlayer.Character
  490. end
  491. end
  492. end)
  493.  
  494. Rainbowcharacter.Name = "Rainbow character"
  495. Rainbowcharacter.Parent = Frame
  496. Rainbowcharacter.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  497. Rainbowcharacter.Position = UDim2.new(0.0541666746, 0, 0.583540797, 0)
  498. Rainbowcharacter.Size = UDim2.new(0, 195, 0, 44)
  499. Rainbowcharacter.Font = Enum.Font.SourceSans
  500. Rainbowcharacter.Text = "Rainbow character"
  501. Rainbowcharacter.TextColor3 = Color3.fromRGB(0, 0, 0)
  502. Rainbowcharacter.TextScaled = true
  503. Rainbowcharacter.TextSize = 14.000
  504. Rainbowcharacter.TextWrapped = true
  505. Rainbowcharacter.MouseButton1Down:Connect(function()
  506. game:GetService('RunService').RenderStepped:connect(function()
  507.  
  508. local args = {
  509. [1] = "skintone",
  510. [2] = "Pink"
  511. }
  512.  
  513. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  514. wait(1)
  515. local args = {
  516. [1] = "skintone",
  517. [2] = "New Yeller"
  518. }
  519.  
  520. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  521. wait(1)
  522. local args = {
  523. [1] = "skintone",
  524. [2] = "Deep orange"
  525. }
  526.  
  527. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  528. wait(1)
  529. local args = {
  530. [1] = "skintone",
  531. [2] = "Really red"
  532. }
  533.  
  534. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  535. wait(1)
  536. local args = {
  537. [1] = "skintone",
  538. [2] = "Lime green"
  539. }
  540.  
  541. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  542. wait(1)
  543. local args = {
  544. [1] = "skintone",
  545. [2] = "Toothpaste"
  546. }
  547.  
  548. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  549. wait(1)
  550. local args = {
  551. [1] = "skintone",
  552. [2] = "Really blue"
  553. }
  554.  
  555. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  556. wait(1)
  557. local args = {
  558. [1] = "skintone",
  559. [2] = "Magenta"
  560. }
  561.  
  562. game:GetService("ReplicatedStorage").RemoteEvents.U8pdateA8vatar:FireServer(unpack(args))
  563. wait(1)
  564. end)
  565. end)
  566.  
  567. Open.Name = "Open"
  568. Open.Parent = ScreenGui
  569. Open.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  570. Open.Position = UDim2.new(0, 0, 0.420062691, 0)
  571. Open.Size = UDim2.new(0, 61, 0, 50)
  572. Open.Font = Enum.Font.SourceSans
  573. Open.Text = "Open"
  574. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  575. Open.TextScaled = true
  576. Open.TextSize = 14.000
  577. Open.TextWrapped = true
  578. Open.MouseButton1Down:Connect(function()
  579. Frame.Visible = true
  580. end)
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591. Claimallhouse.Name = "Claim all house"
  592. Claimallhouse.Parent = Frame
  593. Claimallhouse.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  594. Claimallhouse.Position = UDim2.new(0.0529948175, 0, 0.759620428, 0)
  595. Claimallhouse.Size = UDim2.new(0, 194, 0, 42)
  596. Claimallhouse.Font = Enum.Font.SourceSans
  597. Claimallhouse.Text = "get all house"
  598. Claimallhouse.TextColor3 = Color3.fromRGB(0, 0, 0)
  599. Claimallhouse.TextScaled = true
  600. Claimallhouse.TextSize = 14.000
  601. Claimallhouse.TextWrapped = true
  602. Claimallhouse.MouseButton1Down:Connect(function()
  603. local args = {
  604. [1] = "BuyingHouse",
  605. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  606. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  607. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  608. }
  609.  
  610. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  611. wait()
  612.  
  613. local args = {
  614. [1] = "PickingCustomHouse",
  615. [2] = "012_House",
  616. [3] = 1
  617. }
  618.  
  619. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  620. wait()
  621.  
  622. local args = {
  623. [1] = "PlayerSellHouse"
  624. }
  625.  
  626. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  627. wait()
  628. local args = {
  629. [1] = "BuyingHouse",
  630. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  631. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  632. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  633. }
  634.  
  635. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  636. wait()
  637.  
  638. local args = {
  639. [1] = "PickingCustomHouse",
  640. [2] = "012_House",
  641. [3] = 2
  642. }
  643.  
  644. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  645. wait()
  646.  
  647. local args = {
  648. [1] = "PlayerSellHouse"
  649. }
  650.  
  651. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  652. wait()
  653. local args = {
  654. [1] = "BuyingHouse",
  655. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  656. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  657. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  658. }
  659.  
  660. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  661. wait()
  662.  
  663. local args = {
  664. [1] = "PickingCustomHouse",
  665. [2] = "012_House",
  666. [3] = 3
  667. }
  668.  
  669. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  670. wait()
  671.  
  672. local args = {
  673. [1] = "PlayerSellHouse"
  674. }
  675.  
  676. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  677. wait()
  678. local args = {
  679. [1] = "BuyingHouse",
  680. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  681. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  682. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  683. }
  684.  
  685. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  686. wait()
  687.  
  688. local args = {
  689. [1] = "PickingCustomHouse",
  690. [2] = "012_House",
  691. [3] = 4
  692. }
  693.  
  694. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  695. wait()
  696.  
  697. local args = {
  698. [1] = "PlayerSellHouse"
  699. }
  700.  
  701. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  702. wait()
  703. local args = {
  704. [1] = "BuyingHouse",
  705. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  706. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  707. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  708. }
  709.  
  710. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  711. wait()
  712.  
  713. local args = {
  714. [1] = "PickingCustomHouse",
  715. [2] = "012_House",
  716. [3] = 5
  717. }
  718.  
  719. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  720. wait()
  721.  
  722. local args = {
  723. [1] = "PlayerSellHouse"
  724. }
  725.  
  726. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  727. wait()
  728. local args = {
  729. [1] = "BuyingHouse",
  730. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  731. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  732. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  733. }
  734.  
  735. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  736. wait()
  737.  
  738. local args = {
  739. [1] = "PickingCustomHouse",
  740. [2] = "012_House",
  741. [3] = 6
  742. }
  743.  
  744. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  745. wait()
  746.  
  747. local args = {
  748. [1] = "PlayerSellHouse"
  749. }
  750.  
  751. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  752. wait()
  753. local args = {
  754. [1] = "BuyingHouse",
  755. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  756. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  757. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  758. }
  759.  
  760. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  761. wait()
  762.  
  763. local args = {
  764. [1] = "PickingCustomHouse",
  765. [2] = "012_House",
  766. [3] = 7
  767. }
  768.  
  769. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  770. wait()
  771.  
  772. local args = {
  773. [1] = "PlayerSellHouse"
  774. }
  775.  
  776. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  777. wait()
  778. local args = {
  779. [1] = "BuyingHouse",
  780. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  781. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  782. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  783. }
  784.  
  785. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  786. wait()
  787.  
  788. local args = {
  789. [1] = "PickingCustomHouse",
  790. [2] = "012_House",
  791. [3] = 11
  792. }
  793.  
  794. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  795. wait()
  796.  
  797. local args = {
  798. [1] = "PlayerSellHouse"
  799. }
  800.  
  801. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  802. wait()
  803. local args = {
  804. [1] = "BuyingHouse",
  805. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  806. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  807. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  808. }
  809.  
  810. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  811. wait()
  812.  
  813. local args = {
  814. [1] = "PickingCustomHouse",
  815. [2] = "012_House",
  816. [3] = 12
  817. }
  818.  
  819. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  820. wait()
  821.  
  822. local args = {
  823. [1] = "PlayerSellHouse"
  824. }
  825.  
  826. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  827. wait()
  828. local args = {
  829. [1] = "BuyingHouse",
  830. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  831. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  832. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  833. }
  834.  
  835. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  836. wait()
  837.  
  838. local args = {
  839. [1] = "PickingCustomHouse",
  840. [2] = "012_House",
  841. [3] = 13
  842. }
  843.  
  844. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  845. wait()
  846.  
  847. local args = {
  848. [1] = "PlayerSellHouse"
  849. }
  850.  
  851. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  852. wait()
  853. local args = {
  854. [1] = "BuyingHouse",
  855. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  856. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  857. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  858. }
  859.  
  860. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  861. wait()
  862.  
  863. local args = {
  864. [1] = "PickingCustomHouse",
  865. [2] = "012_House",
  866. [3] = 14
  867. }
  868.  
  869. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  870. wait()
  871.  
  872. local args = {
  873. [1] = "PlayerSellHouse"
  874. }
  875.  
  876. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  877. wait()
  878. local args = {
  879. [1] = "BuyingHouse",
  880. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  881. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  882. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  883. }
  884.  
  885. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  886. wait()
  887.  
  888. local args = {
  889. [1] = "PickingCustomHouse",
  890. [2] = "012_House",
  891. [3] = 15
  892. }
  893.  
  894. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  895. wait()
  896.  
  897. local args = {
  898. [1] = "PlayerSellHouse"
  899. }
  900.  
  901. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  902. wait()
  903. local args = {
  904. [1] = "BuyingHouse",
  905. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  906. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  907. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  908. }
  909.  
  910. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  911. wait()
  912.  
  913. local args = {
  914. [1] = "PickingCustomHouse",
  915. [2] = "012_House",
  916. [3] = 16
  917. }
  918.  
  919. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  920. wait()
  921.  
  922. local args = {
  923. [1] = "PlayerSellHouse"
  924. }
  925.  
  926. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  927. wait()
  928. local args = {
  929. [1] = "BuyingHouse",
  930. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  931. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  932. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  933. }
  934.  
  935. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  936. wait()
  937.  
  938. local args = {
  939. [1] = "PickingCustomHouse",
  940. [2] = "012_House",
  941. [3] = 17
  942. }
  943.  
  944. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  945. wait()
  946.  
  947. local args = {
  948. [1] = "PlayerSellHouse"
  949. }
  950.  
  951. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  952. wait()
  953. local args = {
  954. [1] = "BuyingHouse",
  955. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  956. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  957. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  958. }
  959.  
  960. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  961. wait()
  962.  
  963. local args = {
  964. [1] = "PickingCustomHouse",
  965. [2] = "012_House",
  966. [3] = 18
  967. }
  968.  
  969. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  970. wait()
  971.  
  972. local args = {
  973. [1] = "PlayerSellHouse"
  974. }
  975.  
  976. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  977. wait()
  978. local args = {
  979. [1] = "BuyingHouse",
  980. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  981. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  982. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  983. }
  984.  
  985. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  986. wait()
  987.  
  988. local args = {
  989. [1] = "PickingCustomHouse",
  990. [2] = "012_House",
  991. [3] = 19
  992. }
  993.  
  994. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  995. wait()
  996.  
  997. local args = {
  998. [1] = "PlayerSellHouse"
  999. }
  1000.  
  1001. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1002. wait()
  1003. local args = {
  1004. [1] = "BuyingHouse",
  1005. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1006. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1007. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1008. }
  1009.  
  1010. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1011. wait()
  1012.  
  1013. local args = {
  1014. [1] = "PickingCustomHouse",
  1015. [2] = "012_House",
  1016. [3] = 20
  1017. }
  1018.  
  1019. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1020. wait()
  1021.  
  1022. local args = {
  1023. [1] = "PlayerSellHouse"
  1024. }
  1025.  
  1026. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1027. wait()
  1028. local args = {
  1029. [1] = "BuyingHouse",
  1030. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1031. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1032. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1033. }
  1034.  
  1035. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1036. wait()
  1037.  
  1038. local args = {
  1039. [1] = "PickingCustomHouse",
  1040. [2] = "012_House",
  1041. [3] = 21
  1042. }
  1043.  
  1044. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1045. wait()
  1046.  
  1047. local args = {
  1048. [1] = "PlayerSellHouse"
  1049. }
  1050.  
  1051. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1052. wait()
  1053. local args = {
  1054. [1] = "BuyingHouse",
  1055. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1056. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1057. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1058. }
  1059.  
  1060. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1061. wait()
  1062.  
  1063. local args = {
  1064. [1] = "PickingCustomHouse",
  1065. [2] = "012_House",
  1066. [3] = 22
  1067. }
  1068.  
  1069. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1070. wait()
  1071.  
  1072. local args = {
  1073. [1] = "PlayerSellHouse"
  1074. }
  1075.  
  1076. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1077. wait()
  1078. local args = {
  1079. [1] = "BuyingHouse",
  1080. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1081. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1082. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1083. }
  1084.  
  1085. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1086. wait()
  1087.  
  1088. local args = {
  1089. [1] = "PickingCustomHouse",
  1090. [2] = "012_House",
  1091. [3] = 23
  1092. }
  1093.  
  1094. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1095. wait()
  1096.  
  1097. local args = {
  1098. [1] = "PlayerSellHouse"
  1099. }
  1100.  
  1101. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1102. wait()
  1103. local args = {
  1104. [1] = "BuyingHouse",
  1105. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1106. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1107. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1108. }
  1109.  
  1110. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1111. wait()
  1112.  
  1113. local args = {
  1114. [1] = "PickingCustomHouse",
  1115. [2] = "012_House",
  1116. [3] = 24
  1117. }
  1118.  
  1119. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1120. wait()
  1121.  
  1122. local args = {
  1123. [1] = "PlayerSellHouse"
  1124. }
  1125.  
  1126. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1127. wait()
  1128. end)
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134.  
  1135.  
  1136.  
  1137.  
  1138.  
  1139.  
  1140.  
  1141.  
  1142.  
  1143.  
  1144.  
  1145.  
  1146.  
  1147. Frame2.Name = "Frame1"
  1148. Frame2.Parent = ScreenGui
  1149. Frame2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1150. Frame2.Position = UDim2.new(0.16458334, 0, 0.0910456777, 0)
  1151. Frame2.Size = UDim2.new(0, 168, 0, 267)
  1152. Frame2.Visible = false
  1153. Frame2.Active = true
  1154. Frame2.Draggable = true
  1155.  
  1156. CrashServer.Name = "Crash Server"
  1157. CrashServer.Parent = Frame2
  1158. CrashServer.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  1159. CrashServer.Position = UDim2.new(0.0357142873, 0, 0.845034897, 0)
  1160. CrashServer.Size = UDim2.new(0, 155, 0, 31)
  1161. CrashServer.Font = Enum.Font.SourceSans
  1162. CrashServer.Text = "Crash Server"
  1163. CrashServer.TextColor3 = Color3.fromRGB(0, 0, 0)
  1164. CrashServer.TextScaled = true
  1165. CrashServer.TextSize = 14.000
  1166. CrashServer.TextWrapped = true
  1167. CrashServer.MouseButton1Down:Connect(function()
  1168. game:GetService('RunService').RenderStepped:connect(function()
  1169. local args = {
  1170. [1] = "BuyingHouse",
  1171. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1172. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1173. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1174. }
  1175.  
  1176. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1177.  
  1178. local args = {
  1179. [1] = "PickingCustomHouse",
  1180. [2] = "012_House",
  1181. [3] = 24
  1182. }
  1183.  
  1184. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1185.  
  1186.  
  1187. local args = {
  1188. [1] = "PlayerSellHouse"
  1189. }
  1190.  
  1191. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1192.  
  1193. local args = {
  1194. [1] = "BuyingHouse",
  1195. [2] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").Number.Number,
  1196. [3] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse,
  1197. [4] = workspace:FindFirstChild("001_Lots"):FindFirstChild("For Sale").BuyHouse.PlotOfLand
  1198. }
  1199.  
  1200. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1201.  
  1202. local args = {
  1203. [1] = "PickingCustomHouse",
  1204. [2] = "012_House",
  1205. [3] = 23
  1206. }
  1207.  
  1208. game:GetService("ReplicatedStorage").RemoteEvents.G8ettingH8ouse:FireServer(unpack(args))
  1209.  
  1210. local args = {
  1211. [1] = "PlayerSellHouse"
  1212. }
  1213.  
  1214. game:GetService("ReplicatedStorage").RemoteEvents.P8layerHouseC8hoice:FireServer(unpack(args))
  1215.  
  1216. end)
  1217. end)
  1218.  
  1219.  
  1220.  
  1221.  
  1222. Version.Name = "Version"
  1223. Version.Parent = Frame2
  1224. Version.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1225. Version.Position = UDim2.new(0.0357142873, 0, 0.0360877775, 0)
  1226. Version.Size = UDim2.new(0, 155, 0, 51)
  1227. Version.Font = Enum.Font.SourceSans
  1228. Version.Text = "Wait for version Brookhaven gui V4"
  1229. Version.TextColor3 = Color3.fromRGB(0, 0, 0)
  1230. Version.TextScaled = true
  1231. Version.TextSize = 14.000
  1232. Version.TextWrapped = true
  1233.  
  1234. XX.Name = "X"
  1235. XX.Parent = Frame2
  1236. XX.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1237. XX.Position = UDim2.new(1, 0, -0.000469093473, 0)
  1238. XX.Size = UDim2.new(0, 44, 0, 44)
  1239. XX.Font = Enum.Font.SourceSans
  1240. XX.Text = "X"
  1241. XX.TextColor3 = Color3.fromRGB(0, 0, 0)
  1242. XX.TextScaled = true
  1243. XX.TextSize = 14.000
  1244. XX.TextWrapped = true
  1245. XX.MouseButton1Down:Connect(function()
  1246. Frame2.Visible = false
  1247. end)
  1248.  
  1249.  
  1250.  
  1251.  
  1252.  
  1253.  
  1254. JumpPower.Name = "JumpPower"
  1255. JumpPower.Parent = Frame2
  1256. JumpPower.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1257. JumpPower.Position = UDim2.new(0.0357142873, 0, 0.703146815, 0)
  1258. JumpPower.Size = UDim2.new(0, 95, 0, 29)
  1259. JumpPower.Font = Enum.Font.SourceSans
  1260. JumpPower.Text = "JumpPower"
  1261. JumpPower.TextColor3 = Color3.fromRGB(0, 0, 0)
  1262. JumpPower.TextScaled = true
  1263. JumpPower.TextSize = 14.000
  1264. JumpPower.TextWrapped = true
  1265. JumpPower.MouseButton1Down:Connect(function()
  1266. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Jump.Text
  1267. end)
  1268.  
  1269. ClickTotp.Name = "Click To tp"
  1270. ClickTotp.Parent = Frame2
  1271. ClickTotp.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1272. ClickTotp.Position = UDim2.new(0.0357142873, 0, 0.259510428, 0)
  1273. ClickTotp.Size = UDim2.new(0, 155, 0, 29)
  1274. ClickTotp.Font = Enum.Font.SourceSans
  1275. ClickTotp.Text = "Click To tp"
  1276. ClickTotp.TextColor3 = Color3.fromRGB(0, 0, 0)
  1277. ClickTotp.TextScaled = true
  1278. ClickTotp.TextSize = 14.000
  1279. ClickTotp.TextWrapped = true
  1280. ClickTotp.MouseButton1Down:Connect(function()
  1281. local mouse = game.Players.LocalPlayer:GetMouse()
  1282. local tool = Instance.new("Tool")
  1283. tool.RequiresHandle = false
  1284. tool.Name = "Click Teleport"
  1285. tool.Activated:connect(function()
  1286. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  1287. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  1288. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  1289. end)
  1290. tool.Parent = game.Players.LocalPlayer.Backpack
  1291. end)
  1292.  
  1293. Jump.Name = "Jump"
  1294. Jump.Parent = Frame2
  1295. Jump.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1296. Jump.Position = UDim2.new(0.601190448, 0, 0.704481483, 0)
  1297. Jump.Size = UDim2.new(0, 60, 0, 28)
  1298. Jump.Font = Enum.Font.SourceSans
  1299. Jump.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1300. Jump.Text = ""
  1301. Jump.TextColor3 = Color3.fromRGB(0, 0, 0)
  1302. Jump.TextSize = 14.000
  1303.  
  1304. Speed.Name = "Speed"
  1305. Speed.Parent = Frame2
  1306. Speed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1307. Speed.Position = UDim2.new(0.601190448, 0, 0.562159419, 0)
  1308. Speed.Size = UDim2.new(0, 60, 0, 28)
  1309. Speed.Font = Enum.Font.SourceSans
  1310. Speed.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1311. Speed.Text = ""
  1312. Speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  1313. Speed.TextSize = 14.000
  1314.  
  1315. WalkSpeed.Name = "WalkSpeed"
  1316. WalkSpeed.Parent = Frame2
  1317. WalkSpeed.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1318. WalkSpeed.Position = UDim2.new(0.0357142873, 0, 0.56132865, 0)
  1319. WalkSpeed.Size = UDim2.new(0, 95, 0, 29)
  1320. WalkSpeed.Font = Enum.Font.SourceSans
  1321. WalkSpeed.Text = "Speed"
  1322. WalkSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  1323. WalkSpeed.TextScaled = true
  1324. WalkSpeed.TextSize = 14.000
  1325. WalkSpeed.TextWrapped = true
  1326. WalkSpeed.MouseButton1Down:Connect(function()
  1327. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Speed.Text
  1328. end)
  1329.  
  1330.  
  1331. View.Name = "View"
  1332. View.Parent = Frame2
  1333. View.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1334. View.Position = UDim2.new(0.601190448, 0, 0.412346661, 0)
  1335. View.Size = UDim2.new(0, 60, 0, 28)
  1336. View.Font = Enum.Font.SourceSans
  1337. View.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1338. View.PlaceholderText = "Player name"
  1339. View.Text = ""
  1340. View.TextColor3 = Color3.fromRGB(0, 0, 0)
  1341. View.TextSize = 14.000
  1342.  
  1343. Spectate.Name = "Spectate"
  1344. Spectate.Parent = Frame2
  1345. Spectate.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  1346. Spectate.Position = UDim2.new(0.0357142873, 0, 0.408601344, 0)
  1347. Spectate.Size = UDim2.new(0, 95, 0, 29)
  1348. Spectate.Font = Enum.Font.SourceSans
  1349. Spectate.Text = "Spectate"
  1350. Spectate.TextColor3 = Color3.fromRGB(0, 0, 0)
  1351. Spectate.TextScaled = true
  1352. Spectate.TextSize = 14.000
  1353. Spectate.TextWrapped = true
  1354. Spectate.MouseButton1Down:Connect(function()
  1355. local Target = gplr(View.Text)
  1356. if Target[1] then
  1357. Target = Target[1]
  1358. game.Workspace.CurrentCamera.CameraSubject = Target.Character.Humanoid
  1359. end
  1360. end)
Advertisement
Comments
  • botaklava173
    28 days
    # text 0.12 KB | 0 0
    1. The script is long outdated and doesn't work. Brookhaven fans are advised to look for the script at https://scriptsroblox.net
Add Comment
Please, Sign In to add comment
Advertisement