1 | local event = game.ReplicatedStorage.Events.Tattoo |
2 |
3 | function leftClick(mouse) |
4 | event:FireServer() |
5 | script.Parent.Parent.WhichTattoo.Value = script.Parent.Image |
6 | end |
7 | script.Parent.MouseButton 1 Click:connect(leftClick) |
so basically when you left click the button it fires an event (not important to my question) & sets a value to an images url (line 5), when i play and click the button, the value stays blank, does anyone know why?