You can write your topic however you want, but you need to answer these questions:
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried to look for it on developer hub. but I couldn’t find any.
i would really appreciate it if you could help me with that.
I want to make an script where if you say /e ui. you become ultra instinct. and i use it as require script.
But the error shows up and it said “Attempt to connect failed: Passed value is not a function”
and here is my script.
print("IceyTamim's UI Script Loaded. Say /e ui to become ultra instinct! Its for IceyTamim Only!")
local allowed = {"IceyTamim"}
game.Players.PlayerAdded:Connect(function(player)
for i, v in pairs(allowed) do
if player.Name == v then
player.Chatted:Connect(function(msg)
if string.sub(msg, 0,1) == "/" then
if string.sub(msg, 2) == "e ui" then
require(6297170890).load(player.Name)
end
end
end)
end
end
end)
game.Players.PlayerAdded:Connect()
Disclaimer: Remember. If you say that I need to search for these topic or there is already topic of it. It wont work because i tried it out and it didn’t work. So how about you help me with it? Thanks.