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

How to make my sword's Damage linked by My Stats Value ?

Asked by 5 years ago

How to make my sword's Damage linked by My Stats Value (Stats In player.Localplayer:WaitForChild("Stats"):WaitForChild("Sword").Value)

This Sword Scripts

001Tool = script.Parent
002Handle = Tool:WaitForChild("Handle")
003 
004function Create(ty)
005    return function(data)
006        local obj = Instance.new(ty)
007        for k, v in pairs(data) do
008            if type(k) == 'number' then
009                v.Parent = obj
010            else
011                obj[k] = v
012            end
013        end
014        return obj
015    end
View all 226 lines...
2
nice free model User#24403 69 — 5y
0
Next time write the script yourself and you might know? Gojinhan 353 — 5y

Answer this question