RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script make sure to use instructionswhen i click E blue fireball came out"
-- server script local userInputService = game:GetService("UserInputService") local fireball = Instance.new("Part") fireball.BrickColor = BrickColor.new("Bright blue") fireball.Shape = "Ball" fireball.Material = "Neon" fireball.Name = "Fireball" local fire = Instance.new("Fire") fire.Parent = fireball fire.Heat = 10 fire.Size = 3 fire.Color = Color3.new(0, 0, 1) fire.SecondaryColor = Color3.new(0, 0, 0) local function onKeyPress(input) if input.KeyCode == Enum.KeyCode.E then local player = game.Players.LocalPlayer local character = player.Character local humanoidRootPart = character:FindFirstChild("HumanoidRootPart") if humanoidRootPart then local newFireball = fireball:Clone() newFireball.Parent = game.Workspace newFireball.Position = humanoidRootPart.Position + Vector3.new(0, 3, 0) local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Velocity = humanoidRootPart.CFrame.LookVector * 50 bodyVelocity.Parent = newFireball end end end userInputService.InputBegan:Connect(onKeyPress)