Hi my code didnt work and ended up with an Attempt to index nil with findfirstchild is there any way to fix it?
heres the code in pastebin
https://pastebin.com/wDjwECuK
Fixed, I changed the code a bit from those stuff
local v62 = target.HoverInfo:WaitForChild("HoverName") local v65 = target.HoverInfo:WaitForChild("HoverDesc")
and did this to it :
local v62 = target:FindFirstChild("HoverInfo"):WaitForChild("HoverName") local v65 = target:FindFirstChild("HoverInfo"):WaitForChild("HoverDesc")
and changed
elseif not target:FindFirstChild('HoverInfo') then
to
elseif target ~= nil and not target:FindFirstChild('HoverInfo') then
there is still some code that i need to fix, but its just the visible, tween code which is no problem for me.