Greetings, I have noticed this issue while working with remote events:
Lets say I have this local script
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local remoteEvent = ReplicatedStorage:WaitForChild("RemoteEventTest")
local function tr(uh)
uh.transparency = 0.7
end
remoteEvent.OnClientEvent:Connect(tr)
and this server side script
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local ProximityPrompt = script.Parent
local remoteEvent = ReplicatedStorage:WaitForChild("RemoteEventTest")
local part = workspace.Part
ProximityPrompt.Triggered:Connect(function(player)
remoteEvent:FireClient(player, part)
end)
I was expecting that the transparency of the part would change, however nothing happened. Thanks for answering!
i think its because transparency is lowercase. Im not sure if this is a typo or not, but im still looking through the rest of the script, so it may not be that.