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

Problems with Spawn car and deleting the old?

Asked by 7 years ago
Edited 7 years ago

Hello everyone, I'm creating a spawn car, when they click on a button, they generate a car and erase the old ones but it don´t work can help me please i Need this

normal script Located in a part on Workspace it´s a BillboardGui

01script.Parent.MouseButton1Click:connect(function(GetCar)
02local plyr = game.Players.LocalPlayer
03        Mod = game.ServerStorage.DodgeChallenger    
04        clone = Mod:clone()
05        clone.Parent = workspace
06        clone:MakeJoints()
07    if game.Workspace.DodgeChallenger.CurrentOwner.Value == plyr.Name then
08        clone:Destroy()
09    end
10        clone.CurrentOwner.Value = plyr.Name
11 
12end)

please help me with this code i need it

1 answer

Log in to vote
0
Answered by 7 years ago
01local m = game:GetService("ServerStorage").DodgeChallenger
02local click = script.Parent
03 
04click.MouseClick:connect(function(p)
05    local player = game.Players[p.Name]
06    if player then
07        local owner = workspace:FindFirstChild(player.Name.."'s DodgeChallenger")
08        if owner then
09            owner:Destroy()
10        end
11        local clone = m:Clone()
12        clone.Parent = workspace
13        clone:MakeJoints()
14        clone.Name = player.Name.."'s DodgeChallenger"
15    end
16end)

Instead of using a value, just rename the model, then it will be easy to find the owner This script should work now, just put the script inside a ClickDetector and its finished

0
Sheesh, he is asking for a Gui script, not a ClickDetector. DeceptiveCaster 3761 — 7y
0
lol he can change it though xXKillerMurderarXx 59 — 7y
0
no thanks it works i adapted it imagYTOP 19 — 7y
Ad

Answer this question