So, i hop on studio after a day of not being on and i get this really weird error?
I don’t know what it means, but I think it has something to do with the module scripts I created using the EzVisuals Module ???
Here’s one of the scripts I am using:
local rs = game:GetService("ReplicatedStorage")
local ezVisuals = require(rs:WaitForChild("EasyVisuals"))
local part = game.Workspace:WaitForChild("CollisionBox"):WaitForChild("PvpTeleporter")
local part2 = part:WaitForChild("TextPart"):WaitForChild("Attachment"):WaitForChild("BillboardGui")
local text = part2:WaitForChild("Text")
local textAnimNew = ezVisuals.new(text, "DeathStroke", 0.3, 1)
Thank you so much for trying to help! Stay safe y’all.
local rs = game:GetService("ReplicatedStorage")
local ezVisuals = require(rs:WaitForChild("EasyVisuals"))
--Instances
local uiObject = script.Parent
local InventoryTitle = script.Parent.TitleAndExitFrame
--local frameNew2 = ezVisuals.new(uiObject, "IceStroke", 0.5, 3, false, Color3.fromRGB(179, 213, 255))
local TitleColornew = ezVisuals.new(InventoryTitle.title, "Ghost", 0.7, 2)
local GradientColornew = ezVisuals.new(uiObject, "Shine", 0.5, 4)
--local GradientColornew2 = ezVisuals.new(uiObject.exitFrame.exit, "Ghost", 0.7, 2)
local GradientColornew2 = ezVisuals.new(InventoryTitle.exitFrame, "Shine", 0.7, 2)
local rs = game:GetService("ReplicatedStorage")
local ezVisuals = require(rs:WaitForChild("EasyVisuals"))
--Instances
local uiObject = script.Parent.TitleAndExitFrame
local InventoryTitle = uiObject.title
local Gradientnew = ezVisuals.new(uiObject, "Ghost", 0.8)
local TitleColornew = ezVisuals.new(InventoryTitle, "Silver", 0.2)
Requested model experienced an error while loading generally signifies that there’s an issue with the module you’re using rather than the script you’re using it from. I’ve never used ezVisuals myself and looking at the scripts over textpad I don’t see where the singleton error is being thrown from, but I thought I’d give that to help others who might be able to help (it can also very easily mean you’re not calling something correctly, but it doesn’t look like that’s the case)
I don’t know. This is so weird, I only have your modulescript and I know that the other modulescripts are not causing the problem because it wasn’t there before. When i disable all of the Ui script, the error still exists. When i disable the ezVisuals modulescripts, it is still there???
this is all i got
Infinite yield possible on 'ReplicatedStorage:WaitForChild("EasyVisuals")'
The errors still persist, probably meaning that it isn’t from your modulescript. However, i tried disabling the other ModuleScripts, but the errors are still there. Weird…?
Reinstalling Roblox Studio did nothing, and the error still pops up on both client and server side. It’s also messing with my scripts somehow, making events run more than once.
I haven’t updated the plugin in a few years but it should not be injecting or editing anything into your games except for setting waypoints in changehistoryservice, I’ll take a look into the plugin and see what’s wrong asap.