Advertisement
zachchan

Meep City Plus Script

Feb 4th, 2021
1,850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --  Michigun GUI Meepcity
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local Plus = Instance.new("TextButton")
  7. local Boombox = Instance.new("TextButton")
  8. local Farm = Instance.new("TextButton")
  9. local tp = Instance.new("TextButton")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11. local trailer = Instance.new("TextButton")
  12. local Party = Instance.new("TextButton")
  13. local large = Instance.new("TextButton")
  14. local small = Instance.new("TextButton")
  15. local reg = Instance.new("TextButton")
  16. local TextLabel_3 = Instance.new("TextLabel")
  17.  
  18. -- yee
  19.  
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. Frame.Parent           = ScreenGui
  23. Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
  24. Frame.BorderSizePixel  = 0
  25. Frame.Position         = UDim2.new(0.0736468509, 0, 0.4413203, 0)
  26. Frame.Size             = UDim2.new(0, 694, 0, 318)
  27. Frame.Active           = true
  28. Frame.Draggable        = true
  29.  
  30.  
  31. TextLabel.Parent = Frame
  32. TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  33. TextLabel.BorderSizePixel = 0
  34. TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
  35. TextLabel.Size = UDim2.new(0, 694, 0, 50)
  36. TextLabel.Font = Enum.Font.Highway
  37. TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
  38. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  39. TextLabel.TextSize = 20
  40.  
  41. Plus.Name = "Plus"
  42. Plus.Parent = Frame
  43. Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  44. Plus.BorderSizePixel = 0
  45. Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
  46. Plus.Size = UDim2.new(0, 200, 0, 50)
  47. Plus.Font = Enum.Font.Cartoon
  48. Plus.Text = "Become a Plus Member"
  49. Plus.TextColor3 = Color3.new(0, 0, 0)
  50. Plus.TextSize = 20
  51. Plus.MouseButton1Click:connect(function()
  52.     game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  53. end)
  54.  
  55. Boombox.Name = "Boombox"
  56. Boombox.Parent = Frame
  57. Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  58. Boombox.BorderSizePixel = 0
  59. Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
  60. Boombox.Size = UDim2.new(0, 200, 0, 50)
  61. Boombox.Font = Enum.Font.Cartoon
  62. Boombox.Text = "Get the Boombox"
  63. Boombox.TextColor3 = Color3.new(0, 0, 0)
  64. Boombox.TextSize = 20
  65. Boombox.MouseButton1Click:connect(function()
  66.     game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
  67. end)
  68.  
  69. Farm.Name = "Farm"
  70. Farm.Parent = Frame
  71. Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  72. Farm.BorderSizePixel = 0
  73. Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
  74. Farm.Size = UDim2.new(0, 200, 0, 50)
  75. Farm.Font = Enum.Font.Cartoon
  76. Farm.Text = "Lake Money Farm 2.0"
  77. Farm.TextColor3 = Color3.new(0, 0, 0)
  78. Farm.TextSize = 20
  79. Farm.MouseButton1Click:connect(function()
  80.         game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
  81. game.ReplicatedStorage.Connection:InvokeServer(50)
  82. game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
  83. while wait() do
  84. game.ReplicatedStorage.Connection:InvokeServer(49)
  85. game.ReplicatedStorage.Connection:InvokeServer(51)
  86. end
  87. end)
  88.  
  89. tp.Name = "tp"
  90. tp.Parent = Frame
  91. tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  92. tp.BorderSizePixel = 0
  93. tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
  94. tp.Size = UDim2.new(0, 200, 0, 50)
  95. tp.Font = Enum.Font.Cartoon
  96. tp.Text = "CTRL + Click TP"
  97. tp.TextColor3 = Color3.new(0, 0, 0)
  98. tp.TextSize = 20
  99. tp.MouseButton1Click:connect(function()
  100.     local Player = game.Players.LocalPlayer
  101. local Mouse = Player:GetMouse()
  102. local UserInputService = game:GetService('UserInputService')
  103.  
  104. local HoldingControl = false
  105.  
  106. Mouse.Button1Down:connect(function()
  107. if HoldingControl then
  108. Player.Character:MoveTo(Mouse.Hit.p)
  109. end
  110. end)
  111.  
  112. UserInputService.InputBegan:connect(function(Input, Processed)
  113. if Input.UserInputType == Enum.UserInputType.Keyboard then
  114. if Input.KeyCode == Enum.KeyCode.LeftControl then
  115. HoldingControl = true
  116. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  117. HoldingControl = true
  118. end
  119. end
  120. end)
  121.  
  122. UserInputService.InputEnded:connect(function(Input, Processed)
  123. if Input.UserInputType == Enum.UserInputType.Keyboard then
  124. if Input.KeyCode == Enum.KeyCode.LeftControl then
  125. HoldingControl = false
  126. elseif Input.KeyCode == Enum.KeyCode.RightControl then
  127. HoldingControl = false
  128. end
  129. end
  130. end)
  131. end)
  132.  
  133. TextLabel_2.Parent = Frame
  134. TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  135. TextLabel_2.BorderSizePixel = 0
  136. TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
  137. TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
  138. TextLabel_2.Font = Enum.Font.Code
  139. TextLabel_2.Text = ""
  140. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  141. TextLabel_2.TextSize = 20
  142.  
  143. trailer.Name = "trailer"
  144. trailer.Parent = Frame
  145. trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  146. trailer.BorderSizePixel = 0
  147. trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
  148. trailer.Size = UDim2.new(0, 200, 0, 50)
  149. trailer.Font = Enum.Font.Cartoon
  150. trailer.Text = "Trailer Estate"
  151. trailer.TextColor3 = Color3.new(0, 0, 0)
  152. trailer.TextSize = 20
  153. trailer.MouseButton1Click:connect(function()
  154.     game.ReplicatedStorage.Connection:InvokeServer(45, 482)
  155.     end)
  156.  
  157. Party.Name = "Party"
  158. Party.Parent = Frame
  159. Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  160. Party.BorderSizePixel = 0
  161. Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
  162. Party.Size = UDim2.new(0, 200, 0, 50)
  163. Party.Font = Enum.Font.Cartoon
  164. Party.Text = "Party Estate"
  165. Party.TextColor3 = Color3.new(0, 0, 0)
  166. Party.TextSize = 20
  167. Party.MouseButton1Click:connect(function()
  168.     game.ReplicatedStorage.Connection:InvokeServer(45, 369)
  169. end)
  170.  
  171. large.Name = "large"
  172. large.Parent = Frame
  173. large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  174. large.BorderSizePixel = 0
  175. large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
  176. large.Size = UDim2.new(0, 200, 0, 50)
  177. large.Font = Enum.Font.Cartoon
  178. large.Text = "Larger Estate"
  179. large.TextColor3 = Color3.new(0, 0, 0)
  180. large.TextSize = 20
  181. large.MouseButton1Click:connect(function()
  182.     game.ReplicatedStorage.Connection:InvokeServer(45, 185)
  183. end)
  184.  
  185. small.Name = "small"
  186. small.Parent = Frame
  187. small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  188. small.BorderSizePixel = 0
  189. small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
  190. small.Size = UDim2.new(0, 200, 0, 50)
  191. small.Font = Enum.Font.Cartoon
  192. small.Text = "Small Estate"
  193. small.TextColor3 = Color3.new(0, 0, 0)
  194. small.TextSize = 20
  195. small.MouseButton1Click:connect(function()
  196.     game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  197. end)
  198.  
  199. reg.Name = "reg"
  200. reg.Parent = Frame
  201. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  202. reg.BorderSizePixel = 0
  203. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  204. reg.Size = UDim2.new(0, 407, 0, 50)
  205. reg.Font = Enum.Font.Cartoon
  206. reg.Text = "Regular Estate"
  207. reg.TextColor3 = Color3.new(0, 0, 0)
  208. reg.TextSize = 20
  209. reg.MouseButton1Click:connect(function()
  210.     game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  211. end)
  212.  
  213. TextLabel_3.Parent = Frame
  214. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  215. TextLabel_3.BorderSizePixel = 0
  216. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  217. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  218. TextLabel_3.Font = Enum.Font.Code
  219. TextLabel_3.Text = "More Functions Soon <3 "
  220. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  221. TextLabel_3.TextSize = 20
  222.  
  223. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement