Beautiful Hair for Beautiful People.
How would I make it so that all of the players and their character use this code:
local Players = game.Players:GetChildren()
local NumPlayers = #Players
print(NumPlayers) --I like checking for stuff
if NumPlayers > 0 then
print(Players.CFrame)
Players.Character.Torso.CFrame = CFrame.new(X,Y+5,Z)
local Backpack = Players.Backpack
local newG = Flux1:clone()
newG.Parent = Backpack
wait(30)
Players.PlayerGui.ScreenGui.Frame.Visible = true
Players.Character.Humanoid.Health = 0
end |