here is the local script: ```local Button = game.StarterGui.ScreenGui.TextButton
local Player = game.Players.LocalPlayer
Button.MouseButton1Click:Connect(function()
game.ReplicatedStorage.DropName:FireServer(Player)
end)Here is the regular script:game.ReplicatedStorage.DropName.OnServerEvent:Connect(function(Player)
print("Test")
end)```
** You are now Level 3! **
