Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
4

Why the part material not chaged be to plastic?

Asked by 4 years ago
1script.Parent.Parent.Block.Touched:Connect(function(Part)
2    workspace.PartStorage.Part.Changed = Enum.Material.Concrete
3end)

ehh, hello ^w^ just make a script and what are me doing after the script has completed ^w^

thanks >w^

2
^w^ Xapelize 2658 — 4y
2
^w^ RektwayYTB 123 — 4y
2
^w^ imKirda 4491 — 4y
2
^w^ Changed is an event, just access the Material of the part instead Omq_ItzJasmin 666 — 4y

2 answers

Log in to vote
4
Answered by
Xapelize 2658 Moderation Voter Community Moderator
4 years ago

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?

1script.Parent.Parent.Block.Touched:Connect(function()
2    workspace.PartStorage.Part.Material = Enum.Material.Concrete
3end)
0
thanks you so much ^w^ RizkySugihartoYT 36 — 4y
0
no problem ^w^ Xapelize 2658 — 4y
Ad
Log in to vote
3
Answered by 4 years ago

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:

1script.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
6end)

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!

1
Actually, using "Workspace" with the capital 'W' is deprecated. "workspace" is the correct variable, with a lowercase 'W' Omq_ItzJasmin 666 — 4y
1
Why are you adding in code to check for a humanoid? It's unneeded. SteamG00B 1633 — 4y

Answer this question