For Flight Point in Roblox, whitelisting usually means allowing only specific players to use a feature or build on a plot. The common setup is a list of allowed UserIds or usernames, then checking that list when the player joins or tries to use the feature.

Simple whitelist setup

A typical Roblox whitelist script looks like this:

lua

local whitelist = {
    123456789,
    987654321
}

game.Players.PlayerAdded:Connect(function(player)
    if table.find(whitelist, player.UserId) then
        print(player.Name .. " is whitelisted")
    else
        print(player.Name .. " is not whitelisted")
        -- optional: kick, block UI, disable flight, etc.
    end
end)

That pattern matches the Roblox whitelist examples found in public tutorials and the Flight System documentation, which uses a WhiteList table of allowed UserIds.

If you mean Flight Point specifically

There is also a Roblox “Flightpoint” guidelines page, but it is about plot/build responsibility and player permission rules rather than a code whitelist system. In many Roblox games, “whitelist” is implemented inside the game script, not through a special built-in setting.

What to change

  • Use UserIds , not display names, because usernames can change.
  • Put the allowed IDs in a table like WhiteList = { ... }.
  • Check the player when they join, or when they try to use flight.

Example for flight access

If the flight system has a config module, it may already support:

lua

WhiteList = { 123456789, 987654321 }

An empty whitelist often means everyone can fly.

Roblox Studio steps

  1. Open the flight script or config module.
  2. Find the WhiteList table.
  3. Add the UserIds of the players you want to allow.
  4. Save and test in Studio.
  5. If needed, add a fallback that blocks non-whitelisted players from starting flight.

Common mistake

A lot of tutorials use player names, but that is less reliable than UserIds because names can change. If the system is meant to be secure, UserIds are the safer choice.

Example in practice

If your friend’s UserId is 123456789, your config can be:

lua

WhiteList = { 123456789 }

Then only that account can use the flight feature if the script checks the list properly.

TL;DR: In Flight Point Roblox, whitelist access is usually done by adding allowed UserIds to a whitelist table and checking that list when the player joins or uses flight.