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

I made a LocalScript that if the player sits, his jumppower will be set to 0. What did i do wrong?

Asked by 5 years ago
01local player = game.Players.LocalPlayer
02 
03 
04if not player.Character then
05    print("waiting for character")
06    player.CharacterAdded:wait();
07    char = player.Character
08else
09    char = player.Character
10end
11local hum = char.Humanoid
12if hum.Sit == true then
13    print("Player is sitting")
14    hum.JumpPower = 0
15end

This script is in a LocalScript, in StarterPlayerScripts.

The goal of my script is that if a player sits, that his jumppower will be set to 0.

0
Did you parent this script into a seat, If so why not try script.Parent.Touch function? rochel89 42 — 5y
0
maybe you're right i will try that BaconX112X 75 — 5y
0
It did not work, here is the code i tried: BaconX112X 75 — 5y
0
local seat = script.Parent seat.Touched:Connect(function(hit) local char = hit.Parent local hum = char.Humanoid hum.JumpPower = 0 end) BaconX112X 75 — 5y

2 answers

Log in to vote
1
Answered by
starmaq 1290 Moderation Voter
5 years ago

Here is another simpler way, the seat has an awesome property called occupant, which is whoever sat on the seat, if no one is currently sitting, it will be nil. So if we use this with a .Changed event which checks if a property has changed. We can check if the occupant property has changed, and if it has changed and the occupant is a player, we set his jumppower to 0! And btw, your script is actually right, but the if statments are only checking once if the humanoid sitting, because if statments always check a condition once, so you have to put them inside of a loop or something so they contanly check. But this way is more efficient I think. The paramater for the changed event is whatever property was changed. And the occupant is actually the humanoid that is sitting.

01local seat = script.parent
02 
03seat.Changed:Connect(function(prop)
04    if prop == "Occupant" then
05        if seat.Cccupant:IsA("Humanoid") then
06            local humanoid = seat.Occupant
07            humanoid.JumpPower = 0
08        end
09    end
10end)

And that should work!

0
Yeah, it worked BaconX112X 75 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Pretty simple line of code put a script inside a seat and then put this in.

1script.Parent.Touched:Connect(function()
2    wait(0.5)
3script.Parent.SeatWeld.Part1.Parent.Humanoid.JumpPower = 0
4end)

Answer this question