|
An example would be,
Player.PlayerGui.InfoGuiverGUI |
|
|
|
|
its still not working
here is the whole thing...
Spot1= Vector3.new(10,10,10)
Spot2= Vector3.new(30,30,30)
Spot3= Vector3.new(20,20,20)
--[[game.Players.PlayerAdded:connect(function()
local num = game.Players:GetPlayers() -- num is an array
if num[1] == nil then -- If there is no more than 1 Player in the array
script.Parent.Sound:Play()
wait(20)
script.Parent.Sound:Stop()
end
end)--]]
for i,v in pairs(game.Players:GetPlayers()) do
if v.TeamColor == BrickColor.new("White") then
v.Character:... |
|
|
WelcomeMessageParent = Instance.new("ScreenGui")
WelcomeMessage = Instance.new("TextLabel",WelcomeMessageParent)
game.Players.PlayerAdded:connect(function(Player)
WelcomeMessageParent.Parent = game.StarterGui
WelcomeMessage.Text = Player.Name.." ".."Has joined the game!"
wait(5) -- Increase this to the time you want before it disappears.
WelcomeMessageParent.Parent = nil
end)
|
|
|
Actually, to help you understand, I created a variable named "WelcomeMessageParent" and a second variable which was the actual "TextLabel" called "WelcomeMessage", I then used the PlayerAdded event which activates everytime a new "Player" is added into the table "Players", here's an example,
game.Players.PlayerAdded:connect(function(Player)
print("A new "Player" has joined the game"!.)
end) |
|
|
TeamOne = game.Teams.TeamNameHere
for _,v in pairs(game.Players:GetPlayers()) do
if v.TeamColor == TeamOne.TeamColor then
v.Name.Character:MoveTo(Spot1)
end
end |
|
|
No thank you, this is voluntary. |
|
|
No, using something like,
if v.TeamColor == game.Teams.TeamNameHere.Teamcolor then
end
will already retrieve and match the TeamColors. |
|
|
|
There's multiple ways to do this actually, an example would be,
ModelTable = game.Workspace.ModelTable:GetChildren()
print(ModelTable[math.random(1,#ModelTable).Name]) |
|
|
Did you get the textureid via properties in Roblox Studio?. |
|
|
In a LocalScript you could use something such as,
wait(3)
LocalCharacter = game.Players.LocalPlayer.Character
LocalPlayer = game.Players.LocalPlayer
LocalPlayer.PlayerGui.GUINameHere.MouseButton1Click:connect(function()
LocalCharacter.Torso.BrickColor = BrickColor.Random()
end)
--In the above example, the variable "LocalPlayer" refers to the player the LocalScript is retrieving via game.Players.LocalPlayer
--BrickColor.Random() simply sets the Player's "Torso" to a random BrickColor
--PlayerGui... |
|
|
Set the MaxActivationDistance to 0. |
|
|
That would work also, good suggestion. |
|
|
|
p.Character.Humanoid.Died:connect(function()
end) |
|
|
p.PlayerRemoving:connect(function()
end)
Try that. |
|
|
Well, let's pretend that you were telling someone Hello, well, in this case, I want output to print or tell me Hello, If I typed out print(Hello), output would think that I'm referring to something, such as a variable with a stored value, however, for example, if I typed out something like print("Hello") that would tell the engine that I only want it to read what's inside the double quotation marks without executing any other kind of special commands other then just "printing" out Hello, there's... |
|
|
Additionally, Hello can be used as a variable to refer to a string. |
|
|
Efficiency is really a matter of personal opinion on this subject, some think that less work and quicker accuracy are "efficient", others believe that more work and more "effective" methods are "efficient", it all depends on what you're trying to create, how you're trying to create it and the result you want to achieve. |
|
|
There's a free online explanation guide on the official lua.org website, it offers plenty of information for "regular" Lua. |
|
|
There wasn't anything wrong with using the term regular, I was simply using the quotation marks because the person's definition of "regular" could vary. |
|
|
Inside the script, you misspelled "Humanoid" as "Humaniod". |
|
|
To explain my previous suggestion more clearly, an example would be,
game.Workspace.Part.ClickDetector.MouseClick:connect(function()
game.Workspace.Part.ClickDetector.MaxActivationDistance = 0
wait(SecondsHere)
game.Workspace.Part.ClickDetector.MaxActivationDistance = 32
end) |
|