Facebook
From Tinct Partdridge, 2 Years ago, written in Plain Text.
This paste is a reply to Re: meep city from Buff Treeshrew - view diff
Embed
Download Paste or View Raw
Hits: 193
  1. --Made By Fabi Galea
  2. --GUI
  3.  
  4.  -- GUI
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local Plus = Instance.new("TextButton")
  10. local Boombox = Instance.new("TextButton")
  11. local Farm = Instance.new("TextButton")
  12. local tp = Instance.new("TextButton")
  13. local TextLabel_2 = Instance.new("TextLabel")
  14. local trailer = Instance.new("TextButton")
  15. local Party = Instance.new("TextButton")
  16. local large = Instance.new("TextButton")
  17. local small = Instance.new("TextButton")
  18. local reg = Instance.new("TextButton")
  19. local TextLabel_3 = Instance.new("TextLabel")
  20.  
  21. -- yee
  22.  
  23. ScreenGui.Parent = game.CoreGui
  24.  
  25. Frame.Parent           = ScreenGui
  26. Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  27. Frame.BorderSizePixel  = 0
  28. Frame.Position         = UDim2.new(0.0736468509, 0, 0.4413203, 0)
  29. Frame.Size             = UDim2.new(0, 694, 0, 318)
  30. Frame.Active           = true
  31. Frame.Draggable        = true
  32.  
  33.  
  34. TextLabel.Parent = Frame
  35. TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  36. TextLabel.BorderSizePixel = 0
  37. TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
  38. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  39. TextLabel.Font = Enum.Font.Highway
  40. TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
  41. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  42. TextLabel.TextSize = 20
  43.  
  44. Plus.Name = "Plus"
  45. Plus.Parent = Frame
  46. Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  47. Plus.BorderSizePixel = 0
  48. Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
  49. Plus.Size = UDim2.new(0, 200, 0, 50)
  50. Plus.Font = Enum.Font.Cartoon
  51. Plus.Text = "Become a Plus Member"
  52. Plus.TextColor3 = Color3.new(0, 0, 0)
  53. Plus.TextSize = 20
  54. Plus.MouseButton1Click:connect(function()
  55.         game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  56. end)
  57.  
  58. Boombox.Name = "Boombox"
  59. Boombox.Parent = Frame
  60. Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  61. Boombox.BorderSizePixel = 0
  62. Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
  63. Boombox.Size = UDim2.new(0, 200, 0, 50)
  64. Boombox.Font = Enum.Font.Cartoon
  65. Boombox.Text = "Get the Boombox"
  66. Boombox.TextColor3 = Color3.new(0, 0, 0)
  67. Boombox.TextSize = 20
  68. Boombox.MouseButton1Click:connect(function()
  69.         game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
  70. end)
  71.  
  72. Farm.Name = "Farm"
  73. Farm.Parent = Frame
  74. Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  75. Farm.BorderSizePixel = 0
  76. Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
  77. Farm.Size = UDim2.new(0, 200, 0, 50)
  78. Farm.Font = Enum.Font.Cartoon
  79. Farm.Text = "Lake Money Farm 2.0"
  80. Farm.TextColor3 = Color3.new(0, 0, 0)
  81. Farm.TextSize = 20
  82. Farm.MouseButton1Click:connect(function()
  83.                 game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  84. game.ReplicatedStorage.Connection:InvokeServer(50)
  85. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  86. while wait() do
  87. game.ReplicatedStorage.Connection:InvokeServer(49)
  88. game.ReplicatedStorage.Connection:InvokeServer(51)
  89. end
  90. end)
  91.  
  92. tp.Name = "tp"
  93. tp.Parent = Frame
  94. tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  95. tp.BorderSizePixel = 0
  96. tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
  97. tp.Size = UDim2.new(0, 200, 0, 50)
  98. tp.Font = Enum.Font.Cartoon
  99. tp.Text = "CTRL + Click TP"
  100. tp.TextColor3 = Color3.new(0, 0, 0)
  101. tp.TextSize = 20
  102. tp.MouseButton1Click:connect(function()
  103.         local Player = game.Players.LocalPlayer
  104. local Mouse = Player:GetMouse()
  105. local UserInputService = game:GetService('UserInputService')
  106.  
  107. local HoldingControl = false
  108.  
  109. Mouse.Button1Down:connect(function()
  110. if HoldingControl then
  111. Player.Character:MoveTo(Mouse.Hit.p)
  112. end
  113. end)
  114.  
  115. UserInputService.InputBegan:connect(function(Input, Processed)
  116. if Input.UserInputType == Enum.UserInputType.Keyboard then
  117. if Input.KeyCode == Enum.KeyCode.LeftControl then
  118. HoldingControl = true
  119. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  120. HoldingControl = true
  121. end
  122. end
  123. end)
  124.  
  125. UserInputService.InputEnded:connect(function(Input, Processed)
  126. if Input.UserInputType == Enum.UserInputType.Keyboard then
  127. if Input.KeyCode == Enum.KeyCode.LeftControl then
  128. HoldingControl = false
  129. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  130. HoldingControl = false
  131. end
  132. end
  133. end)
  134. end)
  135.  
  136. TextLabel_2.Parent = Frame
  137. TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  138. TextLabel_2.BorderSizePixel = 0
  139. TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
  140. TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
  141. TextLabel_2.Font = Enum.Font.Code
  142. TextLabel_2.Text = ""
  143. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  144. TextLabel_2.TextSize = 20
  145.  
  146. trailer.Name = "trailer"
  147. trailer.Parent = Frame
  148. trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  149. trailer.BorderSizePixel = 0
  150. trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
  151. trailer.Size = UDim2.new(0, 200, 0, 50)
  152. trailer.Font = Enum.Font.Cartoon
  153. trailer.Text = "Trailer Estate"
  154. trailer.TextColor3 = Color3.new(0, 0, 0)
  155. trailer.TextSize = 20
  156. trailer.MouseButton1Click:connect(function()
  157.         game.ReplicatedStorage.Connection:InvokeServer(45, 482)
  158.         end)
  159.  
  160. Party.Name = "Party"
  161. Party.Parent = Frame
  162. Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  163. Party.BorderSizePixel = 0
  164. Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
  165. Party.Size = UDim2.new(0, 200, 0, 50)
  166. Party.Font = Enum.Font.Cartoon
  167. Party.Text = "Party Estate"
  168. Party.TextColor3 = Color3.new(0, 0, 0)
  169. Party.TextSize = 20
  170. Party.MouseButton1Click:connect(function()
  171.         game.ReplicatedStorage.Connection:InvokeServer(45, 369)
  172. end)
  173.  
  174. large.Name = "large"
  175. large.Parent = Frame
  176. large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  177. large.BorderSizePixel = 0
  178. large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
  179. large.Size = UDim2.new(0, 200, 0, 50)
  180. large.Font = Enum.Font.Cartoon
  181. large.Text = "Larger Estate"
  182. large.TextColor3 = Color3.new(0, 0, 0)
  183. large.TextSize = 20
  184. large.MouseButton1Click:connect(function()
  185.         game.ReplicatedStorage.Connection:InvokeServer(45, 185)
  186. end)
  187.  
  188. small.Name = "small"
  189. small.Parent = Frame
  190. small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  191. small.BorderSizePixel = 0
  192. small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
  193. small.Size = UDim2.new(0, 200, 0, 50)
  194. small.Font = Enum.Font.Cartoon
  195. small.Text = "Small Estate"
  196. small.TextColor3 = Color3.new(0, 0, 0)
  197. small.TextSize = 20--Made By Fabi Galea
  198. --GUI
  199.  
  200.  -- GUI
  201.  
  202. local ScreenGui = Instance.new("ScreenGui")
  203. local Frame = Instance.new("Frame")
  204. local TextLabel = Instance.new("TextLabel")
  205. local Plus = Instance.new("TextButton")
  206. local Boombox = Instance.new("TextButton")
  207. local Farm = Instance.new("TextButton")
  208. local tp = Instance.new("TextButton")
  209. local TextLabel_2 = Instance.new("TextLabel")
  210. local trailer = Instance.new("TextButton")
  211. local Party = Instance.new("TextButton")
  212. local large = Instance.new("TextButton")
  213. local small = Instance.new("TextButton")
  214. local reg = Instance.new("TextButton")
  215. local TextLabel_3 = Instance.new("TextLabel")
  216.  
  217. -- yee
  218.  
  219. ScreenGui.Parent = game.CoreGui
  220.  
  221. Frame.Parent           = ScreenGui
  222. Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  223. Frame.BorderSizePixel  = 0
  224. Frame.Position         = UDim2.new(0.0736468509, 0, 0.4413203, 0)
  225. Frame.Size             = UDim2.new(0, 694, 0, 318)
  226. Frame.Active           = true
  227. Frame.Draggable        = true
  228.  
  229.  
  230. TextLabel.Parent = Frame
  231. TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  232. TextLabel.BorderSizePixel = 0
  233. TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
  234. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  235. TextLabel.Font = Enum.Font.Highway
  236. TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
  237. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  238. TextLabel.TextSize = 20
  239.  
  240. Plus.Name = "Plus"
  241. Plus.Parent = Frame
  242. Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  243. Plus.BorderSizePixel = 0
  244. Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
  245. Plus.Size = UDim2.new(0, 200, 0, 50)
  246. Plus.Font = Enum.Font.Cartoon
  247. Plus.Text = "Become a Plus Member"
  248. Plus.TextColor3 = Color3.new(0, 0, 0)
  249. Plus.TextSize = 20
  250. Plus.MouseButton1Click:connect(function()
  251.         game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  252. end)
  253.  
  254. Boombox.Name = "Boombox"
  255. Boombox.Parent = Frame
  256. Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  257. Boombox.BorderSizePixel = 0
  258. Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
  259. Boombox.Size = UDim2.new(0, 200, 0, 50)
  260. Boombox.Font = Enum.Font.Cartoon
  261. Boombox.Text = "Get the Boombox"
  262. Boombox.TextColor3 = Color3.new(0, 0, 0)
  263. Boombox.TextSize = 20
  264. Boombox.MouseButton1Click:connect(function()
  265.         game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
  266. end)
  267.  
  268. Farm.Name = "Farm"
  269. Farm.Parent = Frame
  270. Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  271. Farm.BorderSizePixel = 0
  272. Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
  273. Farm.Size = UDim2.new(0, 200, 0, 50)
  274. Farm.Font = Enum.Font.Cartoon
  275. Farm.Text = "Lake Money Farm 2.0"
  276. Farm.TextColor3 = Color3.new(0, 0, 0)
  277. Farm.TextSize = 20
  278. Farm.MouseButton1Click:connect(function()
  279.                 game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  280. game.ReplicatedStorage.Connection:InvokeServer(50)
  281. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  282. while wait() do
  283. game.ReplicatedStorage.Connection:InvokeServer(49)
  284. game.ReplicatedStorage.Connection:InvokeServer(51)
  285. end
  286. end)
  287.  
  288. tp.Name = "tp"
  289. tp.Parent = Frame
  290. tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  291. tp.BorderSizePixel = 0
  292. tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
  293. tp.Size = UDim2.new(0, 200, 0, 50)
  294. tp.Font = Enum.Font.Cartoon
  295. tp.Text = "CTRL + Click TP"
  296. tp.TextColor3 = Color3.new(0, 0, 0)
  297. tp.TextSize = 20
  298. tp.MouseButton1Click:connect(function()
  299.         local Player = game.Players.LocalPlayer
  300. local Mouse = Player:GetMouse()
  301. local UserInputService = game:GetService('UserInputService')
  302.  
  303. local HoldingControl = false
  304.  
  305. Mouse.Button1Down:connect(function()
  306. if HoldingControl then
  307. Player.Character:MoveTo(Mouse.Hit.p)
  308. end
  309. end)
  310.  
  311. UserInputService.InputBegan:connect(function(Input, Processed)
  312. if Input.UserInputType == Enum.UserInputType.Keyboard then
  313. if Input.KeyCode == Enum.KeyCode.LeftControl then
  314. HoldingControl = true
  315. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  316. HoldingControl = true
  317. end
  318. end
  319. end)
  320.  
  321. UserInputService.InputEnded:connect(function(Input, Processed)
  322. if Input.UserInputType == Enum.UserInputType.Keyboard then
  323. if Input.KeyCode == Enum.KeyCode.LeftControl then
  324. HoldingControl = false
  325. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  326. HoldingControl = false
  327. end
  328. end
  329. end)
  330. end)
  331.  
  332. TextLabel_2.Parent = Frame
  333. TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  334. TextLabel_2.BorderSizePixel = 0
  335. TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
  336. TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
  337. TextLabel_2.Font = Enum.Font.Code
  338. TextLabel_2.Text = ""
  339. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  340. TextLabel_2.TextSize = 20
  341.  
  342. trailer.Name = "trailer"
  343. trailer.Parent = Frame
  344. trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  345. trailer.BorderSizePixel = 0
  346. trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
  347. trailer.Size = UDim2.new(0, 200, 0, 50)
  348. trailer.Font = Enum.Font.Cartoon
  349. trailer.Text = "Trailer Estate"
  350. trailer.TextColor3 = Color3.new(0, 0, 0)
  351. trailer.TextSize = 20
  352. trailer.MouseButton1Click:connect(function()
  353.         game.ReplicatedStorage.Connection:InvokeServer(45, 482)
  354.         end)
  355.  
  356. Party.Name = "Party"
  357. Party.Parent = Frame
  358. Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  359. Party.BorderSizePixel = 0
  360. Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
  361. Party.Size = UDim2.new(0, 200, 0, 50)
  362. Party.Font = Enum.Font.Cartoon
  363. Party.Text = "Party Estate"
  364. Party.TextColor3 = Color3.new(0, 0, 0)
  365. Party.TextSize = 20
  366. Party.MouseButton1Click:connect(function()
  367.         game.ReplicatedStorage.Connection:InvokeServer(45, 369)
  368. end)
  369.  
  370. large.Name = "large"
  371. large.Parent = Frame
  372. large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  373. large.BorderSizePixel = 0
  374. large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
  375. large.Size = UDim2.new(0, 200, 0, 50)
  376. large.Font = Enum.Font.Cartoon
  377. large.Text = "Larger Estate"
  378. large.TextColor3 = Color3.new(0, 0, 0)
  379. large.TextSize = 20
  380. large.MouseButton1Click:connect(function()
  381.         game.ReplicatedStorage.Connection:InvokeServer(45, 185)
  382. end)
  383.  
  384. small.Name = "small"
  385. small.Parent = Frame
  386. small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  387. small.BorderSizePixel = 0
  388. small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
  389. small.Size = UDim2.new(0, 200, 0, 50)
  390. small.Font = Enum.Font.Cartoon
  391. small.Text = "Small Estate"
  392. small.TextColor3 = Color3.new(0, 0, 0)
  393. small.TextSize = 20
  394. small.MouseButton1Click:connect(function()
  395.         game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  396. end)
  397.  
  398. reg.Name = "reg"
  399. reg.Parent = Frame
  400. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  401. reg.BorderSizePixel = 0
  402. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  403. reg.Size = UDim2.new(0, 407, 0, 50)
  404. reg.Font = Enum.Font.Cartoon
  405. reg.Text = "Regular Estate"
  406. reg.TextColor3 = Color3.new(0, 0, 0)
  407. reg.TextSize = 20
  408. reg.MouseButton1Click:connect(function()
  409.         game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  410. end)
  411.  
  412. TextLabel_3.Parent = Frame
  413. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  414. TextLabel_3.BorderSizePixel = 0
  415. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  416. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  417. TextLabel_3.Font = Enum.Font.Code
  418. TextLabel_3.Text = "More Functions Soon <3 "
  419. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  420. TextLabel_3.TextSize = 20
  421.  
  422. -- Scripts
  423. small.MouseButton1Click:connect(function()
  424.         game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  425. end)
  426.  
  427. reg.Name = "reg"
  428. reg.Parent = Frame
  429. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  430. reg.BorderSizePixel = 0
  431. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  432. reg.Size = UDim2.new(0, 407, 0, 50)
  433. reg.Font = Enum.Font.Cartoon
  434. reg.Text = "Regular Estate"
  435. reg.TextColor3 = Color3.new(0, 0, 0)
  436. reg.TextSize = 20
  437. reg.MouseButton1Click:connect(function()
  438.         game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  439. end)
  440.  
  441. TextLabel_3.Parent = Frame
  442. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  443. TextLabel_3.BorderSizePixel = 0
  444. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  445. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  446. TextLabel_3.Font = Enum.Font.Code
  447. TextLabel_3.Text = "More Functions Soon <3 "
  448. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  449. TextLabel_3.TextSize = 20
  450.  
  451. -- Scripts
  452.