Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Changing the players package not working?

Asked by 6 years ago

So i am making a game and it changes the players Package but i can't get it to work, here is the script .. any help will be nice!


game.Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Char) --wait(1) local Leaderstats = Player:WaitForChild("leaderstats") local Level = Leaderstats:WaitForChild("Level") if Level.Value > 1 then local FindSuitLvl = game.ReplicatedStorage.Suits:FindFirstChild("Level" .. Level.Value) if FindSuitLvl then end else 9 for i,v in pairs(game.ReplicatedStorage.Suits.StarterSuit:GetChildren()) do if v:IsA("CharacterMesh") then local MeshC = v:Clone() MeshC.Parent = Char end end end end) end)
0
Did you make the Suits? ZAZC_Noob 7 — 6y
0
Not there packages KinqAustinn 293 — 6y

Answer this question