of     1   

jojo8764
#225938600Tuesday, October 03, 2017 9:26 PM GMT

THERE AREN'T ANY ERRORS ### AAAAAA pin = script.Parent pin.Touched:connect(function(hit) print("hit") if hit.Name == "BowlingBall" then print("struck") pin.Parent.Humanoid.PlatformStand = true end end) pin.Changed:connect(function(p) if p.Name == "Velocity" then if pin.Velocity == Vector3.new(-0,-0,-0)then print("recover") pin.Parent.Humanoid.PlatformStand = false end end end)
jojo8764
#225938704Tuesday, October 03, 2017 9:29 PM GMT

pin = script.Parent pin.Touched:connect(function(hit) print("hit") if hit.Name == "BowlingBall" then print("struck") pin.Parent.Humanoid.PlatformStand = true end end) pin.Changed:connect(function(p) if p.Name == "Velocity" then if pin.Velocity == Vector3.new(-0,-0,-0)then print("recover") pin.Parent.Humanoid.PlatformStand = false end end end)
jojo8764
#225938815Tuesday, October 03, 2017 9:31 PM GMT

BUMP
jojo8764
#225939070Tuesday, October 03, 2017 9:36 PM GMT

bump
uxie501
#225939431Tuesday, October 03, 2017 9:44 PM GMT

is "pin" a model
jojo8764
#225939462Tuesday, October 03, 2017 9:44 PM GMT

no its a part
jojo8764
#225939810Tuesday, October 03, 2017 9:53 PM GMT

BUMP
SinisterMemories
#225939879Tuesday, October 03, 2017 9:54 PM GMT

1] why are you doing "-0" attempt to index global 'soul' (a nil value)
jojo8764
#225939902Tuesday, October 03, 2017 9:55 PM GMT

i don't even know what your saying
SinisterMemories
#225940358Tuesday, October 03, 2017 10:05 PM GMT

"if pin.Velocity == Vector3.new(-0,-0,-0)then" why are you doing "-0" also you put no space between the new vector3 and the "then" attempt to index global 'soul' (a nil value)
jojo8764
#225940576Tuesday, October 03, 2017 10:09 PM GMT

idk the pin has negative 0's for some reason. can you just fix my script!
jojo8764
#225944213Tuesday, October 03, 2017 11:30 PM GMT

OMG SOMEONE ACTUALLY HELP
LaeMVP
#225944308Tuesday, October 03, 2017 11:32 PM GMT

Qg8s3r2 join that discord
hiimfree5
#225944309Tuesday, October 03, 2017 11:32 PM GMT

really jojo... really?
jojo8764
#225944364Tuesday, October 03, 2017 11:33 PM GMT

what is it obvious what i did wrong!!! just tell me! i'm ok with feeling dumb
jojo8764
#225945163Tuesday, October 03, 2017 11:54 PM GMT

bump
redstonemasterrm
#225946024Wednesday, October 04, 2017 12:16 AM GMT

DONT USE -0
jojo8764
#225946118Wednesday, October 04, 2017 12:18 AM GMT

ik i stopped using it
redstonemasterrm
#225946148Wednesday, October 04, 2017 12:18 AM GMT

Good
jojo8764
#225946163Wednesday, October 04, 2017 12:19 AM GMT

how can i tell if a number is positive or negative?
gohan31865
#225946233Wednesday, October 04, 2017 12:20 AM GMT

divide it by itself and see if its a positive 1 or negative 1 #code error("you're*")
jojo8764
#225946268Wednesday, October 04, 2017 12:21 AM GMT

ok thx
redstonemasterrm
#225965920Wednesday, October 04, 2017 4:46 PM GMT

use math.abs() to make any number a positive number

    of     1