1 | script.Parent.Parent.Block.Touched:Connect( function (Part) |
2 | workspace.PartStorage.Part.Changed = Enum.Material.Concrete |
3 | end ) |
ehh, hello ^w^ just make a script and what are me doing after the script has completed ^w^
thanks >w^
There is no need to make Part for a neutral function. Change to function()
instead.
I think you meant why is the part is plastic? Easy fix. Consider replacing . Changed
to . Material
instead.
Need a script?
1 | script.Parent.Parent.Block.Touched:Connect( function () |
2 | workspace.PartStorage.Part.Material = Enum.Material.Concrete |
3 | end ) |
A I can see, You should Change function(Part)
into function(hit)
The hit
function is activated, When the player is touching it's part. I will show the script:
1 | script.Parent.Parent.Block.Touched:Connect( function (hit) |
2 | local h = hit.Parent:FindFirstChild( "Humanoid" ) -- Humanoid |
3 | if h ~ = nil then |
4 | Workspace.PartStorage.Part.Material = Enum.Material.Concrete |
5 | end |
6 | end ) |
Here is some errors:
First of all, .Changed
is an event which Activated when something changes
Second, Workspace starts with Capital W, Workspace.
And Please Note: This is a script for Humanoids [Players or NPCs] Which has Humanoid. This doesn't work Unless the Humanoid is not Parented to the Object which needs to Touch.
I hope it Help!