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

The Thing doesnt move???? what the hecc???

Asked by 5 years ago

i've been Working in an optimized script ffor my sinking ship game but it just doesn't work. No error messages. No warnings. F in the chat.

01--variables
02 
03local ship = script.Parent
04local P = ship.PrimaryPart
05local SeaLevel = 0
06 
07--scripting
08 
09local function sink()
10    while true do
11        local X = P.Position.X
12        local Y = P.Position.Y
13        local Z = P.Position.Z
14        if ship.Trigger1.Position >SeaLevel then
15            ship:SetPrimaryPartCFrame(
View all 28 lines...

2 answers

Log in to vote
7
Answered by
Xapelize 2658 Moderation Voter Community Moderator
5 years ago
Edited 4 years ago

You did not execute the function, but made the function. that's why it doesn't work. Consider inserting this to your last line:

0
i rate this post 11/10 Psudar 882 — 5y
0
oh my god im super duper dumb lmao MradmannMvip 50 — 5y
0
I'm glad to help! Xapelize 2658 — 5y
0
top ten answers of all time 123nabilben123 499 — 5y
Ad
Log in to vote
1
Answered by 5 years ago

You didnt call the function

You only defined a funtion as sink()

But you didnt actually call it.

to do that you need to add:

0
How did you make huge words? Xapelize 2658 — 5y
0
but # before the word Luka_Gaming07 534 — 5y

Answer this question