Relative Content

Tag Archive for robloxroblox-studio

Searching roblox developers

I am looking for developers for a game I want to make. It will be a realistic SCPRP site that will be realistic. You need Roblox Studio, Discord, good at scripting or building in Roblox Studio, and be willing to do it for free.

model does not move in Roblox

I’m trying to have a model move around and jump using this code but the object does not move. (everything prints until it gets to the movement part.) The model just stays stationary and can be affacted by the player like an unancored object.

Is there anything wrong here?

local EMain =game.StarterGui.Energy.Holder.EMain **–here are the variables** local Bar = game.StarterGui.Energy.Holder.EBar local UIS = game:GetService(“UserInputService”) local Energy = 3 print(Energy) UIS.InputBegan:Connect(function(key) if key.KeyCode == Enum.KeyCode.LeftShift then if Energy > 0 then Energy = Energy – 1 print(Energy) end end end) while true do wait() if Energy == 3 then Bar.Size = UDim2.new(0, 100, 0, 100) […]