|
| 06 Feb 2012 08:52 PM |
owner = Game.Players.coltman188888 local p = Instance.new("Part") p.Parent = Game.Workspace p.Position = owner.Torso.Position + Vector3.new(0, 5, 0) p.Size = Vector3.new(3, 3, 3) p.Anchored = true p.Locked = false p.Transparency = 0 p.Reflectance = 0 wait(.01) local bv = Instance.new("BodyVelocity") bv.Parent = p bv.velocity = ((owner.Character.Head.Humanoid.TargetPoint - p.Position ).unit) * 5 wait(3) p:Destroy()
...It is supposed to move at a slow rate from my head. Any ideas? |
|
|
| Report Abuse |
|