Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

This doesn't work on the live game, but does in studio? I get no errors.[Still Unanswered]

Asked by 8 years ago
Edited 8 years ago

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.

01local player = game.Players.LocalPlayer
02local character = player.Character or player.CharacterAdded:Wait()
03 
04function click()
05function find()
06for i,v in pairs(game.Players:GetPlayers()) do
07if          string.lower(string.sub(v.Name,1,#script.Parent.Parent.Victim.Text))==string.lower(script.Parent.Parent.Victim.Text) then
08return v
09end
10end
11end
12if script.Parent.Parent.Flame.Value==true then
13local a=find()
14if a~=nil then
15    local tag=Instance.new("ObjectValue")
View all 30 lines...
0
1. Identation. 2. Check the console in game (online mode) using the f9 key. RubenKan 3615 — 8y
0
1. Indenting on here messes it up, 2. I have done that and receive no errors. GuestRealization 102 — 8y

1 answer

Log in to vote
0
Answered by
RootEntry 111
7 years ago

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

1workspace: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.")
6end)
0
Thanks for the answer, but not exactly what I'm looking for. This is a GUI GuestRealization 102 — 7y
0
Okay. RootEntry 111 — 7y
Ad

Answer this question