of     1   

darkkiller5555
#44637509Saturday, March 26, 2011 8:41 PM GMT

This script is a normal tycoon door. If you have the IntValue named "Tycoon" it'll made a Hint that tell you that you already have a tycoon. Otherwise, the door will fade out, and the name shall become PlayerName's Tycoon. It simply doesn't work...Help? function Touch(hit) x = hit.Parent:findFirstChild("Tycoon") if (x ~= nil) then z = Instance.new("Hint") z.Parent = hit.Parent.Player.StarterGui z.Text = "You already own a tycoon" else script.Parent.Parent.Name = ""..hit.Parent.Name.."'s Tycoon" while true do wait(.5) w = script.Parent.Transparency w = w + .1 end end end
sncplay42
#44637997Saturday, March 26, 2011 8:48 PM GMT

script.Parent.Touched:connect(Touch)
darkkiller5555
#44638519Saturday, March 26, 2011 8:56 PM GMT

-Facepalm- Conenction line of course..Anyways that works, but it fading out doesn't..
sncplay42
#44638759Saturday, March 26, 2011 9:00 PM GMT

for i = 0, 1, .1 do wait(.5) script.Parent.Transparency = i end Replace the while loop with that

    of     1