TheNadie

Untitled

Jan 5th, 2019
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.80 KB | None | 0 0
  1. script.Name = 'MeepCity GUI - Script'
  2.  
  3. local Jogador = game:GetService('Players').LocalPlayer
  4. local ReplicatedStorage = game:GetService('ReplicatedStorage')
  5. local CoreGui = game:GetService('CoreGui')
  6.  
  7. local Tempo = false
  8.  
  9. _G.BoomBox = _G.BoomBox or false
  10. _G.CandyPack = _G.CandyPack or false
  11. _G.PLUS = _G.PLUS or false
  12.  
  13. if CoreGui:FindFirstChild('MeepCity GUI') then
  14. CoreGui['MeepCity GUI']['Functions']['Custom Boom Box']:Destroy()
  15. CoreGui['MeepCity GUI']['Functions']['Candy Pack - Furniture']:Destroy()
  16. CoreGui['MeepCity GUI']['Functions']['PLUS']:Destroy()
  17. CoreGui['MeepCity GUI']['Functions']['Auto Farm Money']:Destroy()
  18. CoreGui['MeepCity GUI']['Functions']['Help']:Destroy()
  19. CoreGui['MeepCity GUI']['Functions']['Minimize']:Destroy()
  20. CoreGui['MeepCity GUI']['Functions']['Close']:Destroy()
  21. CoreGui['MeepCity GUI']['Functions']['Title']:Destroy()
  22. CoreGui['MeepCity GUI']['Functions']:TweenSize(UDim2.new(0, 230, 0, 0), 'Out', 'Quad', .5)
  23. wait(.5)
  24. CoreGui['MeepCity GUI']:Destroy()
  25. wait()
  26. end
  27.  
  28. local GUI = Instance.new('ScreenGui', CoreGui)
  29. local Functions = Instance.new('Frame', GUI)
  30. local Title = Instance.new('TextLabel', Functions)
  31. local Minimize = Instance.new('TextButton', Functions)
  32. local Close = Instance.new('TextButton', Functions)
  33. local CustomBoomBox = Instance.new('TextButton', Functions)
  34. local CandyPackFurniture = Instance.new('TextButton', Functions)
  35. local PLUS = Instance.new('TextButton', Functions)
  36. local AutoFarmMoney = Instance.new('TextButton', Functions)
  37. local Help = Instance.new('TextLabel', Functions)
  38.  
  39. GUI.Name = 'MeepCity GUI'
  40. GUI.ResetOnSpawn = false
  41.  
  42. Functions.Draggable = true
  43. Functions.Active = true
  44. Functions.BackgroundColor3 = Color3.fromRGB(85, 85, 255)
  45. Functions.BorderSizePixel = 0
  46. Functions.Name = 'Functions'
  47. Functions.Position = UDim2.new(.451, 0, .422, 0)
  48. Functions.Size = UDim2.new(0, 230, 0, 0)
  49. Functions.Visible = false
  50.  
  51. Title.BackgroundTransparency = 1
  52. Title.Name = 'Title'
  53. Title.Position = UDim2.new( - .002, 0, - 0, 0)
  54. Title.Size = UDim2.new(0, 184, 0, 20)
  55. Title.Visible = false
  56. Title.Font = 'Cartoon'
  57. Title.Text = 'MeepCity GUI - By GRIPPERTV'
  58. Title.TextColor3 = Color3.new(1, 1, 1)
  59. Title.TextSize = 14
  60.  
  61. Minimize.BackgroundTransparency = 1
  62. Minimize.Name = 'Minimize'
  63. Minimize.Position = UDim2.new(.824, 0, - 0, 0)
  64. Minimize.Size = UDim2.new(0, 20, 0, 20)
  65. Minimize.Visible = false
  66. Minimize.Font = 'Cartoon'
  67. Minimize.Text = '-'
  68. Minimize.TextColor3 = Color3.new(1, 1, 1)
  69. Minimize.TextSize = 18
  70. Minimize.MouseButton1Click:Connect(function()
  71. if not Tempo then
  72. Tempo = true
  73.  
  74. if Minimize.Text == '-' then
  75. CustomBoomBox.Visible = false
  76.  
  77. CandyPackFurniture.Visible = false
  78.  
  79. PLUS.Visible = false
  80.  
  81. AutoFarmMoney.Visible = false
  82.  
  83. Help.Visible = false
  84.  
  85. Functions:TweenSize(UDim2.new(0, 230, 0, 20), 'Out', 'Quad', .5)
  86. wait(.5)
  87. Minimize.Text = '[ ]'
  88. else
  89. Functions:TweenSize(UDim2.new(0, 230, 0, 230), 'Out', 'Quad', .5)
  90. wait(.5)
  91. CustomBoomBox.Visible = true
  92.  
  93. CandyPackFurniture.Visible = true
  94.  
  95. PLUS.Visible = true
  96.  
  97. AutoFarmMoney.Visible = true
  98.  
  99. Help.Visible = true
  100.  
  101. Minimize.Text = '-'
  102. end
  103.  
  104. Tempo = false
  105. end
  106. end)
  107.  
  108. Close.BackgroundTransparency = 1
  109. Close.Name = 'Close'
  110. Close.Position = UDim2.new(.911, 0, - 0, 0)
  111. Close.Size = UDim2.new(0, 20, 0, 20)
  112. Close.Visible = false
  113. Close.Font = 'Cartoon'
  114. Close.Text = 'X'
  115. Close.TextColor3 = Color3.new(1, 1, 1)
  116. Close.TextSize = 18
  117. Close.MouseButton1Click:Connect(function()
  118. if not Tempo then
  119. Tempo = true
  120.  
  121. CustomBoomBox:Destroy()
  122.  
  123. CandyPackFurniture:Destroy()
  124.  
  125. PLUS:Destroy()
  126.  
  127. AutoFarmMoney:Destroy()
  128.  
  129. Help:Destroy()
  130.  
  131. Minimize:Destroy()
  132.  
  133. Close:Destroy()
  134.  
  135. Title:Destroy()
  136.  
  137. Functions:TweenSize(UDim2.new(0, 230, 0, 0), 'Out', 'Quad', .5)
  138. wait(.5)
  139. GUI:Destroy()
  140.  
  141. Tempo = false
  142. end
  143. end)
  144.  
  145. CustomBoomBox.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  146. CustomBoomBox.BorderSizePixel = 0
  147. CustomBoomBox.Name = 'Custom Boom Box'
  148. CustomBoomBox.Position = UDim2.new(.024, 0, .113, 0)
  149. CustomBoomBox.Size = UDim2.new(0, 217, 0, 20)
  150. CustomBoomBox.Visible = false
  151. CustomBoomBox.Font = 'Cartoon'
  152. CustomBoomBox.Text = 'Custom Boom Box'
  153. CustomBoomBox.TextColor3 = Color3.new(1, 1, 1)
  154. CustomBoomBox.TextSize = 18
  155. CustomBoomBox.MouseButton1Click:Connect(function()
  156. if not Tempo then
  157. Tempo = true
  158.  
  159. if _G.BoomBox then
  160. _G.BoomBox = false
  161. else
  162. _G.BoomBox = true
  163. end
  164.  
  165. Tempo = false
  166. end
  167. end)
  168.  
  169. CandyPackFurniture.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  170. CandyPackFurniture.BorderSizePixel = 0
  171. CandyPackFurniture.Name = 'Candy Pack - Furniture'
  172. CandyPackFurniture.Position = UDim2.new(.024, 0, .113, 25)
  173. CandyPackFurniture.Size = UDim2.new(0, 217, 0, 20)
  174. CandyPackFurniture.Visible = false
  175. CandyPackFurniture.Font = 'Cartoon'
  176. CandyPackFurniture.Text = 'Candy Pack - Furniture'
  177. CandyPackFurniture.TextColor3 = Color3.new(1, 1, 1)
  178. CandyPackFurniture.TextSize = 18
  179. CandyPackFurniture.MouseButton1Click:Connect(function()
  180. if not Tempo then
  181. Tempo = true
  182.  
  183. if _G.CandyPack then
  184. _G.CandyPack = false
  185. else
  186. _G.CandyPack = true
  187. end
  188.  
  189. Tempo = false
  190. end
  191. end)
  192.  
  193. PLUS.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  194. PLUS.BorderSizePixel = 0
  195. PLUS.Name = 'PLUS'
  196. PLUS.Position = UDim2.new(.024, 0, .113, 50)
  197. PLUS.Size = UDim2.new(0, 217, 0, 20)
  198. PLUS.Visible = false
  199. PLUS.Font = 'Cartoon'
  200. PLUS.Text = 'PLUS'
  201. PLUS.TextColor3 = Color3.new(1, 1, 1)
  202. PLUS.TextSize = 18
  203. PLUS.MouseButton1Click:Connect(function()
  204. if not Tempo then
  205. Tempo = true
  206.  
  207. if _G.PLUS then
  208. _G.PLUS = false
  209. else
  210. _G.PLUS = true
  211. end
  212.  
  213. Tempo = false
  214. end
  215. end)
  216.  
  217. AutoFarmMoney.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  218. AutoFarmMoney.BorderSizePixel = 0
  219. AutoFarmMoney.Name = 'Auto Farm Money'
  220. AutoFarmMoney.Position = UDim2.new(.024, 0, .113, 75)
  221. AutoFarmMoney.Size = UDim2.new(0, 217, 0, 20)
  222. AutoFarmMoney.Visible = false
  223. AutoFarmMoney.Font = 'Cartoon'
  224. AutoFarmMoney.Text = 'Auto Farm Money - Help:'
  225. AutoFarmMoney.TextColor3 = Color3.new(1, 1, 1)
  226. AutoFarmMoney.TextSize = 18
  227. AutoFarmMoney.MouseButton1Click:Connect(function()
  228. if not Tempo then
  229. Tempo = true
  230.  
  231. ReplicatedStorage.Connection:InvokeServer(9, 2)
  232. ReplicatedStorage.Connection:InvokeServer(50)
  233.  
  234. AutoFarmMoney.BackgroundColor3 = Color3.fromRGB(40, 40, 255)
  235.  
  236. Tempo = false
  237.  
  238. while wait() do
  239. ReplicatedStorage.Connection:InvokeServer(49)
  240. wait()
  241. ReplicatedStorage.Connection:InvokeServer(49)
  242. wait()
  243. ReplicatedStorage.Connection:InvokeServer(49)
  244. wait()
  245. ReplicatedStorage.Connection:InvokeServer(49)
  246. wait()
  247. ReplicatedStorage.Connection:InvokeServer(49)
  248. wait()
  249. ReplicatedStorage.Connection:InvokeServer(49)
  250. wait()
  251. ReplicatedStorage.Connection:InvokeServer(49)
  252. wait()
  253. ReplicatedStorage.Connection:InvokeServer(49)
  254. wait()
  255. ReplicatedStorage.Connection:InvokeServer(49)
  256. wait()
  257. ReplicatedStorage.Connection:InvokeServer(49)
  258. wait()
  259. ReplicatedStorage.Connection:InvokeServer(49)
  260. wait()
  261. ReplicatedStorage.Connection:InvokeServer(51)
  262. end
  263. end
  264. end)
  265.  
  266. Help.BackgroundTransparency = 1
  267. Help.Name = 'Help'
  268. Help.Position = UDim2.new(.024, 0, .091, 100)
  269. Help.Size = UDim2.new(0, 217, 0, 98)
  270. Help.Visible = false
  271. Help.Font = 'Cartoon'
  272. Help.Text = 'Go fishing fish until give the message "Full Bucket", wait 2 minutes and fish the fish again, do this until you get money you want.'
  273. Help.TextColor3 = Color3.new(1, 1, 1)
  274. Help.TextSize = 18
  275. Help.TextWrapped = true
  276.  
  277. local RenderStepped
  278. RenderStepped = game:GetService('RunService').RenderStepped:Connect(function()
  279. if _G.BoomBox then
  280. ReplicatedStorage.PlayerData[Jogador.UserId].BoomBox.Value = true
  281. CustomBoomBox.BackgroundColor3 = Color3.fromRGB(40, 40, 255)
  282. else
  283. ReplicatedStorage.PlayerData[Jogador.UserId].BoomBox.Value = false
  284. CustomBoomBox.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  285. end
  286.  
  287. if _G.CandyPack then
  288. ReplicatedStorage.PlayerData[Jogador.UserId].CandyPack.Value = true
  289. CandyPackFurniture.BackgroundColor3 = Color3.fromRGB(40, 40, 255)
  290. else
  291. ReplicatedStorage.PlayerData[Jogador.UserId].CandyPack.Value = false
  292. CandyPackFurniture.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  293. end
  294.  
  295. if _G.PLUS then
  296. ReplicatedStorage.PlayerData[Jogador.UserId].PLUS.Value = true
  297. PLUS.BackgroundColor3 = Color3.fromRGB(40, 40, 255)
  298. else
  299. ReplicatedStorage.PlayerData[Jogador.UserId].PLUS.Value = false
  300. PLUS.BackgroundColor3 = Color3.fromRGB(70, 70, 255)
  301. end
  302.  
  303. if not CoreGui:FindFirstChild('MeepCity GUI') then
  304. RenderStepped:Disconnect()
  305. end
  306. end)
  307.  
  308. Functions.Visible = true
  309. Functions:TweenSize(UDim2.new(0, 230, 0, 230), 'Out', 'Quad', .5)
  310. wait(.5)
  311. Title.Visible = true
  312. Minimize.Visible = true
  313. Close.Visible = true
  314. CustomBoomBox.Visible = true
  315. CandyPackFurniture.Visible = true
  316. PLUS.Visible = true
  317. AutoFarmMoney.Visible = true
  318. Help.Visible = true
Add Comment
Please, Sign In to add comment