of     1   

ripKillian01
#1101781Sunday, May 25, 2008 10:49 PM GMT

i need a "reflectance giver" that when you step on it your whole body becomes shiney 1.if you do make me this i will put name in description for helping me .thx
WolfVenomSilverSurfe
#1101814Sunday, May 25, 2008 10:51 PM GMT

Heh, Considering I have a stupid name that combines 3 things, and one of them is Silver Surfe, I can make it.
WolfVenomSilverSurfe
#1102146Sunday, May 25, 2008 11:08 PM GMT

function Shine(hit) human = hit.Parent:FindFirstChild("Humanoid") if human ~= nil then hit.Parent:FindFirstChild("Torso").Reflectance = 1 hit.Parent:FindFirstChild("Head").Reflectance = 1 hit.Parent:FindFirstChild("Left Arm").Reflectance = 1 hit.Parent:FindFirstChild("Left Leg").Reflectance = 1 hit.Parent:FindFirstChild("Right Arm").Reflectance = 1 hit.Parent:FindFirstChild("Right Leg").Reflectance = 1 end end script.Parent.Touched:connect(Shine)

    of     1