Advertisement
Upscalefanatic3

[FE] High School Dorm Life quick blocks

Jan 31st, 2018
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. -- Game Link: https://www.roblox.com/games/597114278/High-School-Dorm-Life-READ-DESC
  2.  
  3.  
  4.  
  5. blockcount = 200 --Change this. I wouldn't do more than 300 (kinda laggy).
  6.  
  7. for i=1,blockcount do
  8. print(i)
  9. game.ReplicatedStorage.UpdateClothes:FireServer({[1]= "Outfit1", [2]= "151784320", [3]= "none", [4]= "none", [5]= "none", [6]= "none", [7]= "none"})
  10. game.ReplicatedStorage.Clothes:FireServer({[1]= "151784320", [2]= "none", [3]= "none", [4]= "none", [5]= "none", [6]= "none"})
  11. wait(0.1)
  12. for index, child in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  13. if child.ClassName == "Hat" or child.ClassName == "Accessory" then
  14. if child.Handle:FindFirstChild("Mesh") then
  15. child.Handle.Mesh.Parent = nil
  16. end
  17. child.Parent = game.Workspace
  18. end
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement