|
| 16 Aug 2014 04:23 PM |
| I'm trying to make a hat weld script (Like some of the murder games and stuff) and I'm having problems can anyone tell me how to make a hat stay on my head even if I spam + |
|
|
| Report Abuse |
|
|
|
| 16 Aug 2014 04:25 PM |
game.Players.PlayerAdded:connect(function(nub) nub.CharacterAdded:connect(function(player) player.Head.Transparency = 1 local Handle = Instance.new("Part",player) Handle.Name = "Hat" local Mesh = Instance.new("SpecialMesh",Handle) Mesh.MeshId = "http://www.roblox.com/asset/?id=151778863" Mesh.TextureId = "http://www.roblox.com/asset/?id=151778895" local Weld = Instance.new("Weld",Handle) Weld.Name = "HatWeld" Weld.Part0 = player.Head Weld.Part1 = Handle end) end) |
|
|
| Report Abuse |
|
|
|
| 16 Aug 2014 04:27 PM |
| Can you change the position? |
|
|
| Report Abuse |
|
|
| |
|
| |
|