I did this StarterGui>ScreenGui>ImageButton>Script here´s the script
script.Parent.MouseButton1Down:connect(function() game.ServerStorage.LightningWand:Clone().Parent = player.Backpack end)
What the script is supposed to do is to give the player the Lightning wand that it´s on ServerStorage but it´s not working anybody knows what I did wrong?
Don't place it in the ServerStorage. The only place you can put it in is Lighting or ReplicatedStorage. ServerStorage is for server-sided things, like maps and stuff. Instances that the Player doesn't use. Put the tool in Lighting, or ReplicatedStorage, change the script, and it should work.
Lighting is bad. Use ReplicatedStorage, it works both ways. Plus, it's more organized :)