#Help plzzzz

1 messages · Page 1 of 1 (latest)

naive stone
#

I wanna make my character unable to move when the dialogue happens, but for some reason the text box won't even show up and I keep getting this error, is there a way to fix this?

exotic swallowBOT
#

studio** You are now Level 1! **studio

karmic phoenix
#

Also very exploitable

naive stone
#

Ohhhh

#

Thx

#

Sorgy

karmic phoenix
# naive stone Ohhhh

I'd recommend creating a BoolValue inside the player, and a script which has an event for detecting any instances added to the player, and it will check if it's a bool value and called whatever. If it's true, it will set walkspeed, jumppower, and their state (optional) to 0 each frame (runservice.PreRender). Just so it's not exploitable.

naive stone
#

It works now :D

karmic phoenix
#

But, it's just dialogue anyway

naive stone
#

Yeah

karmic phoenix
#

Nothing special, probably no need

naive stone
#

No little character rn

karmic phoenix
#

Just incase you're making an actual stun for combat and stuff.

naive stone
#

Since it's for an npc

naive stone
#

This is just for a little talking person

stone juniper
naive stone
#

I fixed it dw

stone juniper
#

okay

restive sage
#

ur just confusing him

karmic phoenix
#

🤦🏻

#

He got it btw

restive sage
exotic swallowBOT
#

studio** You are now Level 11! **studio

restive sage
#

bro that bool trick ain’t gonna save you. any exploiter just deletes the localscript, flips walkspeed back, or hooks pre render conn to always set them back after calling.

karmic phoenix
restive sage
#

okay il assume ur a newbie, dont take this the wrong way, but pre render is only for the client 🙂

#

dont continue this if uk ur wrong bc il tag someone with creds to explain this to u

restive sage
#

no worries

karmic phoenix
#

then heartbeat

#

😸

restive sage
karmic phoenix
#

but your wrong

restive sage
#

brodie i dev cheats and ac's

karmic phoenix
restive sage
#

u do know that the client can manipulate the physics right?

restive sage
#

u can only stop legit input

#

what u stated before hand wont stop anything even if server sided with heartbeat

#

one sec il tag someone since ik u dont trust me

karmic phoenix
restive sage
karmic phoenix
#

if the walkspeed changes

restive sage
#

dont worry il tag someone chill

karmic phoenix
#

then just kick them

karmic phoenix
restive sage
#

ahh so uk ur wrong

karmic phoenix
#

im not wrong

restive sage
#
local lp = game:GetService('Players').LocalPlayer
local hum = lp.Character or lp.CharacterAdded:Wait(); hum = hum:WaitForChild('Humanoid')

hookmetamethod(game, '__newindex', newcclosure(function(t, k, v)
    if not checkcaller() and t == hum and k == 'WalkSpeed' and v == 0 then
        return
    end
    return rawset(t, k, v)
end))
karmic phoenix
exotic swallowBOT
#

studio** You are now Level 9! **studio

restive sage
#

U FUCKING RAGE BAITER

karmic phoenix