Rendering is paused for debugging

Script:
–Variables–

local TycoonModel = script.Parent.Parent
local Items = {}
local Boughtltems = TycoonModel:FindFirstChild(“Boughtltems”)
local Buttons = TycoonModel:FindFirstChild(“Buttons”)
local DropperParts = TycoonModel:FindFirstChild(“DropperParts”)
local Mainltems = TycoonModel:FindFirstChild(“Mainltems”)
local Scripts = TycoonModel:FindFirstChild(“Scripts”)
local Values = TycoonModel:FindFirstChild(“Values”)

– Owner Functions – sadasd

Mainltems.OwnerDoor.MainDoor.Touched:Connect(function(Hit)
if Hit.Parent:FindFirstChild(“Humanoid”) and Values.OwnerValue.Value == nil then
local Player = game.Players:GetPlayerFromCharacter(Hit.Parent)
Values.OwnerValue.Value = Player
Mainltems.OwnerDoor.MainDoor.SurfaceGui.TextLabel.Text = Values.OwnerValue.Value…" Tycoon"
end
end)

What’s the question?

It says rendering is paused for debugging.

Can you send a screenshot of the script editor?

image
Right-click this dot and select “Delete Breakpoint”

Breakpoints are used for debugging and I think you accidentally created one.

I don’t see any. I am not playing right now.

It seems that you have removed it or it’s just not appearing, but it was shown on your first screenshot on line 22
image

Try testing again and see if it still happens?

This is what shows up:

Stop the test and see if the red dot appears in the script editor on line 22
You’re in debug mode.

It still won’t work. I do not understand why.

Can you stop the game test and see if the red dot on the left of the script editor appears?

No, noting appears. it shows nothing at all.

I can’t find any mistake. I don’t understand why that is showing.

Can you send another screenshot with the script open?
It has nothing to do with the script you wrote it’s a button in the editor

When I play it, this comes up in the script:

Send a screenshot with the game test stopped

Try simply creating a new script and copy-paste the code over and then delete this one