local part3 = Instance.new ("Part", game.Workspace) part3.Name = "HellSphere" part3.Color = Color3.new (61, 0, 0) part3.CanCollide = false part3.Transparency = 0.5 part3.Material = "Glass" part3.Parent = v.Character.Torso
trying to use this code but it doesn't rename the part, any help?
The part fell through the world so it was Destroyed.
local part3 = Instance.new ("Part", game.Workspace) part3.Name = "HellSphere" part3.Color = Color3.new (61, 0, 0) part3.CanCollide = false part3.Anchored = true -- this will prevent it to fall part3.Transparency = 0.5 part3.Material = "Glass" part3.Parent = v.Character.Torso
This should help you fix the script. If you want it attached to the player Check this out:
http://wiki.roblox.com/index.php?title=Weld
Anyway hoped this helped!
Best of luck developer!