Here is the Code All it does is gets the username you typed in and applies the code to that player, works fine in studio.
01 | local player = game.Players.LocalPlayer |
02 | local character = player.Character or player.CharacterAdded:Wait() |
03 |
04 | function click() |
05 | function find() |
06 | for i,v in pairs (game.Players:GetPlayers()) do |
07 | if string.lower(string.sub(v.Name, 1 ,#script.Parent.Parent.Victim.Text)) = = string.lower(script.Parent.Parent.Victim.Text) then |
08 | return v |
09 | end |
10 | end |
11 | end |
12 | if script.Parent.Parent.Flame.Value = = true then |
13 | local a = find() |
14 | if a~ = nil then |
15 | local tag = Instance.new( "ObjectValue" ) |
Here is an explanation. You can change 'script.Parent.Parent' and so on. Use for example if you want a part named 'trigger' in workspace and when you touch it it does something, i can give you an example, do
1 | workspace:FindFirstChild( "trigger" ).Touched:connect( function (hit) |
2 | print ( "Touched" ) |
3 | hit.Parent:FindFirstChild( "Humanoid" ).Health = 0 |
4 | wait(. 3 ) |
5 | warn( "your character is dead." ) |
6 | end ) |