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