You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? I Want My Part Turn The Color into Green when i touched it. but when i play/run the game. the part’s color is becoming green without i touched it
What is the issue? but when i play/run the game. the part’s color is becoming green without i touched it
What solutions have you tried so far? Not Founding
May I see your code?
If you have just attached the .Touched event and not checked if it was a player touching the part, then it would have detected touching the baseplate.
Let me give you a working example of that.
local part = game.Workspace.Part
part.Touched:Connect(function(hit)
if not hit.Parent:FindFirstChild("Humanoid") then return end
-- Change the colour of the part here
part.Color = Color3.fromRGB(0,255,0)
end)
Something like that would work. Of course, you could set the if statement up differently, but that is up to you.