I’ve been trying to code something, and inside it i had to include a RemoteEvent, but it seems like it working properly know why?
– Client
PurchaseEvent.OnClientEvent:Connect(function(plr, Transparency, CanCollide)
Part.Transparency = Transparency
Part.CanCollide = CanCollide
end)
– Server
mps.PromptGamePassPurchaseFinished:Connect(function(plr, purchaseID, Succes)
if purchaseID == ID and Succes == true then
PurchaseEvent:FireClient(0.5, false)
end
end)