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

how do i make coin disappear forever for player who touched it? (CLOSED)

Asked by 3 years ago
Edited 3 years ago

So i was making with friend obby game with coins, and i don't know how to make coin disappear forever cause when you rejoin it appears. Please help? btw im new at scripting

0
I cant give you the entire script but my suggestion would be learn remote events and dataStore mikey2019d 43 — 3y
0
I Think You would Have To Use Data Stores For That To Work Magicdevice3 58 — 3y
0
Also Maybe A Local Part If You Want It For ONLY A player I Cant Give A Script As I am Not Good At Data Stores Magicdevice3 58 — 3y

3 answers

Log in to vote
1
Answered by 3 years ago

My Code:

-- if You Haven't Put CanCollide to false
script.Parent.CanCollide = false

script.Parent.Touched:Connect(function() -- Touch Event
    script.Parent.Visible = false -- Will Make the coin invisible
    -- if You Want To Add Score to label:
    name = name + 1
end)

-- If This Did not work reply to me thanks
0
This is without datastore Tho HKprogram 48 — 3y
0
please be more descriptive raid6n 2196 — 3y
0
and visible isnt a property of part raid6n 2196 — 3y
0
and visible isnt a property of part raid6n 2196 — 3y
0
@raid6n Oh I am stupid Im so sorry for my english. i will make a new comment HKprogram 48 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

Wouldn't you just do;

script.Parent.Touched:Connect(function(hit)
-- Data store
:Destroy()

Above the destroy script, you'd do your datastore. I have not tested though; Don't quote me.

0
i would not upvote because you have 69 points lmao CaIcuIati0n 246 — 3y
Log in to vote
0
Answered by
raid6n 2196 Moderation Voter Community Moderator
3 years ago

okay, first make a local script so the object disappears for the player only.

first, make the part can collide just in case

script.Parent.CanCollide = false

Once you do that add this in the same script:


script.Parent.Touched:Connect(function() -- Touch Event script.Parent:Destroy() -- destroy end) -- ending first line

full code:

script.Parent.CanCollide = false
script.Parent.Touched:Connect(function() -- Touch Event
    script.Parent:Destroy() -- destroy
end) -- ending first line

how it works:

when the player touches it it will destroy for only them.

0
Honestly, destroying a part isn't the best way. Because you can't get it back. I would simply just set transparency to false! Nicholas1088 169 — 3y

Answer this question