|
It's good that he can discover different methods of scripting, though. |
|
|
Good to see that you found a method that works sufficiently for you, I would suggest that you keep using it as much as you want. |
|
|
while wait() do
if game.Players.NumPlayers == 4 then
--Code Here
else
--More Code Here
end
end |
|
|
If you're aware that it's really as "simple" as you state it is, you would have an accurate enough understanding of it's simplicity to come up with your own version. |
|
|
Camera = game.Workspace.CurrentCamera
Camera.CameraType = "Scriptable"
--While this won't exactly trap them in first person, when a LocalScript containing this is placed in somewhere such as the StarterPack or StarterGui, it will globally effect each player.
More on this can be found here,
http://wiki.roblox.com/index.php?title=Camera_manipulation |
|
|
The reason why it's printing nil because is because it's not a "String", the engine thinks your referring to another variable and that variable has the value of "nil" if nothing is assigned to it, try this,
one = "loppyface"
two = "iLikeToBeCooI"
print(one,two)
|
|
|
while wait() do
for k,p in pairs(game.Players:GetPlayers()) do
if p.PlayerGui:FindFirstChild("Announcements") then
p.PlayerGui.Announcements.Waiting.Visible = true --This Line
end
end
end
|
|
|
Why don't you explain the hierarchy?. |
|
|
Try adding a check to make sure the GUI is in existance. |
|
|
|
Add a check to make sure "hit" actually belongs to a player. |
|
|
|
while wait() do
for k,p in pairs(game.Players:GetChildren()) do
if game.Players.NumPlayers >=4 then
print ("GAME PLAYER COUNT IS READY")
else
print ("GAME PLAYER COUNT ISN'T READY")
end
if p.PlayerGui.Announcements ~= nil then
p.PlayerGui.Announcements.Waiting.Visible = true
end
end
end |
|
|
local defaultsettings = game.Workspace.BuildingPlates:findFirstChild("Plate"..a.Value).BrickColor
local defaultsettings = BrickColor.new("Black")
Or
local defaultsettings = game.Workspace.BuildingPlates:findFirstChild("Plate").BrickColor
local defaultsettings = BrickColor.new("Black") |
|
|
Have you tried adding a check to make sure "boomhit" is actually a part of a player's character?. |
|
|
Is the LocalScript in an area where it can extend it's capabilities globally?. |
|
|
function fadeTo(a, b, c)
for transparency = a, b, c do
for _, part in pairs(player.Character:GetChildren()) do
if part:IsA("BasePart") then
part.Transparency = transparency
end
end
wait(0.1)
end
end
fadeTo(0, 1, 0.1) --fade out,
player.Character.Torso.CFrame = CFrame.new(target) --teleport the player
fadeTo(1, 0, -0.1) --fade back in |
|
|
Oops,
function fadeTo(a, b, c)
for transparency = a, b, c do
target = Vector3.new(53.593, 0.59, 61.11) --...and this
for _, part in pairs(player.Character:GetChildren()) do
if part:IsA("BasePart") then
part.Transparency = transparency
end
end
wait(0.1)
end
end
fadeTo(0, 1, 0.1) --fade out,
player.Character.Torso.CFrame = CFrame.new(target) --teleport the player
fadeTo(1, 0, -0.1) --fade back in |
|
|
There's plenty of good sites for learning lua, you'll just have to look around. |
|
|
Try removing the grenade:Destroy(). |
|
|
|
An example would be,
if 1+1 == 2 or 2+2 == 4 then
print("Correct!")
end
Otherwise, yes, your example should work. |
|
|
You made a slight error on the last line, though. |
|
|
while wait() do
for k,p in pairs(game.Players:GetChildren()) do
if game.Players.NumPlayers >=4 then
print ("GAME PLAYER COUNT IS READY")
else
print ("GAME PLAYER COUNT ISN'T READY")
end
if p.PlayerGui.Announcements ~= nil and p.PlayerGui.Announcements:FindFirstChild("Waiting") then
p.PlayerGui.Announcements.Waiting.Visible = true
end
end
end
|
|
|
Is "Announcements" in the StarterGui?. This is rather interesting. |
|