Passing a Model through a Remote Function
I am having trouble passing a model through a remote event
Passing a Model through a Remote Function
I am having trouble passing a model through a remote event
Humanoid not moving with mouse on Rbx Studio
I am trying to make a humanoid move with the mouse cursor in Roblox Studio.
Humanoid not moving with mouse on Rbx Studio
I am trying to make a humanoid move with the mouse cursor in Roblox Studio.
Formatted TextLabel doesn’t show the correct values
I need help with a gas gauge for a car in Roblox.
Data Store Won’t Update In Roblox
I have been writing a script in Roblox that updates a players’ Money
value in a folder inserted in leaderstats
. Bascilly how everyone creates a leaderboard. The Money
value is changed by a ProximityPrompt``Triggered``Event
. It is first set off a data store script. I am very new to Data Store.
DialogueChoiceSelected not firing when expected
I tried to give the player a badge upon selecting a DialogueChoice using this script :
Why isn’t the “Anchored” keyword working on grouped parts in Roblox studio (Lua)?
I made a building out of parts, and grouped them together in order to move it easier. However, when I tried attaching a script to it that used the Anchored keyword, it did not work. Here is the code –
Pressing “W” or “A” makes me run but pressing both stops the animation
local UIS = game:GetService(‘UserInputService’) local Player = game.Players.LocalPlayer local Character = Player.Character UIS.InputBegan:connect(function(input) if input.KeyCode == Enum.KeyCode.W or input.KeyCode == Enum.KeyCode.A then Character.Humanoid.WalkSpeed = 22 –run speed local Anim = Instance.new(‘Animation’) Anim.AnimationId = ‘rbxassetid://18686242456’ PlayAnim = Character.Humanoid:LoadAnimation(Anim) PlayAnim:Play() end end) UIS.InputEnded:connect(function(input) if input.KeyCode == Enum.KeyCode.W or input.KeyCode == Enum.KeyCode.A then Character.Humanoid.WalkSpeed = 16 –default walk […]
Pressing “W” or “A” makes me run but pressing both stops the animation
local UIS = game:GetService(‘UserInputService’) local Player = game.Players.LocalPlayer local Character = Player.Character UIS.InputBegan:connect(function(input) if input.KeyCode == Enum.KeyCode.W or input.KeyCode == Enum.KeyCode.A then Character.Humanoid.WalkSpeed = 22 –run speed local Anim = Instance.new(‘Animation’) Anim.AnimationId = ‘rbxassetid://18686242456’ PlayAnim = Character.Humanoid:LoadAnimation(Anim) PlayAnim:Play() end end) UIS.InputEnded:connect(function(input) if input.KeyCode == Enum.KeyCode.W or input.KeyCode == Enum.KeyCode.A then Character.Humanoid.WalkSpeed = 16 –default walk […]