Hi I was scripting this game and I came across an error in the output that said "ClassicSword is not a valid member of StarterGear." Can you help?
01 | price = 550 |
02 | plr = game.Players.LocalPlayer |
03 | debounce = false |
04 | if plr.StarterGear.ClassicSword.Configurations.LungeDamage = = 50 then |
05 | script.Parent.Active = false |
06 | script.Parent.Visible = false |
07 | elseif plr.StarterGear.ClassicSword.Configurations.LungeDamage > 50 or plr.StarterGear.ClassicSword.Configurations.LungeDamage < 50 then |
08 | script.Parent.MouseButton 1 Click:connect( function () |
09 | if debounce then return end |
10 | local v = plr.leaderstats.Credits |
11 | debounce = true |
12 | if v.Value > = price then |
13 | plr.StarterGear.ClassicSword.Configurations.LungeDamage.Value = 50 |
14 | v.Value = v.Value - price |
15 | script.Parent.Parent.Buy.Visible = true |
If your sword is in ServerStorage, then you'd need to clone it in to the backpack like this:
game.ServerStorage.ClassicSword:Clone().Parent = plr.Backpack
This will not work with FilteringEnabled on if you have it on. Therefore, you should really move it to ReplicatedStorage so it becomes this:
game.ServerStorage.ReplicatedStorage.ClassicSword:Clone().Parent = plr.Backpack
Also, it's really good practice to make a variable for the sword, like this:
1 | local sword = plr.Backpack:FindFirstChild( "ClassicSword" ) |
2 | --Now I can use "sword" without having to use the whole path all the time! |
3 | if sword then |
4 | print ( "Yay! This worked!" ) |
5 | end |
You can also do this for other objects too, for example the error object you seem to use a lot.