HOW TO CREATE A WHITELIST SCRIPT FOR UTG! | (Roblox - Studio)

Опубликовано: 27 Февраль 2026
на канале: CalumHD
52,497
874

In today's video, I will showcase you guys on how to create a whitelist script for "Ultimate Trolling GUI" or give "Ultimate Trolling GUI" to specified players only.

Subscribe here:    / @calumhd  

Cloudsy:    / @izaiah7708  


----------------------Script------------------------/ -------------------Instructions----------------
NOTE: Changing stuff from the script may cause it to not work.


Whitelist code instructions:
1st: Create a local script and put it in AccessUI in MainModule
2nd: Insert the code below into the local script
3rd: Put the names of the players you allow in the Name area.

--Code Below

script.Parent.Main.Visible = false
script.Parent.TextButton.Visible = false
local player = game.Players.LocalPlayer
local AllowedPlayers = {'Name','Name','Name'}

for i = 1, #AllowedPlayers do
if player.Name == AllowedPlayers[i] then
script.Parent.Main.Visible = true
script.Parent.TextButton.Visible = true
end
end

#CalumArmy