Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
11,337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.68 KB | None | 0 0
  1. -- Objects
  2.  
  3. local sssgui = Instance.new("ScreenGui")
  4. local bottom = Instance.new("Frame")
  5. local drag = Instance.new("TextLabel")
  6. local main = Instance.new("Frame")
  7. local enable = Instance.new("TextButton")
  8. local frosty = Instance.new("TextButton")
  9. local shovelshop = Instance.new("TextButton")
  10. local bagshop = Instance.new("TextButton")
  11. local truckshop = Instance.new("TextButton")
  12. local parkinglot = Instance.new("TextButton")
  13. local expansionbtn = Instance.new("TextButton")
  14. local icemountain = Instance.new("TextButton")
  15. local playerbtn = Instance.new("TextButton")
  16. local credit = Instance.new("TextLabel")
  17. local expansion = Instance.new("Frame")
  18. local expansionclose = Instance.new("TextButton")
  19. local giveice = Instance.new("TextButton")
  20. local icetext = Instance.new("TextBox")
  21. local bossbag = Instance.new("TextButton")
  22. local player = Instance.new("Frame")
  23. local playerclose = Instance.new("TextButton")
  24. local walkspeed = Instance.new("TextButton")
  25. local walkspeedtext = Instance.new("TextBox")
  26. local jump = Instance.new("TextButton")
  27. local jumptext = Instance.new("TextBox")
  28.  
  29. -- Properties
  30.  
  31. sssgui.Name = "sssgui"
  32. sssgui.Parent = game.CoreGui
  33.  
  34. bottom.Name = "bottom"
  35. bottom.Parent = sssgui
  36. bottom.Active = true
  37. bottom.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  38. bottom.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  39. bottom.Draggable = true
  40. bottom.Position = UDim2.new(0.341401726, 0, 0.734042585, 0)
  41. bottom.Selectable = true
  42. bottom.Size = UDim2.new(0, 439, 0, 27)
  43.  
  44. drag.Name = "drag"
  45. drag.Parent = bottom
  46. drag.BackgroundColor3 = Color3.new(1, 1, 1)
  47. drag.BackgroundTransparency = 1
  48. drag.Position = UDim2.new(0, 0, -8.94069672e-07, 0)
  49. drag.Size = UDim2.new(0, 439, 0, 27)
  50. drag.Font = Enum.Font.SourceSansBold
  51. drag.FontSize = Enum.FontSize.Size14
  52. drag.Text = "--DRAG--"
  53. drag.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  54. drag.TextScaled = true
  55. drag.TextSize = 14
  56. drag.TextWrapped = true
  57.  
  58. main.Name = "main"
  59. main.Parent = bottom
  60. main.BackgroundColor3 = Color3.new(0.847059, 0.901961, 1)
  61. main.BorderColor3 = Color3.new(0.847059, 0.901961, 1)
  62. main.Position = UDim2.new(0, 0, -11.6296301, -60)
  63. main.Size = UDim2.new(0, 439, -0.0740740746, 376)
  64.  
  65. enable.Name = "enable"
  66. enable.Parent = main
  67. enable.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  68. enable.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  69. enable.Position = UDim2.new(0.296127558, 0, 0.052380953, 0)
  70. enable.Size = UDim2.new(0, 179, 0, 29)
  71. enable.Font = Enum.Font.SourceSansBold
  72. enable.FontSize = Enum.FontSize.Size14
  73. enable.Text = "Enable Money-Farm"
  74. enable.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  75. enable.TextScaled = true
  76. enable.TextSize = 14
  77. enable.TextWrapped = true
  78. enable.MouseButton1Click:Connect(function()
  79. --edit after this
  80. maxsnow = snow --max snow in your backpack
  81. currentshovel = shovelname -- exact name of your shovel (case sensitive)
  82. --don't edit after this
  83. root = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  84. while wait() do
  85. for i,v in pairs(game.Workspace.Sidewalks:GetChildren()) do
  86. if v.Name == "Sidewalk" then
  87. for i,v in pairs(v:GetChildren()) do
  88. if v.Name == "Snow" and game.Players.LocalPlayer.Stats.currentSnow.Value ~= maxsnow then
  89. root.CFrame = v.CFrame
  90. wait()
  91. game.ReplicatedStorage.RemoteEvents.Shovel:FireServer(v, 5, currentshovel)
  92. elseif game.Players.LocalPlayer.Stats.currentSnow.Value >= maxsnow then
  93. repeat
  94. wait()
  95. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(380.18, 2.56, -85.37))
  96. game.ReplicatedStorage.RemoteEvents.SellSnow:FireServer(true)
  97. until game.Players.LocalPlayer.Stats.currentSnow.Value <= 0
  98. end
  99. end
  100. end
  101. end
  102. end
  103. end)
  104.  
  105. frosty.Name = "frosty"
  106. frosty.Parent = main
  107. frosty.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  108. frosty.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  109. frosty.Position = UDim2.new(0.296127558, 0, 0.410995483, 21)
  110. frosty.Size = UDim2.new(0, 179, 0, 24)
  111. frosty.Font = Enum.Font.SourceSansBold
  112. frosty.FontSize = Enum.FontSize.Size14
  113. frosty.Text = "TP To Frosty"
  114. frosty.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  115. frosty.TextScaled = true
  116. frosty.TextSize = 14
  117. frosty.TextWrapped = true
  118. frosty.MouseButton1Click:Connect(function()
  119. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(380.18, 2.56, -85.37))
  120. end)
  121.  
  122. shovelshop.Name = "shovelshop"
  123. shovelshop.Parent = main
  124. shovelshop.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  125. shovelshop.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  126. shovelshop.Position = UDim2.new(0.296127558, 0, 0.53618443, 6)
  127. shovelshop.Size = UDim2.new(0, 179, 0, 29)
  128. shovelshop.Font = Enum.Font.SourceSansBold
  129. shovelshop.FontSize = Enum.FontSize.Size14
  130. shovelshop.Text = "TP To Jim's Shovels"
  131. shovelshop.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  132. shovelshop.TextScaled = true
  133. shovelshop.TextSize = 14
  134. shovelshop.TextWrapped = true
  135. shovelshop.MouseButton1Click:Connect(function()
  136. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-9.23843861,2.54999995,-49.5691833))
  137. end)
  138.  
  139. bagshop.Name = "bagshop"
  140. bagshop.Parent = main
  141. bagshop.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  142. bagshop.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  143. bagshop.Position = UDim2.new(0.296127558, 0, 0.659522057, 1)
  144. bagshop.Size = UDim2.new(0, 179, 0, 29)
  145. bagshop.Font = Enum.Font.SourceSansBold
  146. bagshop.FontSize = Enum.FontSize.Size14
  147. bagshop.Text = "TP To Bag Shop"
  148. bagshop.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  149. bagshop.TextScaled = true
  150. bagshop.TextSize = 14
  151. bagshop.TextWrapped = true
  152. bagshop.MouseButton1Click:Connect(function()
  153. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(230.883881,2.3499999,-73.4051208))
  154. end)
  155.  
  156. truckshop.Name = "truckshop"
  157. truckshop.Parent = main
  158. truckshop.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  159. truckshop.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  160. truckshop.Position = UDim2.new(0.296127558, 0, 0.770987034, 0)
  161. truckshop.Size = UDim2.new(0, 179, 0, 29)
  162. truckshop.Font = Enum.Font.SourceSansBold
  163. truckshop.FontSize = Enum.FontSize.Size14
  164. truckshop.Text = "TP To Plow Store"
  165. truckshop.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  166. truckshop.TextScaled = true
  167. truckshop.TextSize = 14
  168. truckshop.TextWrapped = true
  169. truckshop.MouseButton1Click:Connect(function()
  170. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4.48536873,2.54959726,-174.199615))
  171. end)
  172.  
  173. parkinglot.Name = "parkinglot"
  174. parkinglot.Parent = main
  175. parkinglot.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  176. parkinglot.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  177. parkinglot.Position = UDim2.new(0.296127558, 0, 0.882452011, 0)
  178. parkinglot.Size = UDim2.new(0, 179, 0, 29)
  179. parkinglot.Font = Enum.Font.SourceSansBold
  180. parkinglot.FontSize = Enum.FontSize.Size14
  181. parkinglot.Text = "TP To Parking Lot"
  182. parkinglot.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  183. parkinglot.TextScaled = true
  184. parkinglot.TextSize = 14
  185. parkinglot.TextWrapped = true
  186. parkinglot.MouseButton1Click:Connect(function()
  187. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-515.589722,2.45000005,25.7369156))
  188. end)
  189.  
  190. expansionbtn.Name = "expansionbtn"
  191. expansionbtn.Parent = main
  192. expansionbtn.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  193. expansionbtn.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  194. expansionbtn.Position = UDim2.new(0.296000004, 0, 0.412, -52)
  195. expansionbtn.Size = UDim2.new(0, 179, 0, 22)
  196. expansionbtn.Font = Enum.Font.SourceSansBold
  197. expansionbtn.FontSize = Enum.FontSize.Size14
  198. expansionbtn.Text = "Expansion Commands"
  199. expansionbtn.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  200. expansionbtn.TextScaled = true
  201. expansionbtn.TextSize = 14
  202. expansionbtn.TextWrapped = true
  203. expansionbtn.MouseButton1Click:Connect(function()
  204. expansion.Visible = true
  205. end)
  206.  
  207. icemountain.Name = "icemountain"
  208. icemountain.Parent = main
  209. icemountain.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  210. icemountain.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  211. icemountain.Position = UDim2.new(0.296127558, 0, 0.410995483, -19)
  212. icemountain.Size = UDim2.new(0, 179, 0, 29)
  213. icemountain.Font = Enum.Font.SourceSansBold
  214. icemountain.FontSize = Enum.FontSize.Size14
  215. icemountain.Text = "TP To Ice Mountain"
  216. icemountain.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  217. icemountain.TextScaled = true
  218. icemountain.TextSize = 14
  219. icemountain.TextWrapped = true
  220. icemountain.MouseButton1Click:Connect(function()
  221. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(136, 2.29, -459.1))
  222. end)
  223.  
  224. playerbtn.Name = "playerbtn"
  225. playerbtn.Parent = main
  226. playerbtn.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  227. playerbtn.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  228. playerbtn.Position = UDim2.new(0.296000004, 0, 0.412, -85)
  229. playerbtn.Size = UDim2.new(0, 179, 0, 22)
  230. playerbtn.Font = Enum.Font.SourceSansBold
  231. playerbtn.FontSize = Enum.FontSize.Size14
  232. playerbtn.Text = "Player Commands"
  233. playerbtn.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  234. playerbtn.TextScaled = true
  235. playerbtn.TextSize = 14
  236. playerbtn.TextWrapped = true
  237. playerbtn.MouseButton1Click:Connect(function()
  238. player.Visible = true
  239. end)
  240.  
  241. credit.Name = "credit"
  242. credit.Parent = bottom
  243. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  244. credit.BackgroundTransparency = 1
  245. credit.Position = UDim2.new(0, 0, 0.999999106, 0)
  246. credit.Size = UDim2.new(0, 439, 0, 27)
  247. credit.Font = Enum.Font.SourceSansBold
  248. credit.FontSize = Enum.FontSize.Size14
  249. credit.Text = "made by chubsroblox // edited by ILikeBreadYum"
  250. credit.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  251. credit.TextScaled = true
  252. credit.TextSize = 14
  253. credit.TextWrapped = true
  254.  
  255. expansion.Name = "expansion"
  256. expansion.Parent = sssgui
  257. expansion.BackgroundColor3 = Color3.new(0.847059, 0.901961, 1)
  258. expansion.BorderColor3 = Color3.new(0.847059, 0.901961, 1)
  259. expansion.Position = UDim2.new(0, 44, 0, 22)
  260. expansion.Size = UDim2.new(0, 183, 0, 502)
  261. expansion.Visible = false
  262.  
  263. expansionclose.Name = "expansionclose"
  264. expansionclose.Parent = expansion
  265. expansionclose.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  266. expansionclose.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  267. expansionclose.Position = UDim2.new(0.296127558, -54, 0.052380953, 447)
  268. expansionclose.Size = UDim2.new(0, 183, 0, 29)
  269. expansionclose.Font = Enum.Font.SourceSansBold
  270. expansionclose.FontSize = Enum.FontSize.Size14
  271. expansionclose.Text = "-=Close=-"
  272. expansionclose.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  273. expansionclose.TextScaled = true
  274. expansionclose.TextSize = 14
  275. expansionclose.TextWrapped = true
  276. expansionclose.MouseButton1Click:Connect(function()
  277. expansion.Visible = false
  278. end)
  279.  
  280. giveice.Name = "giveice"
  281. giveice.Parent = expansion
  282. giveice.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  283. giveice.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  284. giveice.Position = UDim2.new(0.296127558, -32, 0.052380953, -8)
  285. giveice.Size = UDim2.new(0, 139, 0, 29)
  286. giveice.Font = Enum.Font.SourceSansBold
  287. giveice.FontSize = Enum.FontSize.Size14
  288. giveice.Text = "Give Ice"
  289. giveice.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  290. giveice.TextScaled = true
  291. giveice.TextSize = 14
  292. giveice.TextWrapped = true
  293. giveice.MouseButton1Click:Connect(function()
  294. local ice = tonumber(icetext.Text)
  295. game.ReplicatedStorage.RemoteFunctions.I.MineIce:InvokeServer(Workspace.IcePieces.IcePiece,0.5,ice)
  296. end)
  297.  
  298. icetext.Name = "icetext"
  299. icetext.Parent = expansion
  300. icetext.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  301. icetext.BorderColor3 = Color3.new(0.329412, 0.34902, 0.392157)
  302. icetext.Position = UDim2.new(0, 26, 0, 56)
  303. icetext.Size = UDim2.new(0, 132, 0, 34)
  304. icetext.Font = Enum.Font.SourceSansBold
  305. icetext.FontSize = Enum.FontSize.Size14
  306. icetext.Text = "Amount of ice here"
  307. icetext.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  308. icetext.TextSize = 14
  309.  
  310. bossbag.Name = "bossbag"
  311. bossbag.Parent = expansion
  312. bossbag.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  313. bossbag.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  314. bossbag.Position = UDim2.new(0.296127558, -32, 0.052380953, 77)
  315. bossbag.Size = UDim2.new(0, 139, 0, 29)
  316. bossbag.Font = Enum.Font.SourceSansBold
  317. bossbag.FontSize = Enum.FontSize.Size14
  318. bossbag.Text = "Give Boss Backpack"
  319. bossbag.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  320. bossbag.TextScaled = true
  321. bossbag.TextSize = 14
  322. bossbag.TextWrapped = true
  323. bossbag.MouseButton1Click:Connect(function()
  324. game.ReplicatedStorage.RemoteEvents.BuyIcePack:FireServer("Ice King Head",Color3.new(0.639216,0.635294,0.647059))
  325. end)
  326.  
  327. player.Name = "player"
  328. player.Parent = sssgui
  329. player.BackgroundColor3 = Color3.new(0.847059, 0.901961, 1)
  330. player.BorderColor3 = Color3.new(0.847059, 0.901961, 1)
  331. player.Position = UDim2.new(0, 870, 0, 23)
  332. player.Size = UDim2.new(0, 170, 0, 500)
  333. player.Visible = false
  334.  
  335. playerclose.Name = "playerclose"
  336. playerclose.Parent = player
  337. playerclose.BackgroundColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  338. playerclose.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  339. playerclose.Position = UDim2.new(0.296127558, -50, 0.052380953, 447)
  340. playerclose.Size = UDim2.new(0, 170, 0, 29)
  341. playerclose.Font = Enum.Font.SourceSansBold
  342. playerclose.FontSize = Enum.FontSize.Size14
  343. playerclose.Text = "-=Close=-"
  344. playerclose.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  345. playerclose.TextScaled = true
  346. playerclose.TextSize = 14
  347. playerclose.TextWrapped = true
  348. playerclose.MouseButton1Click:Connect(function()
  349. player.Visible = false
  350. end)
  351.  
  352. walkspeed.Name = "walkspeed"
  353. walkspeed.Parent = player
  354. walkspeed.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  355. walkspeed.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  356. walkspeed.Position = UDim2.new(0.296127558, -32, 0.052380953, -8)
  357. walkspeed.Size = UDim2.new(0, 139, 0, 29)
  358. walkspeed.Font = Enum.Font.SourceSansBold
  359. walkspeed.FontSize = Enum.FontSize.Size14
  360. walkspeed.Text = "Change Walkspeed"
  361. walkspeed.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  362. walkspeed.TextScaled = true
  363. walkspeed.TextSize = 14
  364. walkspeed.TextWrapped = true
  365. walkspeed.MouseButton1Click:Connect(function()
  366. local speed = tonumber(walkspeedtext.Text)
  367. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  368. end)
  369.  
  370. walkspeedtext.Name = "walkspeedtext"
  371. walkspeedtext.Parent = player
  372. walkspeedtext.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  373. walkspeedtext.BorderColor3 = Color3.new(0.329412, 0.34902, 0.392157)
  374. walkspeedtext.Position = UDim2.new(0, 28, 0, 53)
  375. walkspeedtext.Size = UDim2.new(0, 116, 0, 34)
  376. walkspeedtext.Font = Enum.Font.SourceSansBold
  377. walkspeedtext.FontSize = Enum.FontSize.Size14
  378. walkspeedtext.Text = "Walkspeed here"
  379. walkspeedtext.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  380. walkspeedtext.TextSize = 14
  381.  
  382. jump.Name = "jump"
  383. jump.Parent = player
  384. jump.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  385. jump.BorderColor3 = Color3.new(0.435294, 0.462745, 0.513726)
  386. jump.Position = UDim2.new(0.296127558, -35, 0.052380953, 69)
  387. jump.Size = UDim2.new(0, 139, 0, 29)
  388. jump.Font = Enum.Font.SourceSansBold
  389. jump.FontSize = Enum.FontSize.Size14
  390. jump.Text = "Change JumpPower"
  391. jump.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  392. jump.TextScaled = true
  393. jump.TextSize = 14
  394. jump.TextWrapped = true
  395. jump.MouseButton1Click:Connect(function()
  396. local jump = tonumber(jumptext.Text)
  397. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump
  398. end)
  399.  
  400. jumptext.Name = "jumptext"
  401. jumptext.Parent = player
  402. jumptext.BackgroundColor3 = Color3.new(0.431373, 0.458824, 0.513726)
  403. jumptext.BorderColor3 = Color3.new(0.329412, 0.34902, 0.392157)
  404. jumptext.Position = UDim2.new(0, 24, 0, 132)
  405. jumptext.Size = UDim2.new(0, 119, 0, 34)
  406. jumptext.Font = Enum.Font.SourceSansBold
  407. jumptext.FontSize = Enum.FontSize.Size14
  408. jumptext.Text = "JumpPower here"
  409. jumptext.TextColor3 = Color3.new(0.847059, 0.901961, 1)
  410. jumptext.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement