veelymm

Snow Shoveling Simulator Script

Dec 31st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --Roblox Snow Shoveling Sim Hack.
  2.  
  3. ----------------------------------
  4. --edit after this
  5. maxsnow = 45 --max snow in your backpack
  6. currentshovel = "Metal Shovel" -- exact name of your shovel (case sensitive)
  7. --don't edit after this
  8. root = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
  9. while wait() do
  10. for i,v in pairs(game.Workspace.Sidewalks:GetChildren()) do
  11. if v.Name == "Sidewalk" then
  12. for i,v in pairs(v:GetChildren()) do
  13. if v.Name == "Snow" and game.Players.LocalPlayer.Stats.currentSnow.Value ~= maxsnow then
  14. root.CFrame = v.CFrame
  15. wait()
  16. game.ReplicatedStorage.RemoteEvents.Shovel:FireServer(v, 5, currentshovel)
  17. elseif game.Players.LocalPlayer.Stats.currentSnow.Value >= maxsnow then
  18. repeat
  19. wait()
  20. root.CFrame = game.Workspace.FrostyCave.Snowman.Hat.CFrame
  21. game.ReplicatedStorage.RemoteEvents.SellSnow:FireServer(true)
  22. until game.Players.LocalPlayer.Stats.currentSnow.Value <= 0
  23. end
  24. end
  25. end
  26. end
  27. end
Add Comment
Please, Sign In to add comment