Game Not Picking Up Remote Event In ReplicatedStorage

]

I’m Trying To Make A 2D Platformer And I’m Cloning The Level Over But For Some Reason It’s Not Picking The RemoteEvent Up, Is This Roblox Side Or What?

Type it out manually and test if it fires something easy like a print statement or something.

I Keep Getting This Error

ServerScriptService.MainFolder.LevelStuff.CloneForPlayers:1:
attempt to index function with ‘FireServer’

game.ReplicatedStorage.Events.Clone:FireServer()


game.ReplicatedStorage.Events.Clone.OnServerCvent:Connect(function()
	
	print("Fired")
	
end)

It May Be Roblox Side

I Named It “Clone” It Bugged Out Roblox

It’s because Clone is a function (i.e. part:Clone()). that’s why you got attempt to index function with ‘FireServer’.

Yeah I Noticed That, I Should Of Tested With Different Names, But Thx