Advertisement
creepstu

Stop it, Slender! (collect those Halloween things) [roblox script]

Oct 2nd, 2023
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | Source Code | 0 0
  1. --<<// Do not use the page teleporter while farming candy and spiders! Reason: You can only farm when the round begins. \\>>
  2. --<<// Idea: Road to 1500 candies to buy all the rare slender outfits. \\>>
  3.  
  4.  
  5. --<< LOOP >>
  6. while wait() do
  7.     --<< VARIABLES >>
  8.     local me = game.Players.LocalPlayer
  9.     local players = game.Players:GetChildren()
  10.     local mechar = me.Character
  11.     --<< TELEPORT TO THOSE THINGS >>
  12.     for i,v in pairs(game.Workspace.Candy:GetDescendants()) do
  13.         if v.Name == "M" then
  14.             wait()
  15.             mechar.HumanoidRootPart.CFrame = v.CFrame
  16.         end
  17.     end
  18.     for x, y in pairs(game.Workspace.Spiders:GetDescendants()) do
  19.         if y.Name == "MeshPart" then
  20.             mechar.HumanoidRootPart.CFrame = y.CFrame
  21.         end
  22.     end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement