Posted
I need a script written in Lua that kicks the player if he writes a specific word. (In chat!)
2+2=5.
Replied
Like making a game or a hack.
Cancel
Post
modifying a ui and calling it yours does mean it's your ui.
- JalapenoGuy
https://media.discordapp.net/attachments/769992459916017687/1065084754128539658/image0.jpg
Replied
^^^^ Check that never tried to make one but could be possbile
Cancel
Post
https://media.discordapp.net/attachments/1010636204225601659/1012865624797610044/sKQybOLT.gif
Replied
Is it possible to edit a script which someone else made and make it so that the whole server sees what u place/do? cuz i got this long script for appocalyspe rising but sadly my friend cant see what i place unless its a vehicle and i get in it, then he can see it
Cancel
Post
Replied
here's a quick and readable script i made. tell me if it has issues
local filter = nil
local nilRep = ''
local blacklistedWords = {
'poop'
}
-- for string patterns (for filter) https://developer.roblox.com/en-us/articles/string-patterns-reference
local Player = game.Players.LocalPlayer
Player.Chatted:Connect(function(msg)
local args = msg:split(' ')
if filter then
for i,v in pairs(args) do
for a,b in pairs(blacklistedWords) do
if v:lower():gsub(filter,nilRep):match(a:lower()) then
Player:Kick('\n\nracist')
end
end
end
elseif not filter then
for i,v in pairs(args) do
for a,b in pairs(blacklistedWords) do
if v:lower():match(a:lower()) then
Player:Kick('\n\nracist')
end
end
end
end
end)
Cancel
Post
Hello there
#StayHome
Replied
what is FE? sorry im so dumb ;-;
Cancel
Post
Replied
Makes it so if you edit the game it wont replicate (Show up for other people)
Cancel
Post
I know LUA and some C#
Â
and i own synapse x noob
Replied
im still confused
Cancel
Post
Replied
basically only you can see it and noone else which means it's clientsided(only you can see since it's on the client and not the server itself)
and not serversided(theres a something in the game that made it so everybody in the server can see)
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 0, Total: 0 )
Cancel
Post