EcIiptic
|
  |
| Joined: 12 Aug 2009 |
| Total Posts: 13737 |
|
|
| 03 Dec 2013 07:44 AM |
function onTouched(hit) local Person = hit.Parent:FindFirstChild("Humanoid") if (Person ~= nil) then script.Parent.Transparency = 0.5 script.Parent.CanCollide = false Person.Walkspeed = 8 wait(0.2) script.Parent.Transparency = 0 script.Parent.CanCollide = true Person.Walkspeed = 16 end end
script.Parent.Touched:connect(onTouched)
-Ecliptic |
|
|
| Report Abuse |
|
|
CrniOrao
|
  |
| Joined: 12 Oct 2008 |
| Total Posts: 2274 |
|
|
| 03 Dec 2013 07:49 AM |
Walkspeed is case sensitive I believe. Not sure.
Try using it as "WalkSpeed" instead of "Walkspeed" |
|
|
| Report Abuse |
|
|
|
| 03 Dec 2013 10:23 AM |
| Should be WalkSpeed, not Walkspeed. |
|
|
| Report Abuse |
|
|