Weapon goes on the inentitory but it doesn't load?
Asked by
4 years ago Edited 4 years ago
If I put the weapon on StarterPack, it works fine, but with this script, it doesn't load, it goes on my character but it doesn't work, its like invisible
1 | local player = game.Players.LocalPlayer |
2 | local tool = game.ReplicatedStorage.ShopTools.AK 47 |
3 | local cloneTool = tool:Clone() |
4 | script.Parent.MouseButton 1 Click:Connect( function (click) |
5 | if player.leaderstats.Francs.Value > = 10 then |
6 | player.leaderstats.Francs.Value = player.leaderstats.Francs.Value - 10 |
8 | cloneTool.Parent = player.Backpack |