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

No errors, but not setting transparency?

Asked by
OldBo5 30
5 years ago

Code:

-- Variables --
local name1 = script.Parent.Name1
local price = script.Parent.Price
script.Parent.Name = "Buy " ..name1.Value.. " - " ..price.Value.. " Cash needed."
script.Parent.Head.Touched:Connect(function(hit)
    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
    if not player then
        return
    end
    if player then
        if player.leaderstats.Cash.Value >= price.Value then
            player.leaderstats.Cash.Value = player.leaderstats.Cash.Value - price.Value
            repeat
                wait()
                script.Parent.Head.Transparency = script.Parent.Head.Transparency + 0.01
            until
            script.Parent.Head.Transparency == 1
            wait()
            script.Parent.Head:Destroy()
            script.Parent.Humanoid:Destroy()
            script.Parent.Name = "(BOUGHT) Buy " ..name1.Value.. " - " ..price.Value.. " Cash needed."
            for v,i in pairs(workspace["Tycoon"]:GetChildren()) do
                if i:IsA("Model") and i.Name == "Item" ..name1.Value then
                    for v,part in pairs(i:GetChildren()) do
                        part.CanCollide = true
                        part.Transparency = 0
                    end
                end
            end
        end
    end
end)

All I get is a blank thing in console that says (xinterger) (such as 1, or 2.)

0
Humanoids don't let you change the transparency of the body...] Leamir 3138 — 5y
0
@Leamir It is not in the body, it is in the tycoon model. Not the button. OldBo5 30 — 5y
0
@Leamir Actually it does let you change it. I did it. Also @OldBo5, I didnt understand, what blank thing in the console? Can you show a pictute please? HeyItzDanniee 252 — 5y

Answer this question