Script support needed

game.Players.PlayerAdded:Connect(function(player)
	local admin = player.PlayerGui:WaitForChild("Essentials Client")["Base Clip"].Container
	local place = admin:WaitForChild("Notif Clone").Inner
	local corner = Instance.new("UICorner", place)
end)

Everything in the script is fine but the uicorner part, im trying to create a new uicorner with instance.new and parent it to “place(the variable)” however when going into game it doesnt parent the uicorner to “place”

Try

local corner = Instance.new(“UICorner”)
corner.Parent = place

tried that, still doesn’t work

Is this a LocalScript or a Script?

script, not localscript

Is there anything in logs?

no (20 carsssssssssssss)

Try without WaitForChild.

tried, doesnt work (20)

Usage of this script?

? (20 carsssssssssss)

What are you trying to do with this script?

I have basic admin essentials, I’m trying to add a curve in the GUI

This might not be the most efficient method.

Modifying BAE UIs - Tutorial - Cookie Tech (thecookie.dev)

2 Likes

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