
String.find () finding keywords in words - Roblox
Dec 10, 2021 · Hello, I am working on a Chat Bot using string.find(). However string.find() finds keywords in other words? For example: “what are you doing?” returns “hello” Because I have added this in my code: string.find(msg, "whats up") Sorry if this doesnt make sense, im bad at explaining lol. Anyways I’ve tried putting certain triggers above others but it doesn’t do much …
Using table.find () to find an object using its name - Roblox
Apr 9, 2023 · I need to know if it is actually possible to find an element on a list using only its name. example: local Model = Instance.new(“Model”) Model.Name = “Model1” local list = {Model} local find = table.find(list, “Model1”)
Use of table.find() - Scripting Support - Developer Forum - Roblox
Jan 26, 2020 · Can anyone help me with table.find(tablelist, arg) I tried finding documentation for it on the roblox wiki and also on the lua site. I can not seem to find any documentation but still it is available when you do auto correct. Can anyone help? thanks.
How to find a child with a specific name - Scripting Support
Nov 25, 2021 · So I want to find a specific part with a specific name and idk know how to look inside a model and find a specific part with a different name then the other parts using a script. Try using this code (example) : local MyModel = game.Workspace.MyModel local MySpecificPart = MyModel:FindFirstChild("MySpecificPart")
Navigation - Find All / Replace All - Beta - Announcements - Roblox
Apr 9, 2021 · Hi Developers, Have you ever tried to find “the Noob” in all your Scripts? It’s hard! And if you wanted to upgrade every “the Noob” to “the Pro”, there wasn’t a convenient way to do it. Well, no longer! With this release, an overhauled Find All widget adds convenient navigation across your entire Place and adds slick Replace / Replace All functionality. Unified Search and ...
How to locate "Humanoid" - Scripting Support - Developer Forum
Oct 8, 2020 · local spawnPart = workspace.spawnPart -- You can make a part named spawnPart in workspace and position it where you want the player to start local part = workspace.Part -- The part that will be touched, once again it can be any part in workspace part.Touched:Connect(function(hit) if hit then local char = …
How do I access Player, Character & Humanoid in Studio? - Roblox
Jun 18, 2022 · Goal So I want to understand how to access the Player, Character & Humanoid in studio, I have searched up tutorials on how to do it, but it never really works and they don’t explain why it happens, I have always had t…
How to use string.find? - Scripting Support - Developer Forum
Apr 18, 2022 · Hello, could someone give me an example of how to use string.find :pray: cant understand…
Getting the player - Scripting Support - Developer Forum - Roblox
Aug 29, 2019 · via a touched even in a normal script, you have to use the GetPlayerFromCharacter Function: thing.Touched:Connect(function(hit) local plr = game.Players:GetPlayerFromCharacter(hit.Parent) end)
How to Find all scripts in game? - Scripting Support - Roblox
Apr 2, 2024 · Is there anyway I can find all the scripts in my game? Since the tag update, I’ve had trouble finding ...