I have been trying to make it so that whenever my fellow dev or I enter a server for the game, sparkles appear around our heads. So far, this is what I've got:
function ifDevEntered(player)
local dev = (
player.Name("DevSupremecy") or
player.Name("Dev_Noobity")
)
if dev then
local sparkle = Instance.new("Sparkles")
sparkle.Enabled = true
sparkle.Parent(player.Character.Head)
sparkle.SparkleColor(255, 0, 0)
end
end
I think I've got the API calls right, so I think the problem's with the IF-THEN statement.
LocalScript
:
01 | devs = { |
02 | "name1" , |
03 | "name2" , |
04 | "name3" , |
05 | "name4" |
06 | } |
07 |
08 | plr = game.Players.LocalPlayer |
09 | wait( 1 ) |
10 | local head = plr.Character:FindFirstChild( "Head" ) |
11 | for i = 1 , #devs do |
12 | if (string.lower(plr.Name) = = string.lower [ devs [ i ] )) then |
13 | local sparkles = Instance.new( "Sparkles" ,head) |
14 | sparkles.SparkleColor = Color 3. new( 255 / 255 , 0 / 255 , 0 / 255 ) |
15 | end |
16 | end |
Script
:
01 | devs = { |
02 | "name1" , |
03 | "name2" , |
04 | "name3" , |
05 | "name4" |
06 | } |
07 |
08 | game.Players.PlayerAdded:connect( function (plr) |
09 | wait( 1 ) |
10 | local head = plr.Character:FindFirstChild( "Head" ) |
11 | for i = 1 , #devs do |
12 | if (string.lower(plr.Name) = = string.lower(devs [ i ] )) then |
13 | local sparkles = Instance.new( "Sparkles" ,head) |
14 | sparkles.SparkleColor = Color 3. new( 255 / 255 , 0 / 255 , 0 / 255 ) |
15 | end |
16 | end |
17 | end ) |