Game is not a valid member of ReplicatedStorage "ReplicatedStorage"?

I’m currently having issues trying to require a Module, it shows the Game folder from RepliicatedStorage isn’t there, yet, it is?

And yes, I’m using a LocalScript.

image
image
image

local ReplicatedStorage = game:GetService("ReplicatedStorage")

local HoverCraftClient = require(ReplicatedStorage.Game.Module.HoverCraft.HoverCraftCore.HoverCraftClient)
1 Like

Try to reference it one by one. Like create a variable for the folder and then refer that variable for its contents.

1 Like

Why not use :WaitForChild? You can even add a timeout to it

1 Like