|
Did you select that specific team?. |
|
|
|
ToolsToBeRemoved = {1,2,3,4,5}
for _,v in pairs(game.Players:GetChildren()) do
for _,i in pairs(ToolsToBeRemoved) do
if v.Backpack:FindFirstChild(i.Name) then
v.Backpack:FindFirstChild(i.Name):Remove()
end
end
end |
|
|
Do you want something such as a example template?. |
|
|
There's multiple methods of doing this, you could create a preset list of "lines" and use variables that increase each time a player chats until the variable reaches a certain limit and from there you could just have the text be replaced with that player's current chat message. |
|
|
An example would be something like,
game.Workspace.Part.Touched:connect(function(Toucher)
if Toucher.Parent:FindFirstChild("Humanoid") then
Player = game.Players:GetPlayerFromCharacter(Toucher.Parent.Name)
print(Player.Name)
end
end)
--The .Name may not be necessary in the parameters in :GetPlayerFromCharacter(). |
|
|
|
Try using,
newCharacter.Humanoid.Died:connect(died) |
|
|
TeamOne = game.Teams.TeamOne
TeamTwo = game.Teams.TeamTwo
if #TeamOne > #TeamTwo then
print("TeamOne has won!")
end |
|
|
local mouse = Game.Players.LocalPlayer:GetMouse()
local function onKeyDown( key )
if key:byte() == 48 then
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
end
end
mouse.KeyDown:connect(onKeyDown) |
|
|
As an example, assuming you already have the system for values set up,
ValueNameHere = ValuePathHere
Player.PlayerGui.ScreenGui.LeaderBoardPathHere.Text = Value.Value |
|
|
game.Players:GetPlayerFromCharacter(PlayerVariableHere).Character
Please give us a more detailed explanation of what you're trying to do with the script. |
|
|
I'm not necessarily sure whether this is going to benefit you or not however,
LevelText = GUIPathHere
SavedLevel = Instance.new("StringValue")
SaveddLevel.Value = LevelText
DefinedPlayer.Humanoid.Died:connect(function()
LevelText = SavedLevel.Value
end)
|
|
|
Use "Transparency" instead of "transparency". |
|
|
We'll be able to give you more accurate help once you show us the script. |
|
|
Try using this,
script.Parent.BackgroundColor3 = BrickColor.Random().Color |
|
|
Try changing it through that Player's PlayerGui. |
|
|
What exactly are you trying to use the mainframe for?. |
|
|
Then do you want it to check to see if a Player with that Name is in existence?. |
|
|
Do you mean such as using the "Run Script" button under "Test"?. |
|
|
|
|
Are you using this in "Roblox Studio"?. |
|
|
Is it inside of a LocalScript?. Also, where is the script located?. |
|
|
function onClick (Button)
Part321.Transparency = 0
wait(2)
Part321.Transparency = 1
wait(2)
Part321.Transparency = 0
end
game.Workspace.Button.ClickDetector.Clicked:connect(onClick)
Could you inform us of what "Part321" is?. |
|