AnonyAnonymous
#139524916Monday, July 07, 2014 12:54 PM GMT

It's good that he can discover different methods of scripting, though.
AnonyAnonymous
#139525171Monday, July 07, 2014 1:00 PM GMT

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.
AnonyAnonymous
#139525279Monday, July 07, 2014 1:03 PM GMT

while wait() do if game.Players.NumPlayers == 4 then --Code Here else --More Code Here end end
AnonyAnonymous
#139525475Monday, July 07, 2014 1:07 PM GMT

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.
AnonyAnonymous
#139525932Monday, July 07, 2014 1:18 PM GMT

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
AnonyAnonymous
#139526023Monday, July 07, 2014 1:20 PM GMT

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)
AnonyAnonymous
#139526793Monday, July 07, 2014 1:36 PM GMT

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
AnonyAnonymous
#139526990Monday, July 07, 2014 1:39 PM GMT

Why don't you explain the hierarchy?.
AnonyAnonymous
#139528041Monday, July 07, 2014 1:55 PM GMT

Try adding a check to make sure the GUI is in existance.
AnonyAnonymous
#139528324Monday, July 07, 2014 1:59 PM GMT

A combination of both?.
AnonyAnonymous
#139528446Monday, July 07, 2014 2:00 PM GMT

Add a check to make sure "hit" actually belongs to a player.
AnonyAnonymous
#139528886Monday, July 07, 2014 2:06 PM GMT

Any more errors?.
AnonyAnonymous
#139529278Monday, July 07, 2014 2:12 PM GMT

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
AnonyAnonymous
#139529380Monday, July 07, 2014 2:13 PM GMT

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")
AnonyAnonymous
#139530519Monday, July 07, 2014 2:31 PM GMT

Have you tried adding a check to make sure "boomhit" is actually a part of a player's character?.
AnonyAnonymous
#139531075Monday, July 07, 2014 2:40 PM GMT

Is the LocalScript in an area where it can extend it's capabilities globally?.
AnonyAnonymous
#139531333Monday, July 07, 2014 2:44 PM GMT

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
AnonyAnonymous
#139531379Monday, July 07, 2014 2:44 PM GMT

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
AnonyAnonymous
#139533789Monday, July 07, 2014 3:19 PM GMT

There's plenty of good sites for learning lua, you'll just have to look around.
AnonyAnonymous
#139540501Monday, July 07, 2014 4:44 PM GMT

Try removing the grenade:Destroy().
AnonyAnonymous
#139540753Monday, July 07, 2014 4:47 PM GMT

Various methods.
AnonyAnonymous
#139541162Monday, July 07, 2014 4:51 PM GMT

An example would be, if 1+1 == 2 or 2+2 == 4 then print("Correct!") end Otherwise, yes, your example should work.
AnonyAnonymous
#139541235Monday, July 07, 2014 4:52 PM GMT

You made a slight error on the last line, though.
AnonyAnonymous
#139542002Monday, July 07, 2014 5:01 PM GMT

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
AnonyAnonymous
#139542456Monday, July 07, 2014 5:06 PM GMT

Is "Announcements" in the StarterGui?. This is rather interesting.