Advertisement
KittyCat97

Meepcity Kitty Max

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