Poll

print((CFrame.Angles(math.pi, 0, 0) * CFrame.new(0, 1, 0)).Y)

1
-1

Author Topic: [THREAD MOVED]  (Read 515625 times)

Oh yes, the best way to get a big YouTube career: TALK TO YOUR VEIWERS IN CHAT


random wannabe youtuber: "hello youtube this is xX_bl00gorilla_Xx"

half the loving server: "OMG HI YOUTUBE HEEHEEHEEHEE"

Oh yes, the best way to get a big YouTube career: TALK TO YOUR VEIWERS IN CHAT
ive seen youtubers play this game and they usually seem very uncomfortable with their fans following them like a horde of animals, they try to get away but they try to be nice about it. i feel just as uncomfortable watching the videos they make

Made this a while ago in Graphictoria. (2010 Roblox client)

« Last Edit: October 20, 2016, 07:07:50 AM by SuperMario444 »

Made this a while ago in Graphictoria. (2010 Roblox client)



Looks cool. You should post that at the already-existing Graphictoria thread to give it some discussion.

Looks cool. You should post that at the already-existing Graphictoria thread to give it some discussion.
Will do.

im having a problem when trying to add another variable to the script:

13:09:03.865 - Workspace.Slick-OS Wall.Slick-OS v4.Screen.SurfaceGui.Screen.D esktop.Music.CD_MC.Script:44: bad argument #3 to 'Text' (string expected, got nil)

this is the script, bold is the error line and italic is the new variables:
i think i pagestretched, this is the actual script.

soundsnames = {"The Final Countdown","Stressed Out", "Espionage", "Pac-Man Remix"}
soundids = {"http://www.██████.com/asset/?id=215350068", "http://www.██████.com/asset/?id=243372213", "http://www.██████.com/asset/?id=159145611","http://www.██████.com/asset/?id=313546942"}
artistsnames = {"Europe","21 pilots", " ", "Pac-Blox"}
player = script.Parent.Parent.Parent.P arent.Parent.Parent
player1 = script.Parent.Parent.Parent.P arent.Parent.Parent.Parent.Sp eaker.soundd
player2 = script.Parent.Parent.Parent.P arent.Parent.Parent.Parent.Sp eaker2.soundd
songs = #soundids
cursong = 1
status = false
vol = 0.5
pitch = 1

artists = #artistsnames
curartist = 1

script.Parent.Song.Text = soundsnames[cursong]
script.Parent.SongAuth.Text = artistsnames[curartist]
script.Parent.Pitch.Text = tostring(pitch)
script.Parent.Sound.Text = tostring(vol)
player.Sound.SoundId = soundids[cursong]
player.Sound.Pitch = pitch
player.Sound.Volume = vol
player.Sound.Looped = true
player1.Sound.SoundId = soundids[cursong]
player1.Sound.Pitch = pitch
player1.Sound.Volume = vol
player1.Sound.Looped = true
player2.Sound.SoundId = soundids[cursong]
player2.Sound.Pitch = pitch
player2.Sound.Volume = vol
player2.Sound.Looped = true

function UpSong()
   if cursong == songs then
      cursong = 1
   else
      cursong = cursong + 1
      curartist = curartist + 1
   end
   status = false
   player.Sound:stop()
   player1.Sound:stop()
   player2.Sound:stop()
   script.Parent.SongAuth.Text = artistsnames[curartist]
   script.Parent.Song.Text = soundsnames[cursong]

   player.Sound.SoundId = soundids[cursong]
   player1.Sound.SoundId = soundids[cursong]
   player2.Sound.SoundId = soundids[cursong]
   script.Parent.play.Text = "Play"
end

function DownSong()
   if cursong == 1 then
      cursong = songs
   else
      cursong = cursong - 1
      curartist = curartist - 1
   end
   status = false
   player.Sound:stop()
   player1.Sound:stop()
   player2.Sound:stop()
   script.Parent.SongAuth.Text = artistsnames[curartist]
   script.Parent.Song.Text = soundsnames[cursong]

   player.Sound.SoundId = soundids[cursong]
   player1.Sound.SoundId = soundids[cursong]
   player2.Sound.SoundId = soundids[cursong]
   script.Parent.play.Text = "Play"
end
-etc-


the syntaxes seem good, but i cant know what is wrong here
« Last Edit: October 20, 2016, 11:17:07 AM by BlocklandBlockoCity »

remove the empty name and the spaces between the strings;
instead of
Code: [Select]
artistsnames = {"Europe","21 pilots", " ", "Pac-Blox"}go for
Code: [Select]
artistsnames = {"Europe","21 pilots","Pac-Blox"}might help idk.

also remember that your object names (what you've named your bricks, guis and etc.) should not have a space in them
« Last Edit: October 21, 2016, 01:33:32 PM by Refticus »

replaced the empty string and it still doesnt work.
the error is in the line 63 and 44

So I nailed down how to make that ChatMakeSystemMessage API work in-game.

Put a LocalScript in StarterGui with this code:
function SendMessage()
local Text = workspace.NPCChat.Value

game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage", {
   Text = Text;
   Color = Color3.new(1,1,1);
   Font = Enum.Font.Code;
   FontSize = Enum.FontSize.Size18;
})
end

workspace.NPCChat.Changed:connect(SendMessage)


(Have a StringValue in workspace (or where ever you want it))


Have a brick that can change the value of the String with whatever input you want (I used touch):
function poke()
   script.Disabled = true
   workspace.NPCChat.Value = ("test")
   wait(2)
   script.Disabled = false
end

script.Parent.Touched:connect(poke)

and ba-bam you have a system that will send chat messages in-game!


i accidentally uploaded the same audio twice


(bottom one being the original)
i've emailed roblox about this
will they refund?



also some update broke the script for when the music changes when you touch a brick
« Last Edit: November 05, 2016, 12:41:11 PM by 77x5ghost2 »


13723763 <Profile

http://imgur.com/gallery/lUH0d <Finished cars for a friend's project

i plan to try replacing the vomit green fox beast with a red fox (red-white)
the only problem is that the shirt template has changed and i get a 404 when i try getting the template.
no nvm its now back.

Could submit the shirt and pants.
i also made some simplistic guns from scratch.
look how hes going

yeah i know, the arm positions suck

also i want to change the lower jaw's color to white, but it is almost impossible to know where to re-paint.

« Last Edit: November 08, 2016, 11:33:48 AM by BlocklandBlockoCity »