#any1 can help me with 1 problem on quest system dm if you can

1 messages · Page 1 of 1 (latest)

tulip sigil
#

any1 can help me with 1 problem on quest system dm if you can

mystic nebula
tulip sigil
mystic nebula
#

show code

#

am not watching thatr

tulip sigil
#

my problem is i dont know whare is the problem

wary breachBOT
#

studio** You are now Level 1! **studio

tulip sigil
#

i dont know if in accept button

tulip sigil
mystic nebula
#

with this information i am unable to help u with anything

tulip sigil
#

all working but if i go to take the quest and press accept he dont do anything

wicked lark
#

If you don't know where the error is, just send all the code that may not work

#

Also you don't have to hide your stuff, I don't think people will try to steal something that comes from an unexperienced scripter anyways

tulip sigil
wicked lark
#

Ok

#

If you send all the code shown on the right screenshot, someome might figure it out

#

Me, I'm going to nap/sleep, bye 👋

tulip sigil
#

bye

unreal totem
#

Or are there any errors in output to refer to

tulip sigil
#

(LocalScript1)
while true do
local player = game.Players.LocalPlayer
local Lead = player:FindFirstChild("Quest")
local Num = Lead:FindFirstChild("Num")
wait(0.1)
if Num.Value == script.Num.Value then
script.Parent.Visible = true
else
script.Parent.Visible = false
end
end

(exit)
script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent:Destroy()
end)

(Main)
script.Parent.RemoteEvent.OnServerEvent:Connect(function(plr)
local Type = plr:WaitForChild("Quest"):WaitForChild("Num")
Type.Value = 0
local Max = plr:WaitForChild("Quest"):WaitForChild("Max")
Max.Value = 1
local Amount = plr:WaitForChild("Quest"):WaitForChild("Amount")
Amount.Value = 0
end)

(Quest)
script.Parent.MouseButton1Click:Connect(function()
script.Parent.RemoteEvent:FireServer()
end)

(localscript2)
while true do
wait(0.1)
local player = game.Players.LocalPlayer
local leader = player:FindFirstChild("Quest")
local Kills = leader:FindFirstChild("Kills")
local Max = leader:FindFirstChild("Max")
local Num = leader:FindFirstChild("Num")
script.Parent.Text = math.floor(Kills.Value).."/"..math.floor(Max.Value)
end

wary breachBOT
#

studio** You are now Level 2! **studio

tulip sigil