of     1   

eXoguti097
#40288788Monday, January 03, 2011 10:27 PM GMT

Model = "Car" players = game.Players.NumPlayers votes = script.Parent.Votes regen1 = game.Workspace:findFirstChild(Model):Clone() regen2 = regen1:Clone() regen3 = regen2:Clone() function onTouched(hit) voter = hit.Parent.Name if script.Parent.Activated.Value == true and votes.Value >= players / 2 and script.Parent.Voters:findFirstChild(voter) ~= nil then script.Parent.Activated = false local n = Instance.new("NumberValue") n.Parent = script.Parent.Voters n.Name = hit.Parent.Name game.Workspace:findFirstChild(Model):Remove() regen3.Parent = game.Workspace regen3:MakeJoints() script.Parent.Activated.Value = true end end script.Parent.Touched:connect(onTouched) It's a vote regen, but it doesnt do anything when I touch the button.
eXoguti097
#40289665Monday, January 03, 2011 10:37 PM GMT

Bump
Nightlizard
#40289734Monday, January 03, 2011 10:38 PM GMT

no one here likes reading a whole script to find a single problem, give us the output.
eXoguti097
#40298123Tuesday, January 04, 2011 12:13 AM GMT

The output is fine, it just says the script is running, no problems, but it dowsnt work

    of     1