Facebook
From Lousy Monkey, 2 Years ago, written in Plain Text.
This paste is a reply to meep city from Free Hacks Daily - view diff
Embed
Download Paste or View Raw
Hits: 243
  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
  198. small.MouseButton1Click:connect(function()
  199.         game.ReplicatedStorage.Connection:InvokeServer(45, 134)
  200. end)
  201.  
  202. reg.Name = "reg"
  203. reg.Parent = Frame
  204. reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  205. reg.BorderSizePixel = 0
  206. reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
  207. reg.Size = UDim2.new(0, 407, 0, 50)
  208. reg.Font = Enum.Font.Cartoon
  209. reg.Text = "Regular Estate"
  210. reg.TextColor3 = Color3.new(0, 0, 0)
  211. reg.TextSize = 20
  212. reg.MouseButton1Click:connect(function()
  213.         game.ReplicatedStorage.Connection:InvokeServer(45, 119)
  214. end)
  215.  
  216. TextLabel_3.Parent = Frame
  217. TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
  218. TextLabel_3.BorderSizePixel = 0
  219. TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
  220. TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
  221. TextLabel_3.Font = Enum.Font.Code
  222. TextLabel_3.Text = "More Functions Soon <3 "
  223. TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
  224. TextLabel_3.TextSize = 20
  225.  
  226. -- Scripts
  227.  

Replies to Re: meep city rss

Title Name Language When
Re: Re: meep city Bulky Penguin text 2 Years ago.