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

Whats wrong with my script?

Asked by 9 years ago

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?

01price = 550
02plr = game.Players.LocalPlayer
03debounce = false
04if plr.StarterGear.ClassicSword.Configurations.LungeDamage == 50 then
05    script.Parent.Active = false
06    script.Parent.Visible = false
07elseif plr.StarterGear.ClassicSword.Configurations.LungeDamage > 50 or plr.StarterGear.ClassicSword.Configurations.LungeDamage < 50 then
08    script.Parent.MouseButton1Click: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
View all 47 lines...

1 answer

Log in to vote
0
Answered by
DevChris 235 Moderation Voter
9 years ago

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:

1local sword = plr.Backpack:FindFirstChild("ClassicSword")
2--Now I can use "sword" without having to use the whole path all the time!
3if sword then
4    print("Yay! This worked!")
5end

You can also do this for other objects too, for example the error object you seem to use a lot.

0
backpack didn't work docrobloxman52 407 — 9y
0
"Backpack", not "backpack" DevChris 235 — 9y
0
Yes I know it still didn't work :( docrobloxman52 407 — 9y
0
It still says sword is not a valid member of Backpack docrobloxman52 407 — 9y
View all comments (3 more)
0
Is ClassicSword a member of StarterPack? DevChris 235 — 9y
1
Use WaitForChild instead of indexing it directly if you're expecting it to be there and it isn't yet. 1waffle1 2908 — 9y
0
^ DevChris 235 — 9y
Ad

Answer this question