|
| 25 Nov 2015 02:32 AM |
How would you make all character white as they entered the game ("Quill grey")
Also, How would you add a certain hat to a certain team and how would you assign certain point lights to a player
Such as a red point light for red team and blue for blue
SlowedMotion - add 16K posts |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:35 AM |
| these are all really easy concepts, learn lua and do it yourself, and then learn more lua and do more cool things |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:37 AM |
Whats in it for me?
-|| Don't walk the path someone else made, build your own. ||- |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:37 AM |
Some1 teach me
SlowedMotion - add 16K posts |
|
|
| Report Abuse |
|
|
| |
|
|
| 25 Nov 2015 02:37 AM |
Uh, small amount of R$? like 100. Since these are fairly easy
SlowedMotion - add 16K posts |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:41 AM |
b
SlowedMotion - add 16K posts |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:45 AM |
They are all pretty simple. Here is the one for changing the body color when a player enters the game:
game.Players.PlayerAdded:connect(function(player) workspace[player.Name]["Body Colors"].RightArmColor = BrickColor3.new("Quill grey") workspace[player.Name]["Body Colors"].LeftArmColor = BrickColor3.new("Quill grey") workspace[player.Name]["Body Colors"].TorsoColor = BrickColor3.new("Quill grey") workspace[player.Name]["Body Colors"].RightLegColor = BrickColor3.new("Quill grey") workspace[player.Name]["Body Colors"].LeftLegColor = BrickColor3.new("Quill grey") workspace[player.Name]["Body Colors"].Head = BrickColor3.new("Quill grey") end)
I won't do the others for you because its late here and I have just had exams. I suggest looking these things up on the roblox wiki they are actually really basic. But have this one free of charge. (It probably works, I didn't test it.)
-|| Don't walk the path someone else made, build your own. ||- |
|
|
| Report Abuse |
|
|
Cmaj7
|
  |
| Joined: 28 Dec 2008 |
| Total Posts: 36653 |
|
|
| 25 Nov 2015 02:45 AM |
I could script this
11 months ago
its really easy tho
do it urself
"Salinas23 / C Major Seventh" R$37,123 |
|
|
| Report Abuse |
|
|
Cmaj7
|
  |
| Joined: 28 Dec 2008 |
| Total Posts: 36653 |
|
|
| 25 Nov 2015 02:48 AM |
@Cold
that wouldnt work cuz player is loaded before character plus thats uneffective as hell
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) for a, b in pairs(char:GetChildren()) do if a[char:GetChildren())].IsA("Part") then a.BrickColor = BrickColor.new("Quill Grey") wait() else end end) end)
"Salinas23 / C Major Seventh" R$37,123 |
|
|
| Report Abuse |
|
|
Cmaj7
|
  |
| Joined: 28 Dec 2008 |
| Total Posts: 36653 |
|
|
| 25 Nov 2015 02:49 AM |
Im rly surprised I remember so much of this stuff
"Salinas23 / C Major Seventh" R$37,123 |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:50 AM |
cmaj, that didnt work wither, lol
SlowedMotion - add 16K posts |
|
|
| Report Abuse |
|
|
Cmaj7
|
  |
| Joined: 28 Dec 2008 |
| Total Posts: 36653 |
|
|
| 25 Nov 2015 02:51 AM |
I have a small mistake on the loop statement
it's something rly simple I just dont know what is it
but its rly close
fix it
"Salinas23 / C Major Seventh" R$37,123 |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:53 AM |
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) for a, b in pairs(char:GetChildren()) do if b.IsA("Part") then b.BrickColor = BrickColor.new("Quill Grey") wait() else end end) end) |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:56 AM |
None of em' work! lol
SlowedMotion - add 16K posts |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 02:59 AM |
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) wait(1) for a, b in pairs(char:GetChildren()) do if b:IsA("Part") then b.BrickColor = BrickColor.new("Quill Grey") wait() end end end) end)
k now go make the rest on ur own |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2015 03:05 AM |
Ehhh... Sorry I should really go to sleep.
-|| Don't walk the path someone else made, build your own. ||- |
|
|
| Report Abuse |
|
|