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

How do i fix no property name for object error?

Asked by 4 years ago
01local rp = game:GetService("ReplicatedStorage")
02local summon = rp:WaitForChild("Summon")
03 
04local tweenservice = game:service("TweenService")
05 
06summon.OnServerEvent:connect(function(player,isactive)
07    local character = player.character
08    local humanoid = character.Humanoid
09    local Humrp = character.HumanoidRootPart
10 
11    if isactive then
12        local Humrp = character.HumanoidRootPart
13        local stand = script:WaitForChild("Stand"):Clone()
14 
15        for _, part in pairs(stand:GetChildren()) do
View all 57 lines...

ERROR: TweenService:Create no property named 'transparency' for object 'LeftHand' 

Line: Line 40

1 answer

Log in to vote
1
Answered by
3wdo 198
4 years ago

With my experience im sure that you should write transparency as Transparency

01local rp = game:GetService("ReplicatedStorage")
02local summon = rp:WaitForChild("Summon")
03 
04local tweenservice = game:service("TweenService")
05 
06summon.OnServerEvent:connect(function(player,isactive)
07    local character = player.character
08    local humanoid = character.Humanoid
09    local Humrp = character.HumanoidRootPart
10 
11    if isactive then
12        local Humrp = character.HumanoidRootPart
13        local stand = script:WaitForChild("Stand"):Clone()
14 
15        for _, part in pairs(stand:GetChildren()) do
View all 57 lines...

Try this

0
that did it thanks Not_prototype 50 — 4y
Ad

Answer this question