|
|
| 30 Sep 2013 07:53 AM
|
change the colour of the player's body and their name, but it only changes the name.
I don't get why this isn't working.
local Character = game.Workspace.Part1:FindFirstChild("Character")
if (not Character) then return end
game.Lighting.NEON:Clone().Parent = Part1.Character.Head
Part1.Name = "Neon"
The lighting part is just for showing off neon colours. :D
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
| 30 Sep 2013 12:14 PM
|
script.Parent.Touched:connect(function()
Part1 = workspace.FindFirstChild(script.Parent.Name)
for i,v in pairs(Part1:GetChildren()) do
v:Destroy();
end
neonclone = game.Lighting.NEON:Clone()
neonclone.Parent = workspace.PARTNAMEHERE;
neonclone.MeshId ="http://www.roblox.com/asset/?id=1459292"
neonclone.Size = Vector3.new(30,10,60)
end)
~Supermecoolman
|
|
|
|
|
|
|
Report
Abuse
|
|