A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
naknak
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
Supernapalm
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
m27frogy
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
slayer9365
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
myrco919
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
branefreez
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
ninga95
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
CloneTrooper787
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
raboy117
Script with error somewhere ..... Vote_lcapScript with error somewhere ..... Voting_barScript with error somewhere ..... Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Script with error somewhere ..... EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Script with error somewhere ..... EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Script with error somewhere ..... EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Script with error somewhere ..... EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Script with error somewhere ..... EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Script with error somewhere ..... EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Script with error somewhere ..... EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Script with error somewhere ..... EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Script with error somewhere ..... EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Script with error somewhere ..... EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Script with error somewhere ..... EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Script with error somewhere ..... EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Script with error somewhere ..... EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Script with error somewhere ..... EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Script with error somewhere ..... EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Script with error somewhere ..... EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Script with error somewhere ..... EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Script with error somewhere ..... EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Script with error somewhere ..... EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Script with error somewhere ..... EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Script with error somewhere .....

Go down 
AuthorMessage
Guest
Guest
avatar



Script with error somewhere ..... Empty
PostSubject: Script with error somewhere .....   Script with error somewhere ..... EmptyDecember 18th 2010, 4:47 pm

Code:
function onChatted(message)

if message = "SC" then

decal = Instance.new."Decal"
decal.Parent = script.Parent
decal.Texture = "http://www.roblox.com/asset/?id=40867049"
decal.Face = Front

elseif message = "SC in" then

decal:remove ()

end
end
end

game.Players.getChildren.Message:connect(onChatted)

what im trying to do is when someone says 'SC' i want a decal to appear on a brick and when someone says 'SC in' for the decal to disappear. probs a basic error in either the connection line or that i didnt say who can say 'SC' or 'SC in'.
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyDecember 18th 2010, 6:44 pm

function onChatted(message)

if message = "SC" then
local fd = script.Parent:FindFirstChild("Decal")
if fd == nil then
local decal = Instance.new."Decal"
decal.Parent = script.Parent
decal.Texture = "http://www.roblox.com/asset/?id=40867049"
decal.Face = Front
end
elseif message = "SC in" then

local fdecal = script.Parent:FindFirstChild("Decal")
if fdecal ~= nil then
fdecal:remove ()
end
end
end
game.Players.PlayerAdded:connect(function(pl)
pl.Chatted:connect(onChatted)
end)
Back to top Go down
Guest
Guest
avatar



Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyDecember 19th 2010, 9:08 am

ty ill try tht - dosn't work..... ty for trying


Last edited by Jaredwg on December 19th 2010, 9:11 am; edited 1 time in total (Reason for editing : feedback)
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyDecember 21st 2010, 6:38 am

I see the error:
Code:

function onChatted(message)

if message = "SC" then
local fd = script.Parent:FindFirstChild("Decal")
if fd == nil then
local decal = Instance.new("Decal")
decal.Parent = script.Parent
decal.Texture = "http://www.roblox.com/asset/?id=40867049"
decal.Face = Front
end
elseif message = "SC in" then

local fdecal = script.Parent:FindFirstChild("Decal")
if fdecal ~= nil then
fdecal:remove ()
end
end
end
game.Players.PlayerAdded:connect(function(pl)
pl.Chatted:connect(onChatted)
end)
Back to top Go down
Guest
Guest
avatar



Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyDecember 21st 2010, 5:33 pm

still no - ty 4 tryin again - all i can find in difference is brackets lol
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyDecember 26th 2010, 4:19 am

i hope this works!

Code:

function onChatted(message)

if message = "SC" then
local fd = script.Parent:FindFirstChild("Decal")
if fd == nil then
local decal = Instance.new("Decal")
decal.Parent = script.Parent
decal.Texture = "http://www.roblox.com/asset/?id=40867049"
decal.Face = Front
end
elseif message = "SC in" then

local fdecal = script.Parent:FindFirstChild("Decal")
if fdecal ~= nil then
fdecal:remove ()
end
end
game.Players.PlayerAdded:connect(function(pl)
pl.Chatted:connect(onChatted)
end)
Back to top Go down
Guest
Guest
avatar



Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyJanuary 31st 2011, 12:47 pm

sorry - havn't been on site for ages - i think i might of deleted the brics but all i has to do is put 1 in and put script in..... nope didnt work again!
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... EmptyFebruary 11th 2011, 6:19 am

Code:

function onChatted(message)

if message = "SC" then
local fd = script.Parent:FindFirstChild("Decal")
if fd == nil then
local decal = Instance.new("Decal")
decal.Parent = script.Parent
decal.Texture = "http://www.roblox.com/asset/?id=40867049"
decal.Face = Front
end
elseif message = "SC in" then

local fdecal = script.Parent:FindFirstChild("Decal")
if fdecal ~= nil then
fdecal:remove ()
end
end
end
game.Players.PlayerAdded:connect(function(pl)
pl.Chatted:connect(onChatted)
end)



I forgot an end b4 *facenuke*
Back to top Go down
Sponsored content





Script with error somewhere ..... Empty
PostSubject: Re: Script with error somewhere .....   Script with error somewhere ..... Empty

Back to top Go down
 
Script with error somewhere .....
Back to top 
Page 1 of 1
 Similar topics
-
» My Script error
» Fun, fun....error -.-
» Another C++ Script
» My first script *morph*
» The Local Script: A Robloxian's Worst Nightmare

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Questions and Help :: Scripting-
Jump to: