SyntaxIsHere

Untitled

Jun 29th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.12 KB | None | 0 0
  1. --MEEPCITY FUCKER BY RENNI/REN
  2.  
  3. -- GUI
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Plus = Instance.new("TextButton")
  9. local Boombox = Instance.new("TextButton")
  10. local Farm = Instance.new("TextButton")
  11. local tp = Instance.new("TextButton")
  12. local TextLabel_2 = Instance.new("TextLabel")
  13. local trailer = Instance.new("TextButton")
  14. local Party = Instance.new("TextButton")
  15. local large = Instance.new("TextButton")
  16. local small = Instance.new("TextButton")
  17. local reg = Instance.new("TextButton")
  18. local TextLabel_3 = Instance.new("TextLabel")
  19.  
  20. -- yee
  21.  
  22. ScreenGui.Parent = game.CoreGui
  23.  
  24. Frame.Parent = ScreenGui
  25. Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  26. Frame.BorderSizePixel = 0
  27. Frame.Position = UDim2.new(0.0736468509, 0, 0.4413203, 0)
  28. Frame.Size = UDim2.new(0, 694, 0, 318)
  29. Frame.Active = true
  30. Frame.Draggable = true
  31.  
  32.  
  33. TextLabel.Parent = Frame
  34. TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  35. TextLabel.BorderSizePixel = 0
  36. TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
  37. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  38. TextLabel.Font = Enum.Font.Highway
  39. TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
  40. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  41. TextLabel.TextSize = 20
  42.  
  43. Plus.Name = "Plus"
  44. Plus.Parent = Frame
  45. Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  46. Plus.BorderSizePixel = 0
  47. Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
  48. Plus.Size = UDim2.new(0, 200, 0, 50)
  49. Plus.Font = Enum.Font.Cartoon
  50. Plus.Text = "Become a Plus Member"
  51. Plus.TextColor3 = Color3.new(0, 0, 0)
  52. Plus.TextSize = 20
  53. Plus.MouseButton1Click:connect(function()
  54. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  55. end)
  56.  
  57. Boombox.Name = "Boombox"
  58. Boombox.Parent = Frame
  59. Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  60. Boombox.BorderSizePixel = 0
  61. Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
  62. Boombox.Size = UDim2.new(0, 200, 0, 50)
  63. Boombox.Font = Enum.Font.Cartoon
  64. Boombox.Text = "Get the Boombox"
  65. Boombox.TextColor3 = Color3.new(0, 0, 0)
  66. Boombox.TextSize = 20
  67. Boombox.MouseButton1Click:connect(function()
  68. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
  69. end)
  70.  
  71. Farm.Name = "Farm"
  72. Farm.Parent = Frame
  73. Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  74. Farm.BorderSizePixel = 0
  75. Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
  76. Farm.Size = UDim2.new(0, 200, 0, 50)
  77. Farm.Font = Enum.Font.Cartoon
  78. Farm.Text = "Lake Money Farm 2.0"
  79. Farm.TextColor3 = Color3.new(0, 0, 0)
  80. Farm.TextSize = 20
  81. Farm.MouseButton1Click:connect(function()
  82. game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  83. game.ReplicatedStorage.Connection:InvokeServer(50)
  84. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  85. while wait() do
  86. game.ReplicatedStorage.Connection:InvokeServer(49)
  87. game.ReplicatedStorage.Connection:InvokeServer(51)
  88. end
  89. end)
  90.  
  91. tp.Name = "tp"
  92. tp.Parent = Frame
  93. tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  94. tp.BorderSizePixel = 0
  95. tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
  96. tp.Size = UDim2.new(0, 200, 0, 50)
  97. tp.Font = Enum.Font.Cartoon
  98. tp.Text = "CTRL + Click TP"
  99. tp.TextColor3 = Color3.new(0, 0, 0)
  100. tp.TextSize = 20
  101. tp.MouseButton1Click:connect(function()
  102. local Player = game.Players.LocalPlayer
  103. local Mouse = Player:GetMouse()
  104. local UserInputService = game:GetService('UserInputService')
  105.  
  106. local HoldingControl = false
  107.  
  108. Mouse.Button1Down:connect(function()
  109. if HoldingControl then
  110. Player.Character:MoveTo(Mouse.Hit.p)
  111. end
  112. end)
  113.  
  114. UserInputService.InputBegan:connect(function(Input, Processed)
  115. if Input.UserInputType == Enum.UserInputType.Keyboard then
  116. if Input.KeyCode == Enum.KeyCode.LeftControl then
  117. HoldingControl = true
  118. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  119. HoldingControl = true
  120. end
  121. end
  122. end)
  123.  
  124. UserInputService.InputEnded:connect(function(Input, Processed)
  125. if Input.UserInputType == Enum.UserInputType.Keyboard then
  126. if Input.KeyCode == Enum.KeyCode.LeftControl then
  127. HoldingControl = false
  128. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  129. HoldingControl = false
  130. end
  131. end
  132. end)
  133. end)
  134.  
  135. TextLabel_2.Parent = Frame
  136. TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  137. TextLabel_2.BorderSizePixel = 0
  138. TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
  139. TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
  140. TextLabel_2.Font = Enum.Font.Code
  141. TextLabel_2.Text = ""
  142. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  143. TextLabel_2.TextSize = 20
  144.  
  145. trailer.Name = "trailer"
  146. trailer.Parent = Frame
  147. trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  148. trailer.BorderSizePixel = 0
  149. trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
  150. trailer.Size = UDim2.new(0, 200, 0, 50)
  151. trailer.Font = Enum.Font.Cartoon
  152. trailer.Text = "Trailer Estate"
  153. trailer.TextColor3 = Color3.new(0, 0, 0)
  154. trailer.TextSize = 20
  155. trailer.MouseButton1Click:connect(function()
  156. game.ReplicatedStorage.Connection:InvokeServer(45, 482)
  157. end)
  158.  
  159. Party.Name = "Party"
  160. Party.Parent = Frame
  161. Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  162. Party.BorderSizePixel = 0
  163. Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
  164. Party.Size = UDim2.new(0, 200, 0, 50)
  165. Party.Font = Enum.Font.Cartoon
  166. Party.Text = "Party Estate"
  167. Party.TextColor3 = Color3.new(0, 0, 0)
  168. Party.TextSize = 20
  169. Party.MouseButton1Click:connect(function()
  170. game.ReplicatedStorage.Connection:InvokeServer(45, 369)
  171. end)
  172.  
  173. large.Name = "large"
  174. large.Parent = Frame
  175. large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  176. large.BorderSizePixel = 0
  177. large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
  178. large.Size = UDim2.new(0, 200, 0, 50)
  179. large.Font = Enum.Font.Cartoon
  180. large.Text = "Larger Estate"
  181. large.TextColor3 = Color3.new(0, 0, 0)
  182. large.TextSize = 20
  183. large.MouseButton1Click:connect(function()
  184. game.ReplicatedStorage.Connection:InvokeServer(45, 185)
  185. end)
  186.  
  187. small.Name = "small"
  188. small.Parent = Frame
  189. small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  190. small.BorderSizePixel = 0
  191. small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
  192. small.Size = UDim2.new(0, 200, 0, 50)
  193. small.Font = Enum.Font.Cartoon
  194. small.Text = "Small Estate"
  195. small.TextColor3 = Color3.new(0, 0, 0)
  196. small.TextSize = 20
  197. small.MouseButton1Click:connect(function()
  198. game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  199. end)
  200.  
  201. reg.Name = "reg"
  202. reg.Parent = Frame
  203. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  204. reg.BorderSizePixel = 0
  205. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  206. reg.Size = UDim2.new(0, 407, 0, 50)
  207. reg.Font = Enum.Font.Cartoon
  208. reg.Text = "Regular Estate"
  209. reg.TextColor3 = Color3.new(0, 0, 0)
  210. reg.TextSize = 20
  211. reg.MouseButton1Click:connect(function()
  212. game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  213. end)
  214.  
  215. TextLabel_3.Parent = Frame
  216. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  217. TextLabel_3.BorderSizePixel = 0
  218. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  219. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  220. TextLabel_3.Font = Enum.Font.Code
  221. TextLabel_3.Text = "More Functions Soon <3 "
  222. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  223. TextLabel_3.TextSize = 20
  224.  
  225. -- Scripts--MEEPCITY FUCKER BY RENNI/REN
  226.  
  227. -- GUI
  228.  
  229. local ScreenGui = Instance.new("ScreenGui")
  230. local Frame = Instance.new("Frame")
  231. local TextLabel = Instance.new("TextLabel")
  232. local Plus = Instance.new("TextButton")
  233. local Boombox = Instance.new("TextButton")
  234. local Farm = Instance.new("TextButton")
  235. local tp = Instance.new("TextButton")
  236. local TextLabel_2 = Instance.new("TextLabel")
  237. local trailer = Instance.new("TextButton")
  238. local Party = Instance.new("TextButton")
  239. local large = Instance.new("TextButton")
  240. local small = Instance.new("TextButton")
  241. local reg = Instance.new("TextButton")
  242. local TextLabel_3 = Instance.new("TextLabel")
  243.  
  244. -- yee
  245.  
  246. ScreenGui.Parent = game.CoreGui
  247.  
  248. Frame.Parent = ScreenGui
  249. Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  250. Frame.BorderSizePixel = 0
  251. Frame.Position = UDim2.new(0.0736468509, 0, 0.4413203, 0)
  252. Frame.Size = UDim2.new(0, 694, 0, 318)
  253. Frame.Active = true
  254. Frame.Draggable = true
  255.  
  256.  
  257. TextLabel.Parent = Frame
  258. TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  259. TextLabel.BorderSizePixel = 0
  260. TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
  261. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  262. TextLabel.Font = Enum.Font.Highway
  263. TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
  264. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  265. TextLabel.TextSize = 20
  266.  
  267. Plus.Name = "Plus"
  268. Plus.Parent = Frame
  269. Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  270. Plus.BorderSizePixel = 0
  271. Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
  272. Plus.Size = UDim2.new(0, 200, 0, 50)
  273. Plus.Font = Enum.Font.Cartoon
  274. Plus.Text = "Become a Plus Member"
  275. Plus.TextColor3 = Color3.new(0, 0, 0)
  276. Plus.TextSize = 20
  277. Plus.MouseButton1Click:connect(function()
  278. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  279. end)
  280.  
  281. Boombox.Name = "Boombox"
  282. Boombox.Parent = Frame
  283. Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  284. Boombox.BorderSizePixel = 0
  285. Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
  286. Boombox.Size = UDim2.new(0, 200, 0, 50)
  287. Boombox.Font = Enum.Font.Cartoon
  288. Boombox.Text = "Get the Boombox"
  289. Boombox.TextColor3 = Color3.new(0, 0, 0)
  290. Boombox.TextSize = 20
  291. Boombox.MouseButton1Click:connect(function()
  292. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
  293. end)
  294.  
  295. Farm.Name = "Farm"
  296. Farm.Parent = Frame
  297. Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  298. Farm.BorderSizePixel = 0
  299. Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
  300. Farm.Size = UDim2.new(0, 200, 0, 50)
  301. Farm.Font = Enum.Font.Cartoon
  302. Farm.Text = "Lake Money Farm 2.0"
  303. Farm.TextColor3 = Color3.new(0, 0, 0)
  304. Farm.TextSize = 20
  305. Farm.MouseButton1Click:connect(function()
  306. game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  307. game.ReplicatedStorage.Connection:InvokeServer(50)
  308. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  309. while wait() do
  310. game.ReplicatedStorage.Connection:InvokeServer(49)
  311. game.ReplicatedStorage.Connection:InvokeServer(51)
  312. end
  313. end)
  314.  
  315. tp.Name = "tp"
  316. tp.Parent = Frame
  317. tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  318. tp.BorderSizePixel = 0
  319. tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
  320. tp.Size = UDim2.new(0, 200, 0, 50)
  321. tp.Font = Enum.Font.Cartoon
  322. tp.Text = "CTRL + Click TP"
  323. tp.TextColor3 = Color3.new(0, 0, 0)
  324. tp.TextSize = 20
  325. tp.MouseButton1Click:connect(function()
  326. local Player = game.Players.LocalPlayer
  327. local Mouse = Player:GetMouse()
  328. local UserInputService = game:GetService('UserInputService')
  329.  
  330. local HoldingControl = false
  331.  
  332. Mouse.Button1Down:connect(function()
  333. if HoldingControl then
  334. Player.Character:MoveTo(Mouse.Hit.p)
  335. end
  336. end)
  337.  
  338. UserInputService.InputBegan:connect(function(Input, Processed)
  339. if Input.UserInputType == Enum.UserInputType.Keyboard then
  340. if Input.KeyCode == Enum.KeyCode.LeftControl then
  341. HoldingControl = true
  342. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  343. HoldingControl = true
  344. end
  345. end
  346. end)
  347.  
  348. UserInputService.InputEnded:connect(function(Input, Processed)
  349. if Input.UserInputType == Enum.UserInputType.Keyboard then
  350. if Input.KeyCode == Enum.KeyCode.LeftControl then
  351. HoldingControl = false
  352. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  353. HoldingControl = false
  354. end
  355. end
  356. end)
  357. end)
  358.  
  359. TextLabel_2.Parent = Frame
  360. TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  361. TextLabel_2.BorderSizePixel = 0
  362. TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
  363. TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
  364. TextLabel_2.Font = Enum.Font.Code
  365. TextLabel_2.Text = ""
  366. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  367. TextLabel_2.TextSize = 20
  368.  
  369. trailer.Name = "trailer"
  370. trailer.Parent = Frame
  371. trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  372. trailer.BorderSizePixel = 0
  373. trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
  374. trailer.Size = UDim2.new(0, 200, 0, 50)
  375. trailer.Font = Enum.Font.Cartoon
  376. trailer.Text = "Trailer Estate"
  377. trailer.TextColor3 = Color3.new(0, 0, 0)
  378. trailer.TextSize = 20
  379. trailer.MouseButton1Click:connect(function()
  380. game.ReplicatedStorage.Connection:InvokeServer(45, 482)
  381. end)
  382.  
  383. Party.Name = "Party"
  384. Party.Parent = Frame
  385. Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  386. Party.BorderSizePixel = 0
  387. Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
  388. Party.Size = UDim2.new(0, 200, 0, 50)
  389. Party.Font = Enum.Font.Cartoon
  390. Party.Text = "Party Estate"
  391. Party.TextColor3 = Color3.new(0, 0, 0)
  392. Party.TextSize = 20
  393. Party.MouseButton1Click:connect(function()
  394. game.ReplicatedStorage.Connection:InvokeServer(45, 369)
  395. end)
  396.  
  397. large.Name = "large"
  398. large.Parent = Frame
  399. large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  400. large.BorderSizePixel = 0
  401. large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
  402. large.Size = UDim2.new(0, 200, 0, 50)
  403. large.Font = Enum.Font.Cartoon
  404. large.Text = "Larger Estate"
  405. large.TextColor3 = Color3.new(0, 0, 0)
  406. large.TextSize = 20
  407. large.MouseButton1Click:connect(function()
  408. game.ReplicatedStorage.Connection:InvokeServer(45, 185)
  409. end)
  410.  
  411. small.Name = "small"
  412. small.Parent = Frame
  413. small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  414. small.BorderSizePixel = 0
  415. small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
  416. small.Size = UDim2.new(0, 200, 0, 50)
  417. small.Font = Enum.Font.Cartoon
  418. small.Text = "Small Estate"
  419. small.TextColor3 = Color3.new(0, 0, 0)
  420. small.TextSize = 20
  421. small.MouseButton1Click:connect(function()
  422. game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  423. end)
  424.  
  425. reg.Name = "reg"
  426. reg.Parent = Frame
  427. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  428. reg.BorderSizePixel = 0
  429. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  430. reg.Size = UDim2.new(0, 407, 0, 50)
  431. reg.Font = Enum.Font.Cartoon
  432. reg.Text = "Regular Estate"
  433. reg.TextColor3 = Color3.new(0, 0, 0)
  434. reg.TextSize = 20
  435. reg.MouseButton1Click:connect(function()
  436. game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  437. end)
  438.  
  439. TextLabel_3.Parent = Frame
  440. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  441. TextLabel_3.BorderSizePixel = 0
  442. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  443. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  444. TextLabel_3.Font = Enum.Font.Code
  445. TextLabel_3.Text = "More Functions Soon <3 "
  446. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  447. TextLabel_3.TextSize = 20
  448.  
  449. -- Scripts--MEEPCITY FUCKER BY RENNI/REN
  450.  
  451. -- GUI
  452.  
  453. local ScreenGui = Instance.new("ScreenGui")
  454. local Frame = Instance.new("Frame")
  455. local TextLabel = Instance.new("TextLabel")
  456. local Plus = Instance.new("TextButton")
  457. local Boombox = Instance.new("TextButton")
  458. local Farm = Instance.new("TextButton")
  459. local tp = Instance.new("TextButton")
  460. local TextLabel_2 = Instance.new("TextLabel")
  461. local trailer = Instance.new("TextButton")
  462. local Party = Instance.new("TextButton")
  463. local large = Instance.new("TextButton")
  464. local small = Instance.new("TextButton")
  465. local reg = Instance.new("TextButton")
  466. local TextLabel_3 = Instance.new("TextLabel")
  467.  
  468. -- yee
  469.  
  470. ScreenGui.Parent = game.CoreGui
  471.  
  472. Frame.Parent = ScreenGui
  473. Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  474. Frame.BorderSizePixel = 0
  475. Frame.Position = UDim2.new(0.0736468509, 0, 0.4413203, 0)
  476. Frame.Size = UDim2.new(0, 694, 0, 318)
  477. Frame.Active = true
  478. Frame.Draggable = true
  479.  
  480.  
  481. TextLabel.Parent = Frame
  482. TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  483. TextLabel.BorderSizePixel = 0
  484. TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
  485. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  486. TextLabel.Font = Enum.Font.Highway
  487. TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
  488. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  489. TextLabel.TextSize = 20
  490.  
  491. Plus.Name = "Plus"
  492. Plus.Parent = Frame
  493. Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  494. Plus.BorderSizePixel = 0
  495. Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
  496. Plus.Size = UDim2.new(0, 200, 0, 50)
  497. Plus.Font = Enum.Font.Cartoon
  498. Plus.Text = "Become a Plus Member"
  499. Plus.TextColor3 = Color3.new(0, 0, 0)
  500. Plus.TextSize = 20
  501. Plus.MouseButton1Click:connect(function()
  502. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  503. end)
  504.  
  505. Boombox.Name = "Boombox"
  506. Boombox.Parent = Frame
  507. Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  508. Boombox.BorderSizePixel = 0
  509. Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
  510. Boombox.Size = UDim2.new(0, 200, 0, 50)
  511. Boombox.Font = Enum.Font.Cartoon
  512. Boombox.Text = "Get the Boombox"
  513. Boombox.TextColor3 = Color3.new(0, 0, 0)
  514. Boombox.TextSize = 20
  515. Boombox.MouseButton1Click:connect(function()
  516. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
  517. end)
  518.  
  519. Farm.Name = "Farm"
  520. Farm.Parent = Frame
  521. Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  522. Farm.BorderSizePixel = 0
  523. Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
  524. Farm.Size = UDim2.new(0, 200, 0, 50)
  525. Farm.Font = Enum.Font.Cartoon
  526. Farm.Text = "Lake Money Farm 2.0"
  527. Farm.TextColor3 = Color3.new(0, 0, 0)
  528. Farm.TextSize = 20
  529. Farm.MouseButton1Click:connect(function()
  530. game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  531. game.ReplicatedStorage.Connection:InvokeServer(50)
  532. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  533. while wait() do
  534. game.ReplicatedStorage.Connection:InvokeServer(49)
  535. game.ReplicatedStorage.Connection:InvokeServer(51)
  536. end
  537. end)
  538.  
  539. tp.Name = "tp"
  540. tp.Parent = Frame
  541. tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  542. tp.BorderSizePixel = 0
  543. tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
  544. tp.Size = UDim2.new(0, 200, 0, 50)
  545. tp.Font = Enum.Font.Cartoon
  546. tp.Text = "CTRL + Click TP"
  547. tp.TextColor3 = Color3.new(0, 0, 0)
  548. tp.TextSize = 20
  549. tp.MouseButton1Click:connect(function()
  550. local Player = game.Players.LocalPlayer
  551. local Mouse = Player:GetMouse()
  552. local UserInputService = game:GetService('UserInputService')
  553.  
  554. local HoldingControl = false
  555.  
  556. Mouse.Button1Down:connect(function()
  557. if HoldingControl then
  558. Player.Character:MoveTo(Mouse.Hit.p)
  559. end
  560. end)
  561.  
  562. UserInputService.InputBegan:connect(function(Input, Processed)
  563. if Input.UserInputType == Enum.UserInputType.Keyboard then
  564. if Input.KeyCode == Enum.KeyCode.LeftControl then
  565. HoldingControl = true
  566. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  567. HoldingControl = true
  568. end
  569. end
  570. end)
  571.  
  572. UserInputService.InputEnded:connect(function(Input, Processed)
  573. if Input.UserInputType == Enum.UserInputType.Keyboard then
  574. if Input.KeyCode == Enum.KeyCode.LeftControl then
  575. HoldingControl = false
  576. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  577. HoldingControl = false
  578. end
  579. end
  580. end)
  581. end)
  582.  
  583. TextLabel_2.Parent = Frame
  584. TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  585. TextLabel_2.BorderSizePixel = 0
  586. TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
  587. TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
  588. TextLabel_2.Font = Enum.Font.Code
  589. TextLabel_2.Text = ""
  590. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  591. TextLabel_2.TextSize = 20
  592.  
  593. trailer.Name = "trailer"
  594. trailer.Parent = Frame
  595. trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  596. trailer.BorderSizePixel = 0
  597. trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
  598. trailer.Size = UDim2.new(0, 200, 0, 50)
  599. trailer.Font = Enum.Font.Cartoon
  600. trailer.Text = "Trailer Estate"
  601. trailer.TextColor3 = Color3.new(0, 0, 0)
  602. trailer.TextSize = 20
  603. trailer.MouseButton1Click:connect(function()
  604. game.ReplicatedStorage.Connection:InvokeServer(45, 482)
  605. end)
  606.  
  607. Party.Name = "Party"
  608. Party.Parent = Frame
  609. Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  610. Party.BorderSizePixel = 0
  611. Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
  612. Party.Size = UDim2.new(0, 200, 0, 50)
  613. Party.Font = Enum.Font.Cartoon
  614. Party.Text = "Party Estate"
  615. Party.TextColor3 = Color3.new(0, 0, 0)
  616. Party.TextSize = 20
  617. Party.MouseButton1Click:connect(function()
  618. game.ReplicatedStorage.Connection:InvokeServer(45, 369)
  619. end)
  620.  
  621. large.Name = "large"
  622. large.Parent = Frame
  623. large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  624. large.BorderSizePixel = 0
  625. large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
  626. large.Size = UDim2.new(0, 200, 0, 50)
  627. large.Font = Enum.Font.Cartoon
  628. large.Text = "Larger Estate"
  629. large.TextColor3 = Color3.new(0, 0, 0)
  630. large.TextSize = 20
  631. large.MouseButton1Click:connect(function()
  632. game.ReplicatedStorage.Connection:InvokeServer(45, 185)
  633. end)
  634.  
  635. small.Name = "small"
  636. small.Parent = Frame
  637. small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  638. small.BorderSizePixel = 0
  639. small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
  640. small.Size = UDim2.new(0, 200, 0, 50)
  641. small.Font = Enum.Font.Cartoon
  642. small.Text = "Small Estate"
  643. small.TextColor3 = Color3.new(0, 0, 0)
  644. small.TextSize = 20
  645. small.MouseButton1Click:connect(function()
  646. game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  647. end)
  648.  
  649. reg.Name = "reg"
  650. reg.Parent = Frame
  651. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  652. reg.BorderSizePixel = 0
  653. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  654. reg.Size = UDim2.new(0, 407, 0, 50)
  655. reg.Font = Enum.Font.Cartoon
  656. reg.Text = "Regular Estate"
  657. reg.TextColor3 = Color3.new(0, 0, 0)
  658. reg.TextSize = 20
  659. reg.MouseButton1Click:connect(function()
  660. game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  661. end)
  662.  
  663. TextLabel_3.Parent = Frame
  664. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  665. TextLabel_3.BorderSizePixel = 0
  666. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  667. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  668. TextLabel_3.Font = Enum.Font.Code
  669. TextLabel_3.Text = "More Functions Soon <3 "
  670. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  671. TextLabel_3.TextSize = 20
  672.  
  673. -- Scripts
Add Comment
Please, Sign In to add comment