#force chat bubble

52 messages · Page 1 of 1 (latest)

vast quail
#

How do I force chat player when I say like: force everyone (or just one player) and then they all say a sentence that I write

#

Like I say "force everyone" and then they all say: good evening

#

Or Hello.

vast quail
#

I still don't understand

#

My script knowledge is 0.1%

pliant yarrowBOT
#

studio** You are now Level 5! **studio

vast quail
#

Kinda

#

Ok ight

#

It's 7pm for me

light vault
#

holdon

#

lemme cook

vast quail
#

Ifht

#

Ight

light vault
#

game:GetService("TextChatService"):DisplayBubble(game.Workspace.<playermodelname>.head, "Hello world!")

#

iunno i just used the new chat service

vast quail
#

So do I put in starter player?

#

As I said my script knowledge is 0.1%

light vault
#

how do you want that to trigger?

vast quail
#

Idk

light vault
#

i mean i cant rlly make anything with that

vast quail
#

Oh

#

With script?

light vault
#

yeah

#

what do you want to trigger that to happen

vast quail
#

Maybe when you say in chat force?

light vault
#

!chat all "message"

vast quail
#

Yeah

light vault
#

alr but I can't rlly work on it rn im tryna make somethin

vast quail
light vault
#

i suggest you learn scripting, ik its annoying for me to say but its ur best option

vast quail
#

I watched like 100 of those tutorials and learned nothin

light vault
#

jus learn what you need to learn

#

look up "how to use chatservice" on yt

#

also learn if statements and basic syntax

#

its required

vast quail
#

I'll try...

light vault
#

persevere*

vast quail
# light vault the reward is great for those who can perservere

local commandPrefix = "force" "force everyone"
local sentence = "Hello"

game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(message)
if message:lower() == commandPrefix then
for _, otherPlayer in pairs(game.Players:GetPlayers()) do
local bubble = Instance.new("BillboardGui")
bubble.Parent = otherPlayer.Character.Head
bubble.Adornee = otherPlayer.Character.Head
bubble.Size = UDim2.new(0, 200, 0, 50)
bubble.StudsOffset = Vector3.new(0, 3, 0)
bubble.AlwaysOnTop = true

            local textLabel = Instance.new("TextLabel")
            textLabel.Parent = bubble
            textLabel.Size = UDim2.new(1, 0, 1, 0)
            textLabel.BackgroundTransparency = 1
            textLabel.Text = sentence
            textLabel.TextColor3 = Color3.new(1, 1, 1)
            textLabel.FontSize = Enum.FontSize.Size18
        end
    end
end)

end)

#

But its not working

#

@vast quail

light vault
#

Thats not the way to go

vast quail
#

Yes

#

I learned it

#

But Its not working

light vault
#

Good job

#

Ill be on later

#

but rn I can't

#

Im glad you took my advice

#

just like give me an hour