Hello! I was following a gnomecode tutorial to make a doors fangame and then I got this error on line 40.
local furniture = require(script.Furniture)
local room = {}
room.info = require(script.RoomInfo)
room.random = Random.new()
function room.GetRandom(prevRoom)
local totalWeight = 0
for i, info in pairs(room.info) do
totalWeight += info.Weight
end
local randomWeight = room.random:NextInteger(1, totalWeight)
local currentWeight = 0
local randomRoom = nil
for i, info in pairs(room.info) do
totalWeight += info.Weight
if randomRoom <= currentWeight then
randomRoom = workspace.Rooms[i]
break
end
end
function room.Generate(prevRoom)
local possibleRooms = workspace.Rooms:GetChildren()
local randomRoom = room.GetRandom(prevRoom)
local newRoom = randomRoom:Clone()
newRoom.PrimaryPart = newRoom.Entrance
newRoom:PivotTo(prevRoom.Exit.CFrame)
furniture.FurnishRoom(newRoom)
newRoom.Parent = workspace.GeneratedRooms
return newRoom
end
return room
the error is: âExpected âendâ (to close âfunctionâ to line 7), got ; did you forget to close âthenâ at line 18?â also what is and how do I pinpoint
Then I canât give you a solution for a tutorial youâre watching. Make sure you typed everything correctly and didnât accidentally skip parts of the video