Help with how to fix gnomecode doors scripting tutorial

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

please somebody help me i want to finish my game

You never specified what the error is. It would also be helpful if you could pinpoint line 40.

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

there were arrows at the end and beginning of the word before the " ; " so that didn’t show up somehow

You forgot an end right where I put the comment,

WHY DOES e of NOT WORK (without the space between e and o)

oh yeah i did!! thank you for showing me how to fix!!

1 Like

uh oh there’s another problem

oh oops that’s not your script hang on

i can’t get the reply back so i’ll just say that it was the exact same script and that i said oopsie doopsie

image
randomRoom is nil. You never set it before checking for currentWeight.

I’m just following the tutorial man, I’m not the guy that made the tutorial.

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

okay, well thanks for trying to help me anyway.

If he fixed your old issue, mark his response as a solution so the topic can close.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.